:root {
    --primary-color: #050A30; /* Azul marino oscuro */
    --secondary-color: #B79347; /* Dorado */
    --accent-color: #8B8383; /* Gris */
    --text-color: #333333;
    --light-gray: #F4F6FC; /* Blanco hueso */
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #050A30 0%, #B79347 100%);
    --gradient-hover: linear-gradient(135deg, #B79347 0%, #050A30 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Estilos normalizados para listas */
ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
}

/* Estilos para los items con check */
.service-features-list {
    list-style-type: none;
    padding-left: 0.5rem;
}

.service-features-list li {
    padding-left: 2rem;
    position: relative;
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.service-features-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 7px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Estilos modernos para el logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.03);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style-type: none;
    list-style-image: none;
    list-style-position: outside;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color); /* Dorado */
}

.nav-links .has-submenu > a {
    padding-right: 1.5rem;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 0.7rem 1rem;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.submenu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.submenu span {
    display: flex;
    flex-direction: column;
}

.submenu strong {
    font-weight: 500;
    color: var(--text-color);
}

.submenu small {
    font-size: 0.8rem;
    color: #666;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.submenu-indicator {
    font-size: 0.7em;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.has-submenu:hover .submenu-indicator {
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto; /* Asegura que se posicione a la derecha */
    z-index: 200; /* Mayor que otros elementos */
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color); /* Color que destaca */
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    /* Header fijo con fondo */
    .header {
        background: #ffffff;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        height: 60px; /* Altura fija para evitar saltos */
        display: flex;
        align-items: center;
    }
    
    /* Contenedor simplificado */
    .nav-container {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
        flex-wrap: nowrap;
    }
    
    /* Logo perfectamente a la izquierda */
    .logo {
        position: relative;
        z-index: 1001;
        flex: 0 0 auto;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        max-height: 40px;
        vertical-align: middle;
    }
    
    /* BotÃ³n hamburguesa a la derecha */
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
        padding: 10px;
        margin: 0 0 0 auto; /* Empuja a la derecha */
        border: none;
        background: transparent;
        cursor: pointer;
        outline: none;
        align-self: center;
    }
    
    /* LÃ­neas del botÃ³n hamburguesa */
    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 4px 0;
        background: var(--secondary-color); /* Verde de la calculadora */
        transition: all 0.3s ease;
    }
    
    /* AnimaciÃ³n del botÃ³n hamburguesa */
    .mobile-menu-btn:hover {
        background: rgba(127, 156, 245, 0.1);
    }
    
    /* Panel de navegaciÃ³n desplegable */
    .nav-wrapper {
        position: fixed;
        top: 60px; /* Igual a la altura del header */
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255,255,255,0.98);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centrado */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto; /* Scroll si es necesario */
        backdrop-filter: blur(5px); /* Efecto sutil de desenfoque */
    }

    /* MenÃº activo con animaciÃ³n suave */
    .nav-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Links de navegaciÃ³n en columna con diseÃ±o moderno */
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 320px;
        margin: 1rem 0 2rem;
        padding: 0;
        list-style-type: none;
        list-style-image: none;
        list-style-position: outside;
    }
    
    .nav-links li {
        text-align: center;
        position: relative;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
        padding: 0.9rem 0;
        display: block;
        color: #23395d;
        font-weight: 500;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-links li a:after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #050A30 0%, #B79347 100%);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-links li a:hover, .nav-links li a.active {
        color: var(--secondary-color);
    }
    
    .nav-links li a:hover:after, .nav-links li a.active:after {
        width: 40px;
    }

    /* SubmenÃºs elegantes */
    .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        min-width: auto;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        margin-top: 0;
        border: 1px solid rgba(127, 156, 245, 0.15);
        transition: all 0.4s ease;
    }
    
    .has-submenu.touch-active .submenu {
        padding: 0.8rem 0;
        max-height: 200px;
        opacity: 1;
        visibility: visible;
        margin-top: 0.5rem;
    }
    
    .submenu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style-type: none !important;
        list-style-image: none !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .submenu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        list-style-type: none !important;
        list-style-image: none !important;
        list-style: none !important;
    }
    
    .submenu li::before,
    .submenu li::after {
        content: none !important;
        display: none !important;
    }
    
    .submenu li a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
        color: #4f5d75;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 6px;
        transition: all 0.3s ease;
        background: none;
    }
    
    .submenu li a::before,
    .submenu li a::after {
        content: none !important;
        display: none !important;
    }
    
    .submenu li a:hover {
        background-color: rgba(127, 156, 245, 0.1);
        color: #7f9cf5;
    }
    
    .submenu-indicator {
        font-size: 0.7rem;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .has-submenu.touch-active .submenu-indicator {
        transform: rotate(180deg);
    }

    /* Botones de acciÃ³n atractivos */
    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        position: relative;
    }
    
    .nav-buttons:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #050A30 0%, #B79347 100%);
    }
    
    .nav-buttons .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 30px;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(5, 10, 48, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-buttons .cta-button:active {
        transform: translateY(2px);
        box-shadow: 0 2px 10px rgba(183, 147, 71, 0.15);
    }

    /* AnimaciÃ³n del Ã­cono hamburguesa */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.cta-button {
    background: var(--secondary-color); /* Dorado */
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(183, 147, 71, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--primary-color); /* Azul marino oscuro al hover */
    box-shadow: 0 5px 15px rgba(5, 10, 48, 0.3);
}

.hero-split {
  width: 100%;
  background: linear-gradient(120deg, #F4F6FC 0%, #e0eafc 100%);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.hero-split-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 32px 56px 32px;
  gap: 48px;
}

/* Estilos del carrusel (sin modificar fichas) */
.hero-split-carousel {
  width: 100%;
  background: linear-gradient(120deg, #F4F6FC 0%, #e0eafc 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Espacio para separar del menÃº fijo */
  margin-top: 60px; /* Margen adicional para compensar la altura del menÃº */
}

.split-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 80px 56px 80px; /* Aumentado el padding lateral para dar espacio a los botones */
}

.split-carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.7s ease;
}

.split-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Flechas de navegaciÃ³n */
/* Estructura del carrusel reajustada para evitar superposiciones */

/* Aseguramos que el contenido tenga mÃ¡rgenes laterales */
.split-carousel-slide .hero-split-content {
  margin-left: 30px; /* Margen adicional para el contenido */
  z-index: 5; /* Z-index menor que los botones */
}

/* Botones de navegaciÃ³n reposicionados */
.split-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.98); /* Fondo casi completamente opaco */
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #7f9cf5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 30; /* Z-index muy alto para asegurar que estÃ©n por encima */
  transition: all 0.3s ease;
}

/* Posiciones ajustadas */
.split-carousel-arrow.left { 
  left: 5px; 
}

.split-carousel-arrow.right { 
  right: 5px; 
}

@media (min-width: 1200px) {
  .split-carousel-arrow.left { left: 10px; }
  .split-carousel-arrow.right { right: 10px; }
  
  /* Contenedor mÃ¡s ancho en pantallas grandes */
  .split-carousel-container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.split-carousel-arrow:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(183, 147, 71, 0.35);
}

/* Dots de navegaciÃ³n */
.split-carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 5;
}

.split-carousel-dots .dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.split-carousel-dots .dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}
.hero-split-content {
  flex: 1 1 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
.hero-split-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  line-height: 1.13;
}
.hero-split-sub {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
}
.hero-split-actions {
  display: flex;
  gap: 18px;
}
.cta-button {
  background: var(--secondary-color); /* Verde de la calculadora */
  color: #fff;
  border: none;
  padding: 14px 38px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px 0 rgba(78, 203, 66, 0.25);
  transition: background 0.3s, box-shadow 0.3s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #B79347 0%, #050A30 100%);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(5, 10, 48, 0.24);
}
.cta-button.cta-secondary {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px 0 rgba(5, 10, 48, 0.10);
}
.cta-button.cta-secondary:hover, .cta-button.cta-secondary:focus {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--secondary-color);
}
.hero-split-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  z-index: 1;
}
.hero-split-image img {
  width: 420px;
  max-width: 96vw;
  height: auto;
  border-radius: 2.2rem;
  box-shadow: 0 8px 48px 0 rgba(127, 156, 245, 0.18), 0 2px 8px 0 rgba(251, 194, 235, 0.13);
  border: 2px solid #e0eafc;
  object-fit: cover;
  background: #fff;
  transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.hero-split-image img:hover {
  transform: scale(1.035) rotate(-1deg);
  box-shadow: 0 16px 64px 0 rgba(127, 156, 245, 0.23), 0 2px 12px 0 rgba(251, 194, 235, 0.16);
}

/* DiseÃ±o responsivo mejorado */
@media (max-width: 900px) {
  .split-carousel-container {
    padding: 48px 45px 60px 45px; /* Padding horizontal aumentado para los botones */
  }
  
  /* Layout en columna para mÃ³viles */
  .split-carousel-slide {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  
  .split-carousel-slide .hero-split-content,
  .split-carousel-slide .hero-split-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  
  /* Resetear el margen izquierdo que agregamos para desktop */
  .split-carousel-slide .hero-split-content {
    margin-left: 0;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  
  /* Imagen optimizada */
  .split-carousel-slide .hero-split-image img {
    width: 85%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Botones de acciÃ³n en columna para pantallas pequeÃ±as */
  .split-carousel-slide .hero-split-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 280px;
  }
  
  /* PosiciÃ³n de los botones de navegaciÃ³n ajustada */
  .split-carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
  
  .split-carousel-arrow.left { left: 8px; }
  .split-carousel-arrow.right { right: 8px; }
  
  /* PosiciÃ³n de los dots */
  .split-carousel-dots {
    bottom: 15px;
  }
}

/* Ajustes especÃ­ficos para mÃ³viles pequeÃ±os */
@media (max-width: 600px) {
  .split-carousel-container {
    padding: 40px 35px 60px 35px;
  }
  
  /* Textos mÃ¡s pequeÃ±os */
  .split-carousel-slide .hero-split-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .split-carousel-slide .hero-split-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  /* Imagen optimizada */
  .split-carousel-slide .hero-split-image img {
    width: 90%;
    border-radius: 1rem;
  }
  
  /* Botones mÃ¡s pequeÃ±os */
  .split-carousel-slide .cta-button {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
  }
  
  /* Flechas mÃ¡s pequeÃ±as y cercanas a los bordes */
  .split-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .split-carousel-arrow.left { left: 5px; }
  .split-carousel-arrow.right { right: 5px; }
  
  /* Dots mÃ¡s pequeÃ±os */
  .split-carousel-dots .dot {
    width: 10px;
    height: 10px;
  }
}

/* Estilos originales hero-split para mantener compatibilidad */
@media (max-width: 900px) {
  .hero-split-container {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 48px 10vw 32px 10vw;
  }
  .hero-split-image img {
    width: 80vw;
    max-width: 420px;
  }
  .hero-split-content {
    align-items: center;
    text-align: center;
    max-width: 96vw;
  }
}
@media (max-width: 600px) {
  .hero-split-content h1 {
    font-size: 1.4rem;
  }
  .hero-split-sub {
    font-size: 1.01rem;
  }
  .hero-split-image img {
    width: 98vw;
    border-radius: 1.1rem;
  }
  .hero-split-container {
    padding: 24px 0 16px 0;
  }
  .cta-button {
    padding: 12px 18px;
    font-size: 1rem;
  }
}


/* SecciÃ³n Nuestra Empresa */
.about-section {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 2rem;
}

.divider-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.divider-icon {
    margin: 0 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(183, 147, 71, 0.1);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(12, 145, 203, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(12, 145, 203, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(12, 145, 203, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(12, 145, 203, 0);
    }
}

.years {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.text {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.about-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.feature-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-cta {
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .feature-item {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-header h1,
    .blog-page .section-header h1,
    .contact-page .section-header h1 {
        font-size: 1.8rem;
    }
    
    .divider-line {
        width: 40px;
    }
}

@media (max-width: 576px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        right: 20px;
    }
    
    .years {
        font-size: 1.5rem;
    }
    
    .text {
        font-size: 0.7rem;
    }
}

/* SecciÃ³n de Blog/Noticias */
.blog-section {
    padding: 6rem 2rem;
    background: linear-gradient(120deg, #F4F6FC 0%, #e9ecef 100%);
    position: relative;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--accent-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(12, 145, 203, 0.25);
}

.day {
    font-size: 1.3rem;
    font-weight: 700;
}

.month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.8rem;
}

.blog-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(78, 203, 66, 0.15);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary-color);
}

.blog-link:hover i {
    transform: translateX(4px);
}

.blog-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.blog-cta {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 4rem 1.5rem;
    }
    
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
}

.services {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Banner de contacto */
.contact-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    padding: 8rem 2rem;
    text-align: center;
    color: var(--white);
}

.contact-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(10, 42, 74, 0.85) 0%, rgba(12, 145, 203, 0.85) 100%);
    z-index: 1;
}

.contact-banner-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.contact-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-banner p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-banner-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(78, 203, 66, 0.3);
    transition: all 0.3s ease;
}

.contact-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 203, 66, 0.4);
    background: var(--primary-color);
}

/* SecciÃ³n de informaciÃ³n de contacto */
.contact-page {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.contact-page .section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact-page .section-header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.contact-page .section-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.contact-page .section-header p {
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(12, 145, 203, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: white;
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(12, 145, 203, 0.2);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.contact-link:after {
    content: 'â†’';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-link:hover:after {
    transform: translateX(4px);
}

/* Estilos para la secciÃ³n de Testimonios */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.testimonials-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info p {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-color);
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--accent-color);
    color: #777;
}

.testimonial-cta {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-btn {
    background: var(--gradient);
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .testimonials-slider {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-banner h2 {
        font-size: 2.2rem;
    }
    
    .contact-banner p {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .contact-banner {
        padding: 6rem 1.5rem;
    }
    
    .contact-banner h2 {
        font-size: 1.8rem;
    }
    
    .contact-banner p {
        font-size: 1rem;
    }
    
    .contact-banner-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-info-header h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* SecciÃ³n de SuscripciÃ³n */
.subscription-section {
    padding: 6rem 0;
    background: linear-gradient(120deg, rgba(12, 145, 203, 0.05) 0%, rgba(78, 203, 66, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 203, 66, 0.08) 0%, rgba(78, 203, 66, 0) 70%);
    z-index: 1;
}

.subscription-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 145, 203, 0.08) 0%, rgba(12, 145, 203, 0) 70%);
    z-index: 1;
}

.subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.subscription-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.subscription-text {
    flex: 1;
    min-width: 300px;
}

.subscription-text h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.subscription-text p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 540px;
}

.subscription-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 145, 203, 0.1);
}

.subscribe-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 50px;
}

.subscribe-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 145, 203, 0.2);
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.privacy-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.privacy-label:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.privacy-label input:checked ~ .checkmark {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.privacy-label input:checked ~ .checkmark:after {
    display: block;
}

.privacy-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-label .text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-label .text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.subscription-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.subscription-features .feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscription-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.subscription-features .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(12, 145, 203, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.subscription-features .feature:hover .feature-icon {
    color: white;
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(12, 145, 203, 0.2);
}

.subscription-features h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.subscription-features p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .subscription-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .subscription-text p {
        margin: 0 auto;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group input {
        width: 100%;
        padding: 1rem;
    }
    
    .subscribe-btn {
        width: 100%;
        padding: 1rem;
        margin: 0 auto;
    }
    
    .form-privacy {
        justify-content: center;
    }
    
    .privacy-label {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .subscription-section {
        padding: 4rem 0;
    }
    
    .subscription-text h2 {
        font-size: 1.8rem;
    }
    
    .subscription-features {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-details i {
    color: var(--primary-color);
}

.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Estilos para el logo en el footer */
.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-height: 80px;
    width: auto;
    filter: brightness(1.1); /* Hace el logo ligeramente mÃ¡s brillante en el fondo oscuro */
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.03);
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(127, 156, 245, 0.3));
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.contact-section ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
}

.contact-section ul li i {
    color: var(--white);
    font-size: 1.2rem;
    width: 25px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.creator-signature {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-signature p {
    color: #777;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.creator-signature a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.creator-signature a {
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.creator-signature a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.creator-signature a:hover {
    color: var(--secondary-color);
}

.creator-signature a:hover::after {
    width: 100%;
}

/* BotÃ³n Subir */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(12, 145, 203, 0.4);
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(78, 203, 66, 0.35);
}

.back-to-top i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* BotÃ³n WhatsApp */
.whatsapp-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-button-container.move-up {
    bottom: 100px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-button i {
    font-size: 2rem;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip {
    background-color: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1;
}

.whatsapp-tooltip:before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
    border-right: none;
}

.whatsapp-tooltip p {
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .whatsapp-button-container {
        bottom: 30px;
        right: 30px;
    }
    
    .whatsapp-button-container.move-up {
        bottom: 100px;
    }
    
    /* Ajustar posiciÃ³n del botÃ³n subir en mÃ³viles */
    .back-to-top {
        bottom: 30px;
        right: 30px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Estilos para la pÃ¡gina QuiÃ©nes Somos */
.page-header {
    background: var(--accent-color);
    background: linear-gradient(135deg, rgba(10, 42, 74, 0.9) 0%, rgba(12, 145, 203, 0.8) 100%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80') no-repeat center/cover;
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.about-section {
    padding: 120px 20px 80px;
    background-color: #ffffff;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    position: relative;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    z-index: 0;
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    display: block;
}

.about-image img:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.about-text {
    flex: 1;
    padding-top: 20px;
}

.about-text h1 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* SecciÃ³n Valores (MisiÃ³n, VisiÃ³n y Valores) */
.values-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.values-header {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.values-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.values-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.mvv-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(12, 145, 203, 0.1) 0%, rgba(78, 203, 66, 0.1) 100%);
}

.mvv-icon i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mvv-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mvv-list {
    padding-left: 1.2rem;
}

.mvv-list li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 0.5rem;
    list-style-type: none;
}

.mvv-list li::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Estilos para la secciÃ³n de Equipo */
.team-section {
    padding: 80px 20px;
    background-color: #f9fbfd;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.member-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-image .social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-member:hover .member-image .social-links {
    opacity: 1;
    transform: translateY(0);
}

.member-image .social-links a {
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.member-image .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.member-position {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mvv-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-text h2, .values-header h2, .section-header h2 {
        font-size: 1.8rem;
    }
    
    .mvv-card, .team-member {
        padding: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image img {
        height: 280px;
    }
}

/* Estilos para la pÃ¡gina de contacto */
.contact-page {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 6px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(12, 145, 203, 0.2);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

.info-card:hover::before {
    height: 100%;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    position: relative;
}

.info-header i {
    font-size: 1.6rem;
    color: var(--primary-color);
    background: rgba(12, 145, 203, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.info-card:hover .info-header i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.info-header h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0;
}

.info-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 60px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-color);
}

.social-connect {
    margin-top: 10px;
    background-color: #f7f9fc;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.social-connect h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(12, 145, 203, 0.2);
}

/* Estilos para el formulario */
.contact-form-container {
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.form-header {
    margin-bottom: 35px;
    position: relative;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.form-header p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 500;
}

.form-group .required {
    color: #e53e3e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #4a5568;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafc;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e0;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 145, 203, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0);
    outline: none;
    background-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
    font-size: 0.95rem;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a86bb 100%);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 15px rgba(12, 145, 203, 0.2);
    z-index: 1;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a86bb 0%, var(--primary-color) 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.submit-button:hover::after {
    left: 0;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(12, 145, 203, 0.4);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(12, 145, 203, 0.3);
}

.submit-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

.form-disclaimer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
    padding: 10px;
    border-top: 1px dashed #e2e8f0;
}

.form-disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.form-disclaimer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-disclaimer a:hover::after {
    transform: scaleX(1);
}

/* SecciÃ³n de mapa */
.map-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.google-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    border: none;
}

/* Media queries para responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .info-card p {
        padding-left: 0;
    }
    
    .map-section {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .google-map {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 60px 20px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-card p {
        text-align: center;
    }
}

/* Estilos especÃ­ficos para la pÃ¡gina de blog */
.blog-page {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

.blog-page .section-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
    position: relative;
}

.blog-page .section-header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.blog-page .section-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.blog-page .section-header p {
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Filtros del blog */
.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #f0f7fc;
    border: 1px solid #e2e8f0;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #e2f0fd;
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.search-container {
    display: flex;
    position: relative;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.95rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 145, 203, 0.2);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--primary-color);
}

/* Grid de artÃ­culos */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Tarjeta de artÃ­culo */
.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #718096;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blog-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* PaginaciÃ³n */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f7fc;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #e2f0fd;
    color: var(--primary-color);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.pagination-btn.next {
    background-color: var(--primary-color);
    color: white;
}

.pagination-btn.next:hover {
    background-color: var(--secondary-color);
    transform: translateX(3px);
}

/* Media queries para responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-page {
        padding: 40px 15px;
    }
    
    .blog-page .section-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-page .section-header p {
        font-size: 0.95rem;
    }
    
    .filter-categories {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
}

/* Estilos para la pÃ¡gina de detalle de blog */
.blog-detail {
    background-color: var(--white);
    margin-top: 60px; /* Para compensar el header fijo */
}

.blog-detail .container {
    max-width: 1000px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.blog-article {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.article-header {
    padding: 2rem 2rem 1rem;
}

.article-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(78, 203, 66, 0.15);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.section-header h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.article-featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-content {
    padding: 0 2rem 2rem;
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 2.5rem 0 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.article-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: rgba(12, 145, 203, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.article-quote blockquote {
    margin: 0;
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-quote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    text-align: right;
}

.article-image {
    margin: 2rem 0;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.article-tips {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: rgba(78, 203, 66, 0.1);
    border-radius: 10px;
}

.article-tips h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-tips ul {
    padding-left: 1.5rem;
}

.article-tips li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-top: 1px solid #eee;
}

.tag-label {
    font-weight: 600;
    color: #444;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--light-gray);
    color: #666;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.share-label {
    font-weight: 600;
    color: #444;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.article-author-bio {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin: 3rem 2rem;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.related-articles {
    margin: 4rem 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.related-content h3 a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h3 a:hover {
    color: var(--primary-color);
}

.related-date {
    font-size: 0.85rem;
    color: #666;
}

.article-cta {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin: 4rem 0 2rem;
}

.article-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.article-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.article-cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: var(--light-gray);
}

/* Responsive para blog-detail */
@media (max-width: 992px) {
    .blog-detail {
        padding: 5rem 1.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .article-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .blog-detail {
        padding: 4rem 1rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-header,
    .article-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
    }
    
    .article-content h2 {
        font-size: 1.4rem;
    }
    
    .article-quote {
        padding: 1.5rem;
    }
    
    .article-tags,
    .article-share {
        padding: 1rem 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-cta {
        padding: 2rem 1.5rem;
    }
    
    .article-cta h2 {
        font-size: 1.5rem;
    }
    
    .article-cta p {
        font-size: 1rem;
    }
}

/* Estilos para el modal de validaciÃ³n */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    animation: slideIn 0.4s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 1.5rem;
    background: var(--gradient);
    color: var(--white);
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
    color: var(--text-color);
}

.modal-body p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-footer {
    padding: 1rem 1.5rem;
    background-color: var(--light-gray);
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

#modal-confirm-btn {
    padding: 0.6rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

#modal-confirm-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos responsivos para el modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
}

/* Estilos para la página de servicios */
.page-banner {
    background: var(--gradient);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-top: 60px;
}

.page-banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-banner h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services-intro {
    padding: 4rem 0 2rem;
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    padding: 2rem 0 5rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(5, 10, 48, 0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    background: var(--light-gray);
    padding: 2rem;
    text-align: center;
}

.service-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
    background: var(--white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
    transform: rotateY(180deg);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.service-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.cta-section {
    background: var(--gradient);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
    margin: 3rem 0 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-content .cta-button {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-content .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: var(--light-gray);
}

/* Estilos responsivos para la pÃ¡gina de servicios */
@media (max-width: 991px) {
    .info-card .info-header,
    .info-card p,
    .info-card .social-links-card {
        text-align: center !important;
    }
    
    .info-header {
        justify-content: center;
    }
    .page-banner {
        padding: 5rem 1.5rem 3rem;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Estilos para la pÃ¡gina de detalle de servicio */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.service-detail-icon {
    background: var(--gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin: 0;
    font-weight: 600;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
}

.service-description h3,
.service-benefits h3,
.service-process h3,
.service-testimonials h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-features-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.service-features-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-features-list li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 4px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.process-steps {
    counter-reset: step;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.process-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.step-number {
    background: var(--gradient);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.testimonial {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p:before {
    content: '\201C';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    left: -1.5rem;
    top: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin: 0 0 0.3rem;
    color: var(--accent-color);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Estilos para el formulario de solicitud de presupuesto */
.service-quote-form {
    position: sticky;
    top: 100px;
}

.quote-form-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Encabezado del formulario */
.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.form-icon {
    background: var(--gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.form-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.form-title h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.form-title p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Barra de progreso */
.form-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    width: 33.33%;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    font-size: 0.85rem;
    color: #999;
    position: relative;
    transition: all 0.3s ease;
}

.step.active {
    color: var(--primary-color);
    font-weight: 600;
}

.step.completed {
    color: var(--secondary-color);
}

/* Pasos del formulario */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grupos de formulario con etiquetas flotantes */
.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.floating-label {
    position: relative;
}

.floating-label .form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    height: 56px;
}

.floating-label textarea.form-control {
    height: auto;
    min-height: 120px;
    padding-top: 1.5rem;
    resize: vertical;
}

.floating-label .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    background-color: #fff;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #777;
    pointer-events: none;
    transition: all 0.3s ease;
    margin: 0;
    font-weight: 400;
}

.floating-label textarea ~ label {
    top: 1.5rem;
    transform: none;
}

.floating-label .form-control:focus ~ label,
.floating-label .form-control:not(:placeholder-shown) ~ label,
.floating-label select.form-control:valid ~ label,
.floating-label select.form-control:focus ~ label {
    top: 0;
    left: 1rem;
    font-size: 0.75rem;
    padding: 0 0.5rem;
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 500;
}

.floating-label .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: all 0.3s ease;
}

.floating-label .textarea-icon {
    top: 1.5rem;
    transform: none;
}

.floating-label .form-control:focus ~ .input-icon {
    color: var(--primary-color);
}

/* Estilos para validaciÃ³n de campos */
.form-control.invalid {
    border-color: #ff3b30;
    background-color: rgba(255, 59, 48, 0.05);
}

.form-control.invalid ~ label {
    color: #ff3b30;
}

.form-control.invalid ~ .input-icon {
    color: #ff3b30;
}

.form-control.valid {
    border-color: #34c759;
    background-color: rgba(52, 199, 89, 0.05);
}

.form-control.valid ~ .input-icon {
    color: #34c759;
}

/* AnimaciÃ³n para campos invÃ¡lidos */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-control.invalid:focus {
    animation: shake 0.6s ease;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

/* Checkbox personalizado */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* NavegaciÃ³n del formulario */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.prev-btn,
.next-btn,
.submit-btn {
    border: none;
    border-radius: 30px;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prev-btn {
    background-color: #f0f0f0;
    color: #555;
}

.prev-btn:hover {
    background-color: #e0e0e0;
}

.next-btn,
.submit-btn {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.submit-btn {
    padding: 1rem 2rem;
    font-weight: 600;
}

/* SecciÃ³n de contacto alternativo */
.contact-info {
    margin-top: 2.5rem;
    text-align: center;
}

.contact-divider {
    position: relative;
    height: 1px;
    background-color: #eee;
    margin-bottom: 1.5rem;
}

.contact-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #777;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #555;
}

.contact-method:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-method.whatsapp .contact-icon i {
    color: #25D366;
}

.contact-method.whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.1);
}

/* Estilos para la secciÃ³n de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estilos responsivos para la pÃ¡gina de detalle de servicio */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-quote-form {
        position: static;
    }
    
    .service-detail-header h2 {
        font-size: 1.8rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Ajuste para mostrar un beneficio por fila en mÃ³viles */
@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 4.5rem 1rem 2.5rem;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .services-intro {
        padding: 3rem 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .service-card {
        border-radius: 8px;
    }
    
    .service-icon {
        padding: 1.5rem;
    }
    
    .service-icon i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 3.5rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-content .cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

/* Estilos para pÃ¡ginas legales (TÃ©rminos y Condiciones, PolÃ­tica de Privacidad) */
.legal-page {
    padding: 80px 0;
    margin-top: 60px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    margin-bottom: 40px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-header p {
    color: #666;
    font-size: 1.1rem;
}

.legal-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-date {
    margin-top: 40px;
    text-align: right;
    color: #666;
    font-style: italic;
}

/* Estilos especÃ­ficos para la pÃ¡gina de crÃ©ditos */
.credits-page {
    padding: 80px 0;
    margin-top: 60px;
}

.credits-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.credits-header {
    margin-bottom: 40px;
    text-align: center;
}

.credits-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.credits-header p {
    color: #666;
    font-size: 1.1rem;
}

.credits-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.agency-logo {
    max-width: 250px;
    margin: 0 auto 30px;
    display: block;
}

.team-section {
    margin-top: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    width: 200px;
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.agency-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-agency {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-agency h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.agency-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.agency-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.agency-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.technologies {
    margin-top: 40px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.tech-icon {
    width: 80px;
    text-align: center;
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tech-icon span {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

/* Media queries para responsividad de pÃ¡ginas legales */
@media (max-width: 768px) {
    .legal-header h1,
    .credits-header h1 {
        font-size: 2rem;
    }
    
    .legal-content,
    .credits-content {
        padding: 25px;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-member {
        width: 150px;
    }
}

/* Estilos para la pÃ¡gina de contacto - Integrados desde contacto.css */
/**
 * Estilos para la pÃ¡gina de contacto
 * Compucontables - 2025
 */

/* Estilos para la secciÃ³n de contacto */
.contact-page {
    padding: 80px 0;
    background-color: var(--light-gray);
    margin-top: 60px; /* Compensar el header fijo */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Contenedor de la informaciÃ³n de contacto y formulario */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

/* InformaciÃ³n de contacto (izquierda) */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px 25px 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card p {
    margin-bottom: 3px;
    line-height: 1.2;
    margin-top: 0;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.info-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(12, 145, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-header h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0;
}

/* Estilo para mantener h2 con apariencia de h3 */
.h3-style {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0;
}

.info-card p {
    margin: 8px 0;
    color: var(--text-color);
    line-height: 1.6;
    padding-left: 55px;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-links-card {
    display: flex;
    gap: 15px;
    padding-left: 55px;
    margin-top: 15px;
}

.social-links-card a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-card a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Formulario de contacto (derecha) */
.contact-form-container {
    flex: 1.5;
    min-width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-color);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group .required {
    color: #e74c3c;
    margin-left: 3px;
}

/* Estilos para inputs, select y textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 145, 203, 0.1);
    background-color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

/* BotÃ³n de envÃ­o */
.submit-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 14px 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.submit-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(12, 145, 203, 0.2);
}

.submit-button:active {
    transform: translateY(0);
}

/* Disclaimer del formulario */
.form-disclaimer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

.form-disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-disclaimer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* SecciÃ³n del mapa */
.map-section {
    margin-top: 80px;
}

.google-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    display: block;
}

/* Media queries para responsividad */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 12px;
    }
    
    .submit-button {
        padding: 12px 20px;
        width: 100%;
    }
}

/* Clase para alineaciÃ³n de texto a la izquierda */
.text-left {
    text-align: left;
}

/* Estilos para el formulario flotante */
.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.floating-label label {
    position: absolute;
    top: 15px;
    left: 45px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-label input:focus,
.floating-label textarea:focus,
.floating-label select:focus,
.floating-label input:not(:placeholder-shown),
.floating-label textarea:not(:placeholder-shown),
.floating-label select:not(:placeholder-shown) {
    border-color: var(--primary-color);
    outline: none;
    background-color: #fff;
}

.floating-label input:focus ~ label,
.floating-label textarea:focus ~ label,
.floating-label select:focus ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background-color: #fff;
    padding: 0 5px;
}

.floating-label .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

/* Estilos para el formulario de cotizaciÃ³n */
.quote-form .form-step {
    display: none;
}

.quote-form .form-step.active {
    display: block;
}

.quote-form .next-btn,
.quote-form .prev-btn,
.quote-form .submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.quote-form .next-btn:hover,
.quote-form .prev-btn:hover,
.quote-form .submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive styles for contact info blocks */
@media (max-width: 768px) {
    /* Center info blocks on mobile */
    .info-card {
        padding: 20px;
        margin-bottom: 15px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .info-card .info-header,
    .info-card p,
    .info-card .social-links-card {
        text-align: center !important;
    }
    
    .info-header {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .info-header i {
        margin-right: 10px;
    }
    
    .info-card h2.h3-style {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.95rem;
    }
    
    .social-links-card {
        justify-content: center;
    }
}

.quote-form .full-width {
    width: 100%;
}
