@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.otf") format("truetype");
}

@font-face {
  font-family: "Montserrat-SemiBold-Italic";
  src: url("../fonts/Montserrat-SemiBoldItalic.otf") format("truetype");
}

:root {
  --primary: #014993;
  --secondary: #f5aa1b;
  --light: #f5f8fa;
  --dark: #00213a;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--light);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-align: center;
}

.btn.header {
  background-color: var(--secondary);

}

.btn:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
}

.black-title {
  font-weight: bold !important;
}

.section .aux {
  font-size: 2.5rem;
  color: var(--white);
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.text-center {
  text-align: center;
}

header {
  background-color: var(--primary);
  color: var(--white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.header-container .logo {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 350px;
  height: 100%;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .logo img {
    width: 200px;
  }
}

.logo i {
  color: var(--secondary);
  font-size: 2rem;
}

.logo span a {
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  background: var(--primary);
  width: 100%;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 0;
  margin: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: var(--secondary);
  padding-left: 10px;
}

.nav-links a:last-child {
  border-bottom: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--white);
  display: block;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links.active {
  display: flex;
}

.hero {
  background: linear-gradient(to right,
      rgba(2, 17, 55, 1),
      rgba(1, 73, 147, 0.15)),
    url("/imagenes/header/city-header.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 70px 40px 0 40px;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .logo img {
  width: 350px;
  display: block;
  height: auto;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero-text h3 {
  font-size: 2rem;
  font-family: "Montserrat-SemiBold-Italic", sans-serif;
  margin-bottom: 0;
  line-height: 42pt;
}

.hero-text .sub {
  margin: 0;
  font-size: 2rem;
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 30px;
  line-height: 42pt;
}

.hero-form {
  margin-top: 190px;
  /* Reducido de 80px */
  background-color: rgba(0, 33, 64, 0.9);
  padding: 25px;
  /* Reducido de 30px */
  border-radius: 12px;
  width: 100%;
  max-width: 400px !important;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  /* Asegura que el padding no aumente el tamaño total */
}

.hero-form h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 480px) {
  .hero-form {
    padding: 12px;
    margin: 0;
    width: 100%;
  }

  .form-group textarea {
    max-height: 40px;
  }

  .hero-content {
    display: block;
    align-items: center;
    justify-content: center;
  }

  .hero .hero-content .logo img {
    width: 200px;
    margin: 20% auto;
  }

  .form-group {
    align-items: center;
  }

  .contact-form .contact-formulario input,
  select,
  textarea {
    width: 80%;
  }
}

@media (max-width: 1220px) {
  .hero-form {
    margin-top: 20px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero-form {
    padding: 15px;
  }

  .hero-form h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 4px 6px;
    font-size: 0.85rem;
  }

  .hero-form .btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 5px 7px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  background-color: #f9f9f9;
  color: #000;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 50px;
}

.hero-form .btn {
  margin-top: 10px;
  background-color: #ffc107;
  color: #002140;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.hero-form .btn:hover {
  background-color: #e0a800;
}

/* BOTONES GENERALES */
.btn {
  padding: 10px 20px;
  border-radius: 4px;
  border: 2px solid #e0a800;
  text-decoration: none;
  font-weight: bold;
  color: var(--dark);
  transition: background-color 0.3s;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
}

.btn-outline:hover {
  background-color: #ffc107;
  color: #002140;
}

@media (max-width: 1220px) {
  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero .logo img {
    width: 380px;
    margin-bottom: 20px;
    margin-top: 50%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-form {
    margin-top: 30px;
  }
}

.about {
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature i {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-top: 5px;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services {
  background-color: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.service-content h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}

.service-content p {
  margin-bottom: 20px;
  color: var(--gray);
  text-align: center;
  flex-grow: 1;
}

.service-content .btn {
  width: auto;
  min-width: 180px;
  margin-top: auto;
}

.trust {
  background: var(--primary);
  color: var(--white);
}

.trust .section-title h2 {
  color: var(--white);
}

.trust-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.trust-item i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.trust-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.img-payment {
  display: block;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 0;
}

.faq {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 1.2rem;
}

.faq-question::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  background: var(--light);
}

.faq-answer p {
  padding: 20px 0;
}

.faq-answer.show {
  max-height: 500px;
}

.contact {
  background: linear-gradient(to right, var(--primary), var(--dark));
  color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-top: 5px;
}

.contact-form form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 4px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo i {
  color: var(--secondary);
}

.footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* Nuevo estilo compacto para el header */
.compact-social-links {
  display: flex;
  gap: 12px;
}

.compact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  transition: var(--transition);
  font-size: 14px;
}

.compact-social-links a:hover {
  color: var(--secondary);
  transform: scale(1.15);
}

/* Ocultar en móviles */
@media (max-width: 768px) {
  .compact-social-links {
    display: none;
  }
}

.footer-links h3,
.footer-newsletter h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
  padding-left: 5px;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    width: auto;
    box-shadow: none;
  }

  .nav-links a {
    margin: 0 15px;
    padding: 5px 0;
    border-bottom: none;
    font-size: 1.1rem;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-links a:hover {
    padding-left: 0;
    color: var(--secondary);
  }

  .menu-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .faq-container {
    max-width: 800px;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Language selector */
/* Selector de idiomas */
/* Selector de idiomas compacto con dropdown */
.language-selector {
  position: relative;
  margin-left: 15px;
  width: 40px;
  /* Ancho fijo para el botón principal */
}

/* Botón principal visible */
.lang-btn-main {
  background: #f4aa1b;
  border: 1px solid #f4aa1b;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 3px;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
}

/* Contenedor de opciones (oculto por defecto) */
.lang-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f4aa1b;
  border: 1px solid #f4aa1b;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}

/* Mostrar opciones al hacer hover */
.language-selector:hover .lang-options {
  opacity: 1;
  visibility: visible;
}

/* Estilo para todos los botones de idioma */
.lang-btn {
  display: block;
  width: 100%;
  padding: 5px 10px;
  background: transparent;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: #f0f0f0;
}

.lang-btn.active {
  background: #007bff;
  color: white;
}

.lang-options.force-show {
  opacity: 1 !important;
  visibility: visible !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 999;
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-icon i {
  font-size: 36px;
  color: white;
}

.whatsapp-text {
  background: white;
  color: #075e54;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  margin-right: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Animación flotante */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Indicador de notificación */
.whatsapp-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: #ff3b30;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  70% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 55px;
    height: 55px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon::after {
    width: 14px;
    height: 14px;
  }
}

.map-container {
  margin: 50px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.google-map {
  height: 400px;
  width: 100%;
  border: none;
  display: block;
}

.map-address {
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.map-address i {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .google-map {
    height: 300px;
  }
}

/* Galeria */

.gallery-section {
  padding: 80px 20px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: var(--transition);
  transform-origin: center;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Efecto hover coquette */
.gallery-item:hover {
  transform: scale(0.98);
  box-shadow: 0 10px 25px rgba(245, 170, 27, 0.3), 0 0 0 6px var(--white),
    0 0 0 8px var(--secondary);
  z-index: 10;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(1, 73, 147, 0.2) 0%,
      rgba(245, 170, 27, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Decoraciones de fondo */
.gallery-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
}

.dec-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px dashed var(--primary);
  top: 15%;
  left: 5%;
}

.dec-triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid var(--secondary);
  bottom: 15%;
  right: 8%;
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 15px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .gallery-item:hover {
    box-shadow: 0 6px 18px rgba(245, 170, 27, 0.2), 0 0 0 4px var(--white),
      0 0 0 6px var(--secondary);
  }
}

/* Acomodar esto */