/* ==========================================================================
   VIAJES D'OLEG - SISTEMA DE ESTILOS UNIFICADO
   ========================================================================== */

/* --- VARIABLES Y CONFIGURACIÓN CORPORATIVA --- */
:root {
    --primary-teal: #0b8d93;
    --primary-dark: #003B42;
    --accent-lime: #61cb41;
    --accent-gold: #bbb343;
    --accent-red: #d90102;
    --bg-light: #F7FAFA;
    --text-dark: #1A2E30;
    --text-muted: #556D70;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 12px rgba(0, 91, 100, 0.05);
    --shadow-md: 0 12px 30px rgba(0, 91, 100, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    color: var(--primary-teal);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

        /* --- PRECIOSOS COMPONENTES (BOTONES) --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--accent-lime);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(116, 192, 67, 0.4);
        }

        .btn-primary:hover {
            background-color: #63A837;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(116, 192, 67, 0.5);
        }

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

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-teal);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

/* --- HEADER & COMPORTAMIENTO DEL MENÚ NAV --- */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 45px;
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
}

.logo-title {
    font-family: 'Kanit', sans-serif;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-teal);
}

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

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

.logo-doleg {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-teal);
    border-radius: 2px;
    transition: var(--transition);
}

        /* --- HERO PREMIUM ROW --- */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 59, 66, 0.85) 0%, rgba(0, 91, 100, 0.6) 100%),
                        url('../img/viajes-al-caribe.jpg') no-repeat center center/cover;
            color: var(--white);
            padding-top: 100px;
            overflow: hidden;
        }

        /* Onda sutil inferior para romper la monotonía recta */
        .hero-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .hero-shape svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .hero-shape .shape-fill {
            fill: var(--bg-light);
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .hero-badge span {
            color: var(--accent-lime);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero-title span {
            color: var(--accent-lime);
        }

        .hero-description {
            font-size: 1.2rem;
            font-weight: 500;
            opacity: 0.95;
            margin-bottom: 40px;
            max-width: 680px;
        }

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

        /* --- SECCIÓN ACOMPAÑAMIENTO (VALOR EN EL CLIENTE) --- */
        .features-section {
            padding: 120px 0;
            position: relative;
        }

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

        .section-subtitle {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--accent-lime);
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary-teal);
            letter-spacing: -0.5px;
        }

		.features-grid {
			display: grid;
			/* Intenta colocar columnas de mínimo 320px; si no caben en la pantalla móvil, se bajan solas */
			grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
			gap: 32px;
		}

        .feature-card {
            background-color: var(--white);
            padding: 48px 40px;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0, 91, 100, 0.03);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--primary-teal);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background-color: rgba(0, 91, 100, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon-wrapper {
            background-color: var(--primary-teal);
        }

        .feature-card:hover .feature-icon-wrapper svg {
            stroke: var(--white);
            fill: none;
        }

        .feature-card:hover .feature-icon-wrapper svg.fill-icon {
            fill: var(--white);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--primary-teal);
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* --- CONTACTO / ASESORÍA CONCEPTO PRO --- */
        .cta-section {
            padding-bottom: 120px;
        }

        .cta-wrapper {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
            border-radius: 32px;
            padding: 64px;
            color: var(--white);
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        /* Círculos sutiles decorativos de fondo en el CTA */
        .cta-wrapper::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background-color: rgba(116, 192, 67, 0.1);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
        }

        .cta-info h2 {
            color: var(--white);
            font-size: 2.2rem;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .cta-info p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 32px;
            font-weight: 300;
        }

        .contact-bullets {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .bullet-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .bullet-icon {
            width: 24px;
            height: 24px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--accent-lime);
        }

        .cta-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 24px;
            box-shadow: var(--shadow-md);
            z-index: 2;
        }

        .cta-form h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
            color: var(--primary-dark);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #E1EBEB;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            color: var(--text-dark);
            background-color: #FAFCFC;
            transition: var(--transition);
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary-teal);
            background-color: var(--white);
            box-shadow: 0 0 0 4px rgba(0, 91, 100, 0.08);
        }

/* --- HERO DE PÁGINAS INTERIORES --- */
.inner-hero {
    background: linear-gradient(135deg, rgba(0, 59, 66, 0.9) 0%, rgba(0, 91, 100, 0.7) 100%),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 180px 0 100px 0;
    color: var(--white);
    text-align: center;
}

/* Variantes visuales de heros específicas para dar variedad temática */
body.page-nosotros .inner-hero {
    background-image: linear-gradient(135deg, rgba(0, 59, 66, 0.9) 0%, rgba(0, 91, 100, 0.7) 100%), url('https://images.unsplash.com/photo-1565034946487-077786996e27?auto=format&fit=crop&w=1920&q=80');
}
body.page-beneficios .inner-hero {
    background-image: linear-gradient(135deg, rgba(0, 59, 66, 0.9) 0%, rgba(0, 91, 100, 0.7) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80');
}
body.page-servicios .inner-hero {
    background-image: linear-gradient(135deg, rgba(0, 59, 66, 0.9) 0%, rgba(0, 91, 100, 0.7) 100%), url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1920&q=80');
}
body.page-contacto .inner-hero {
    background-image: linear-gradient(135deg, rgba(0, 59, 66, 0.9) 0%, rgba(0, 91, 100, 0.7) 100%), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1920&q=80');
}

.inner-hero h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.inner-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* --- SECCIONES CORPORATIVAS (Misión, Visión, Valores) --- */
.corporate-info { padding: 100px 0 60px 0; }
.corp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.corp-card { background: var(--white); padding: 48px; border-radius: 24px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0, 91, 100, 0.02); }
.corp-card h2 { font-size: 1.8rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.corp-card h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: var(--accent-lime); }
.corp-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

.valores-section { padding: 60px 0 100px 0; }
.section-title { text-align: center; font-size: 2.2rem; font-weight: 800; margin-bottom: 48px; }
.valores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.valor-card { background: var(--white); padding: 32px; border-radius: 20px; box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); }
.valor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.valor-icon { width: 50px; height: 50px; background-color: rgba(116, 192, 67, 0.1); color: var(--accent-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; font-weight: bold; font-size: 1.2rem; }
.valor-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.valor-card p { font-size: 0.9rem; color: var(--text-muted); }

/* --- GRID DE EQUIPO (NOSOTROS) --- */
.team-section { padding: 100px 0; background-color: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team-card { background-color: var(--bg-light); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); text-align: center; border: 1px solid rgba(0,0,0,0.02); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.member-img-container { width: 100%; height: 250px; background-color: #E2EBEB; position: relative; overflow: hidden; }
.member-img { width: 100%; height: 100%; object-fit: cover; }
.member-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--primary-teal); font-weight: 600; opacity: 0.4; font-size: 0.9rem; }
.member-info { padding: 24px; }
.member-info h3 { font-size: 1.15rem; color: var(--primary-dark); margin-bottom: 4px; }
.member-info .role { font-size: 0.85rem; font-weight: 600; color: var(--accent-lime); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.member-info .location { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--text-muted); background: rgba(0, 91, 100, 0.05); padding: 4px 12px; border-radius: 20px; font-weight: 500; }

/* --- GRID DE DESTINOS --- */
.destinations-section { padding: 100px 0; }
.destinations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.dest-card { background: var(--white); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-img-wrapper { width: 100%; height: 300px; overflow: hidden; position: relative; }
.dest-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-tag { position: absolute; top: 20px; left: 20px; background-color: var(--accent-lime); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 6px 14px; border-radius: 30px; text-transform: uppercase; letter-spacing: 1px; }
.dest-content { padding: 36px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.dest-content h2 { font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 12px; }
.dest-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }
.dest-footer { border-top: 1px solid #E1EBEB; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.benefits-indicator { font-size: 0.85rem; font-weight: 600; color: var(--primary-teal); display: flex; align-items: center; gap: 6px; }
.benefits-indicator span { color: var(--accent-lime); }
.btn-sm { font-size: 0.85rem; font-weight: 600; color: var(--white); background-color: var(--primary-teal); padding: 10px 20px; border-radius: 30px; }
.btn-sm:hover { background-color: var(--accent-lime); }

/* --- SECCIÓN BENEFICIOS DE MARCA --- */
.benefits-section { padding: 100px 0; }
.benefit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.benefit-row:nth-child(even) { direction: rtl; }
.benefit-row:nth-child(even) .benefit-text { direction: ltr; }
.benefit-img { width: 100%; height: 400px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-md); }
.benefit-text h2 { font-size: 2rem; margin-bottom: 20px; color: var(--primary-dark); }
.benefit-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.bullets-list { list-style: none; }
.bullets-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-weight: 500; }
.bullet-check { width: 20px; height: 20px; background-color: rgba(116, 192, 67, 0.15); color: var(--accent-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

/* --- SECCIÓN SERVICIOS ESPECIALIZADOS --- */
.services-section { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-card { background: var(--white); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.02); }
.service-img-wrapper { height: 260px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img { transform: scale(1.05); }
.service-body { padding: 36px; }
.service-body h2 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 12px; }
.service-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.service-banner { display: flex; flex-direction: column; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); grid-column: 1 / -1; position: relative; }
.service-banner .service-img-wrapper { height: 320px; }
.service-banner-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 40px; background: linear-gradient(to top, rgba(0,59,66,0.92) 0%, rgba(0,59,66,0.65) 60%, transparent 100%); color: var(--white); }
.service-banner-body h2 { color: var(--white); font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.banner-subtitle { font-size: 1.05rem; font-weight: 500; color: var(--accent-lime); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.service-banner-body p { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.6; max-width: 720px; }


/* --- FORMULARIO Y CANALES DE CONTACTO --- */
.contact-content { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.info-side h2 { font-size: 1.8rem; margin-bottom: 16px; color: var(--primary-dark); }
.info-side p { color: var(--text-muted); margin-bottom: 40px; }
.contact-card { background: var(--white); padding: 32px; border-radius: 20px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 20px; margin-bottom: 24px; border: 1px solid rgba(0,0,0,0.01); }
.contact-card-icon { width: 48px; height: 48px; background-color: rgba(116, 192, 67, 0.1); color: var(--accent-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.contact-card h3 { font-size: 1.1rem; color: var(--primary-teal); margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.form-side { background: var(--white); padding: 48px; border-radius: 28px; box-shadow: var(--shadow-md); }
.form-side h2 { font-size: 1.6rem; margin-bottom: 24px; color: var(--primary-dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid #E1EBEB; border-radius: 12px; font-family: inherit; font-size: 0.95rem; background-color: #FAFCFC; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-teal); background-color: var(--white); box-shadow: 0 0 0 4px rgba(0, 91, 100, 0.08); }
.btn-submit { background-color: var(--accent-lime); color: var(--white); font-weight: 600; padding: 16px 32px; border: none; border-radius: 12px; width: 100%; cursor: pointer; transition: var(--transition); font-size: 1rem; box-shadow: 0 6px 20px rgba(116, 192, 67, 0.3); }
.btn-submit:hover { background-color: #63A837; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(116, 192, 67, 0.4); }

/* --- FOOTER GENERAL --- */
.site-footer {
    background-color: var(--primary-dark);
    padding: 48px 0 24px;
    font-size: 0.9rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    font-family: 'Kanit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 360px;
    line-height: 1.5;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    color: var(--accent-lime);
    border-color: var(--accent-lime);
    background-color: rgba(97, 203, 65, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE EFICIENTE)
   ========================================================================== */
@media (max-width: 992px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .corp-grid, .destinations-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
/* Botón hamburguesa base */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001; /* Asegura que quede por encima del menú desplegado */
    }

    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--primary-teal);
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Transición suave */
        transform-origin: center;
    }

    
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; height: 100vh;
        background-color: var(--white);
        padding: 100px 40px;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; }

    .nav-menu.active .logo-doleg {
        display: block;
        margin: 0 auto 32px;
    }

    .inner-hero h1 { font-size: 2.2rem; }
    .team-grid, .services-grid { grid-template-columns: 1fr; gap: 24px; }
    .benefit-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .benefit-row:nth-child(even) { direction: ltr; }
    .benefit-img { height: 280px; }

    .form-side, .corp-card { padding: 32px 20px; }

/* Forzar a una sola columna limpia en móviles y ajustar espaciados */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px; /* Hace los márgenes internos más cómodos en pantallas pequeñas */
    }
.cta-wrapper {
        /* 1. Cambiamos las 2 columnas por una sola columna vertical limpia */
        grid-template-columns: 1fr !important; 
        
        /* 2. Reducimos el padding excesivo para dar más espacio al formulario */
        padding: 40px 20px !important; 
        
        /* 3. Ajustamos un poco la separación entre el texto y el formulario */
        gap: 32px; 
        
        /* 4. Suavizamos un poco el radio en pantallas pequeñas (opcional, se adapta mejor) */
        border-radius: 24px; 
    }

    /* Aseguramos que el formulario ocupe el ancho disponible sin salirse */
    .cta-form {
        width: 100% !important;
        box-sizing: border-box;
    }

.hero-section {
	padding-bottom: 80px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
	.inner-hero h1 {
		line-height: 1.2;
	}
	/* 1. Forzar a que los bloques de canales y de formulario se apilen verticalmente */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    /* 2. Asegurar que los contenedores hijos usen el 100% del ancho del dispositivo */
    .info-side, .form-side {
        width: 100% !important;
        box-sizing: border-box;
    }

    /* 3. Evitar que las tarjetas de contacto se desborden por márgenes rígidos */
    .contact-card {
        width: 100% !important;
        box-sizing: border-box;
        padding: 20px 16px; /* Reducción de márgenes internos */
        display: flex;
        align-items: flex-start;
        gap: 16px;
        /* Evita que correos electrónicos largos rompan la caja, forzando saltos de línea */
        word-break: break-word; 
        overflow-wrap: anywhere;
    }

    /* 4. Evitar que el icono de la tarjeta se encoja o deforme por falta de espacio horizontal */
    .contact-card-icon {
        flex-shrink: 0;
    }
    
    /* 5. Asegurar tamaños de letra cómodos y legibles en el teléfono */
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .contact-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    
    .service-banner-body {
        padding: 36px 24px;
    }
    .service-banner-body h2 {
        font-size: 1.8rem;
    }
    .service-banner-body p {
        font-size: 0.95rem;
    }
}