/* Variables de colores */
:root {
    --color-primary: #134074;
    --color-secondary: #13315C;
    --color-dark: #0B2545;
    --color-light: #8DA9C4;
    --color-accent: #8DA9C4;
    --color-white: #eaeef3;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

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

.btn-link {
    color: var(--color-primary);
    font-weight: 500;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.btn-link:hover:after {
    width: 100%;
}

/* Sección de cabecera */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--color-accent);
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Header y Navegación */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.header.scrolled .logo h1 {
    color: var(--color-dark);
}

.logo span {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--color-primary);
    font-weight: 500;
    position: relative;
}

.header.scrolled .nav-menu a {
    color: var(--color-dark);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-selector a {
    color: var(--color-primary);
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
}

.header.scrolled .language-selector a {
    color: var(--color-dark);
}

.language-selector a.active,
.language-selector a:hover {
    opacity: 1;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.header.scrolled .bar {
    background-color: var(--color-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e6effd 0%, #d4e6fc 100%);
    display: flex;
    align-items: center;
    color: var(--color-dark);
    position: relative;
    padding: 80px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(19, 64, 116, 0.1);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-tag i {
    margin-right: 8px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 32px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 16px;
    color: #666;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-action {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-action:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(19, 64, 116, 0.2);
}

.btn-secondary-outline {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: transparent;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background-color: rgba(19, 64, 116, 0.05);
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
}

.hero-illustration::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(24, 61, 99, 0.301);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse 8s infinite ease-in-out;
}

.hero-illustration::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(86, 137, 184, 0.527);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: rotate 30s infinite linear;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.destination-bubble {
    position: absolute;
    background-color: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.26);
    display: flex;
    flex-direction: column;
    min-width: 140px;
    z-index: 2;
    transition: all 0.4s ease;
    animation: float 4s infinite ease-in-out;
}

.destination-bubble:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-1 {
    top: 13%;
    left: 35%;
    animation-delay: 0s;
}

.destination-2 {
    top: 45%;
    right: 2%;
    animation-delay: 1s;
}

.destination-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.destination-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-name i {
    color: var(--color-accent);
    font-size: 16px;
}

.destination-type {
    font-size: 14px;
    color: #8DA9C4;
    font-weight: 500;
    padding-left: 26px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Sección de Destinos */
.featured-destinations {
    padding: 100px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-info {
    padding: 24px;
}

.destination-info h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.destination-info p {
    color: #666;
    margin-bottom: 16px;
}

/* Sección de Servicios */
.services {
    padding: 100px 0;
    background-color: #f8f8fc;
}

/* Wrapper de la sección Acerca de */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.about-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content-container h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.about-content-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Sección de estadísticas */
.stats-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.stats-box {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.stats-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.stats-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.left-stat .stats-number {
    color: var(--color-primary);
}

.right-stat .stats-number {
    color: #ff758f; /* Un color rosado similar al de la imagen */
}

.stats-text {
    font-size: 14px;
    color: #999;
}

.stats-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(19, 64, 116, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-stat .stats-icon {
    background-color: rgba(19, 64, 116, 0.1);
}

.left-stat .stats-icon i {
    color: var(--color-primary);
}

.right-stat .stats-icon {
    background-color: rgba(255, 117, 143, 0.1); /* Fondo rosa claro */
}

.right-stat .stats-icon i {
    color: #ff758f; /* Icono rosa */
}

/* Cuadrícula de características de servicio */
.services-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-feature-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.service-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(19, 64, 116, 0.1);
}

.service-feature-icon i {
    font-size: 20px;
    color: var(--color-primary);
}

.service-feature-icon.accent-icon {
    background-color: rgba(255, 117, 143, 0.1);
}

.service-feature-icon.accent-icon i {
    color: #ff758f;
}

.service-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.service-feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Estilos responsive */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-container {
        order: -1;
    }
    
    .stats-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-content-container h2 {
        font-size: 32px;
    }
    
    .stats-number {
        font-size: 36px;
    }
    
    .services-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* NUEVOS ESTILOS PARA LA SECCIÓN DE SERVICIOS - DISEÑO ACTUAL */
/* Sección de Servicios - Estilo mejorado */
.services {
    padding: 100px 0;
    background-color: #f8f9fc;
}

/* Héroe de la sección de servicios */
.services-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.services-illustration {
    padding: 20px;
}

.services-illustration img {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
}

.services-description h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.services-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 500px;
}

/* Tarjetas de estadísticas */
.stats-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.blue .stat-number {
    color: var(--color-primary);
}

.pink .stat-number {
    color: #ff6b95;
}

.stat-unit {
    font-size: 14px;
    color: #999;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-icon {
    background-color: rgba(19, 64, 116, 0.1);
}

.blue-icon i {
    color: var(--color-primary);
}

.pink-icon {
    background-color: rgba(255, 107, 149, 0.1);
}

.pink-icon i {
    color: #ff6b95;
}

/* Tarjetas de características */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blue-bg {
    background-color: rgba(19, 64, 116, 0.1);
}

.blue-bg i {
    color: var(--color-primary);
    font-size: 18px;
}

.pink-bg {
    background-color: rgba(255, 107, 149, 0.1);
}

.pink-bg i {
    color: #ff6b95;
    font-size: 18px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .services-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    
    .services-description p {
        max-width: 100%;
    }
    
    .services-illustration {
        order: -1;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .services-description h2 {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

/* NUEVO DISEÑO EXACTO COMO LA IMAGEN DE REFERENCIA */
.services {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.main-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 70px;
}

/* Panel izquierdo con imagen y estadísticas */
.services-left-panel {
    flex: 1;
    max-width: 550px;
}

.service-image-wrapper {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.services-stats-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-block {
    flex: 1;
    background-color: transparent;
    border-radius: 0;
    padding: 24px 0;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: #333;
}

.stat-block:first-child .stat-value {
    color: #134074;
}

.stat-block:last-child .stat-value {
    color: #ff6b95;
}

.stat-unit {
    font-size: 14px;
    color: #999;
}

.stat-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-badge.blue {
    background-color: rgba(19, 64, 116, 0.1);
}

.stat-badge.blue i {
    color: #134074;
}

.stat-badge.pink {
    background-color: rgba(255, 107, 149, 0.1);
}

.stat-badge.pink i {
    color: #ff6b95;
}

/* Panel derecho con título y características */
.services-right-panel {
    flex: 1;
    max-width: 550px;
}

.services-title-container {
    margin-bottom: 50px;
}

.services-title-container h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.services-title-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.services-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-box {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.feature-box-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-box-icon.blue {
    background-color: rgba(19, 64, 116, 0.1);
}

.feature-box-icon.blue i {
    color: #134074;
    font-size: 16px;
}

.feature-box-icon.pink {
    background-color: rgba(255, 107, 149, 0.1);
}

.feature-box-icon.pink i {
    color: #ff6b95;
    font-size: 16px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive para el nuevo diseño */
@media (max-width: 991px) {
    .main-services-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .services-left-panel,
    .services-right-panel {
        max-width: 100%;
    }
    
    .service-image-wrapper {
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .services-stats-container {
        flex-direction: column;
    }
    
    .services-features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title-container h2 {
        font-size: 32px;
    }
    
    .stat-value {
        font-size: 36px;
    }
}

/* Sección de Testimonios */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content p {
    position: relative;
    padding-left: 24px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    color: var(--color-primary);
    opacity: 0.3;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
}

.author-info h4 {
    font-size: 16px;
    color: var(--color-primary);
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-rating {
    margin-left: auto;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 14px;
}

/* Sección de Contacto */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-info {
    padding: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.contact-details li i {
    margin-right: 16px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.contact-form {
    padding: 40px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Footer */
.footer {
    background-color: #0B2545;
    color: #fff;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

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

.footer-logo span {
    color: var(--color-accent);
}

.footer-logo p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-5px);
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
    font-weight: 600;
    padding-bottom: 12px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
}

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

.footer-links li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 8px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #ccc;
    font-size: 16px;
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--color-accent);
    margin-top: 5px;
    font-size: 18px;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 25px 0;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 15px;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: #aaa;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.legal-links a:hover {
    color: var(--color-accent);
}

.legal-links a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -15px;
    color: #666;
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-logo h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-links a:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-links-container {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

/* Botón de regreso arriba */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(19, 64, 116, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    cursor: pointer;
    transform: translateY(20px);
}

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

.back-to-top:hover {
    background-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(19, 64, 116, 0.4);
}

.back-to-top i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Animaciones */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .contact-wrapper,
    .footer-content,
    .services-header {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-content {
        order: 1;
    }
    
    .services-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .services-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--color-white);
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: var(--transition);
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: var(--color-dark);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .services-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Modal de Suscripción */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #f8f9fa;
    margin: 0 auto;
    max-width: 500px;
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-30px);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
}

.close-modal:hover {
    color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 30px 35px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-header h3 {
    color: var(--color-primary);
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-header p {
    color: #666;
    font-size: 16px;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.6;
}

.modal-form {
    padding: 25px 35px;
}

.modal-form .form-group {
    margin-bottom: 25px;
}

.modal-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    background-color: white;
}

.modal-form input[type="email"]:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.modal-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-footer {
    padding: 15px 35px 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-footer p {
    font-size: 14px;
    color: #999;
}

/* ESTILOS EXACTOS PARA LA SECCIÓN HERO DE REFERENCIA */
.hero-reference {
    background-color: #f8f8fa;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

/* Panel izquierdo con la imagen */
.hero-image-panel {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.hero-image-panel img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* Tarjeta de estadísticas */
.hero-stats-card {
    background-color: transparent;
    border-radius: 0;
    padding: 30px 0;
    box-shadow: none;
    margin-top: 20px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.stat-column {
    position: relative;
    padding-right: 25px;
    flex: 1;
}

.stat-divider {
    width: 1px;
    background-color: #e5e5e5;
    margin: 0 20px;
}

.stat-header {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number.dark {
    color: #424d67;
}

.stat-number.pink {
    color: #ff6b95;
}

.stat-subtitle {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.stat-icon-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-container.blue {
    background-color: rgba(66, 77, 103, 0.1);
}

.stat-icon-container.blue i {
    color: #424d67;
}

.stat-icon-container.pink {
    background-color: rgba(255, 107, 149, 0.1);
}

.stat-icon-container.pink i {
    color: #ff6b95;
}

/* Panel derecho con texto y características */
.hero-content-panel {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-header {
    margin-bottom: 40px;
}

.hero-header h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #363853;
    margin-bottom: 25px;
}

.hero-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Características destacadas */
.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.blue {
    background-color: rgba(66, 77, 103, 0.1);
}

.feature-icon.blue i {
    color: #424d67;
    font-size: 16px;
}

.feature-icon.pink {
    background-color: rgba(255, 107, 149, 0.1);
}

.feature-icon.pink i {
    color: #ff6b95;
    font-size: 16px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #363853;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-panel, 
    .hero-content-panel {
        max-width: 600px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-header h1 {
        font-size: 36px;
    }
    
    .hero-stats-card {
        padding: 25px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Sección de Ofertas Especiales */
.special-offers {
    padding: 100px 0;
    background-color: #f8f9fc;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

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

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

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 107, 149, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.discount-amount {
    font-size: 24px;
    font-weight: 700;
}

.discount-text {
    font-size: 12px;
    font-weight: 500;
}

.offer-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 220px);
}

.offer-details {
    margin-bottom: 20px;
}

.offer-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

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

.offer-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.offer-features span {
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    color: #555;
}

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

.offer-price-container {
    margin-bottom: 20px;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    font-size: 14px;
    color: #777;
    display: block;
}

.offer-card .btn-primary {
    width: 100%;
    text-align: center;
}

@media (max-width: 991px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-image {
        height: 200px;
    }
} 