/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #eaeaea;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  filter: brightness(1);
}

img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  flex: 1;
  padding-top: 80px;
}

/* ===================================
   HEADER & NAVIGATION - MEJORADO v2
   =================================== */

.main-header {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.main-header.scrolled .logo img {
  filter: brightness(0) invert(0);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav {
  position: relative;
}

.nav-list {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.main-header.scrolled .nav-list {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.nav-list a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: rgba(12, 12, 12, 0.95);
  padding: 10px 18px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .nav-list a {
  color: #333;
  text-shadow: none;
}

/* Hover - Iluminación */
.nav-list a:hover {
  background: rgba(255, 111, 0, 0.2);
  color: #FF6F00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.2);
}

/* Activo - Brillante */
.nav-list a.active,
.nav-list a.active:hover {
  background: linear-gradient(135deg, #FF6F00, #FF8C42);
  color: white !important;
  box-shadow: 0 0 20px rgba(255, 111, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(255, 111, 0, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2); }
  100% { box-shadow: 0 0 25px rgba(255, 111, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.4); }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1000;
}

.main-header.scrolled .menu-toggle {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
}

.menu-toggle:hover {
  background: rgba(255, 111, 0, 0.2);
  color: #FF6F00;
  transform: rotate(90deg);
}

/* ===== MENÚ MÓVIL - MEJORADO PARA CELULAR ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.6rem;
    padding: 10px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .main-header.scrolled .menu-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .menu-toggle:hover {
    background: rgba(255, 111, 0, 0.25);
    color: #FF6F00;
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 50px 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 2px solid rgba(255, 111, 0, 0.2);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.18);
    transition: left 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
    border-radius: 0 20px 20px 0;
  }

  .nav-list.open {
    left: 0;
    animation: slideInMenu 0.5s ease-out;
  }

  @keyframes slideInMenu {
    from { transform: translateX(-20px); opacity: 0.7; }
    to { transform: translateX(0); opacity: 1; }
  }

  .nav-list a {
    display: block;
    width: 90%;
    padding: 16px 24px;
    margin: 10px 0;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Hover / Tap en móvil */
  .nav-list a:hover {
    background: rgba(255, 111, 0, 0.18);
    color: #FF6F00;
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.25);
    border-color: rgba(255, 111, 0, 0.3);
  }

  /* Activo - ¡BRILLA! */
  .nav-list a.active,
  .nav-list a.active:hover {
    background: linear-gradient(135deg, #FF6F00, #FF8C42);
    color: white !important;
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.5), inset 0 0 12px rgba(255, 255, 255, 0.4);
    transform: scale(1.05) translateY(-3px);
    animation: pulseGlowMobile 2s infinite alternate;
    border: none;
  }

  @keyframes pulseGlowMobile {
    0% { box-shadow: 0 0 20px rgba(255, 111, 0, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 0 35px rgba(255, 111, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.5); }
  }
}

/* Hero Section (index.html) */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #FF6F00;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-cta {
  display: inline-block;
  background-color: #FF6F00;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-cta:hover {
  background-color: #e65b00;
  transform: translateY(-2px);
}

.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  border: none;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 3;
}

.hero-btn:hover {
  background: rgba(255, 111, 0, 0.9);
  color: white;
}

.hero-btn.prev {
  left: 20px;
}

.hero-btn.next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
  background: white;
}

/* Intro Section */
.intro {
  padding: 80px 20px;
  background-color: #ffffff;
}

.intro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #FF6F00;
  text-align: center;
}

.intro-text p {
  font-family: 'Open Sans', sans-serif;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #555;
}

.intro-img {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.intro-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Áreas de Expertiza / Destacados */
.destacados,
.section.dark {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.destacados h2,
.section.dark h2 {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #FF6F00;
}

.section.dark .intro {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #555;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #FF6F00;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Sección Nosotros */
.nosotros .card {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FF6F00;
}

.nosotros .card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #FF6F00;
}

.nosotros ul.icon-list {
  padding-left: 20px;
  margin-top: 10px;
}

.nosotros ul.icon-list li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

/* Carrusel de socios - MEJORADO PARA MÓVIL */
.team-section.region-section {
  padding: 60px 20px;
  background-color: #fffdfd;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin: 40px auto;
  max-width: 1300px;
  position: relative;
}

.region-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #FF6F00;
  text-align: center;
  padding: 0 15px;
}

.region-section .section-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 15px;
}

.socios-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 15px;
}

.socios-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
  margin: 0 auto;
  min-height: 320px;
}

.socio-card {
  min-width: 280px;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.35s ease;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.socio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.socio-img {
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FF6F00;
}

.socio-info {
  padding: 20px 15px 15px;
  width: 100%;
}

.socio-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #222;
  font-weight: 600;
}

.socio-info p {
  font-size: 0.95rem;
  color: #666;
  margin: 5px 0 15px;
  font-weight: 500;
}

.card-buttons {
  padding: 0 15px 20px;
  width: 100%;
}

.card-buttons .btn-linkedin {
  background-color: #0077B5;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.card-buttons .btn-linkedin:hover {
  background-color: #005a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.socio-card button {
  background-color: #FF6F00;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.socio-card button:hover {
  background-color: #e65b00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding: 0 15px;
}

.carousel-btn {
  background-color: rgba(255, 111, 0, 0.95);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background-color: #e65b00;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.35);
}

/* Modal "Ver más" */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: auto;
}

.modal-content {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10;
}

.modal-close:hover {
  color: #ff6f00;
}

.modal-body {
  display: flex;
  flex-direction: row;
  padding: 20px;
  gap: 20px;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

.modal-image {
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-text {
  flex: 1;
  padding: 10px 0;
}

.modal-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #FF6F00;
  margin-bottom: 8px;
}

.modal-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.icon-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.linkedin {
  background-color: #0077B5;
}

.email {
  background-color: #FFC107;
  color: #333;
  font-size: 1rem;
}

.icon-circle:hover {
  transform: scale(1.1);
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .region-section h3 {
    font-size: 1.7rem;
  }

  .region-section .section-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .socios-carousel {
    gap: 15px;
    padding: 15px 0;
  }

  .socio-card {
    min-width: 260px;
    border-radius: 14px;
  }

  .socio-img {
    height: 200px;
  }

  .socio-info h4 {
    font-size: 1.15rem;
  }

  .socio-info p {
    font-size: 0.9rem;
  }

  .card-buttons .btn-linkedin,
  .socio-card button {
    padding: 7px 16px;
    font-size: 0.85rem;
  }

  .carousel-controls {
    margin-top: 25px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    padding: 10px;
  }

  .modal-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-image {
    order: -1;
    margin-bottom: 15px;
  }

  .modal-image img {
    max-height: 180px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .region-section h3 {
    font-size: 1.5rem;
  }

  .socio-card {
    min-width: 95%;
    max-width: 95%;
  }

  .socio-img {
    height: 180px;
  }

  .socio-info h4 {
    font-size: 1.1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Distribución Geográfica */
.distribucion-geografica-section {
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}

.distribucion-geografica-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #FF6F00;
}

.mapa-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.mapa-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Presencia Regional y Clientes */
.presencia-section,
.clientes-section {
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}

.presencia-section h3,
.clientes-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #FF6F00;
}

.presencia-section p,
.clientes-section p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pais-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.pais-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #444;
  background-color: #fafafa;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pais-item:hover {
  transform: scale(1.03);
}

.pais-item img {
  width: 32px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
}

.cliente-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.logotipo {
  width: 140px;
  height: 80px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background-color: #fafafa;
}

.logotipo img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.logotipo:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Contacto */
.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-form {
  flex: 1 1 400px;
  min-width: 300px;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info {
  flex: 1 1 300px;
  min-width: 300px;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 15px;
}

.contact-info p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #555;
  margin: 8px 0;
}

.contact-info strong {
  color: #333;
}

/* Footer */
.main-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-info {
  text-align: center;
}

.footer-info a {
  color: #FF6F00;
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}