/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55); /* semi-transparente */
    backdrop-filter: blur(6px); /* efecto premium */
}

/* CONTENEDOR NAV */
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* ajustá si querés más grande */
}

.logo p {
    margin: 0;
    font-size: 16px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.85;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
}


/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6ec1e4; /* celeste del logo */
}


/* HERO */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* SLIDER */
.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg, #6ec1e4, #4fa3c7);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Hover */
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    background: linear-gradient(135deg, #7fd0ef, #5bb4db);
}


/* WHY US */
.why-us {
    background: linear-gradient(
        to bottom,
        #f3f5f4 0%,
        #eef2f1 100%
    );
    padding: 100px 0;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 70px;
    font-size: 34px;
    letter-spacing: 1px;
    color: #002b36;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 80px;
    align-items: start;
}

.why-list,
.licenses ul {
    list-style: none;
    padding: 0;
}

.why-list li,
.licenses ul li {
   position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.why-list li::before,
.licenses ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #6ec1e4;
    font-weight: bold;
}

.licenses {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
    height: 300px;
}


.licenses h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #002b36;
}

.licenses p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Trucha separador*/
.fish-separator {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background:  #f3f5f4;
}

.fish-separator img {
    width: 40%;
    max-width: 600px;
    height: 400px;
    opacity: 0.85;
}
.fish-separator img {
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}


/* EXPERIENCES */

.container {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    padding: 15px 0px;
}
.experiences {
    background: #f7f9fa;
}

.experiences h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
}

.experience {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.experience h3 {
    margin-bottom: 10px;
    color: #002b36;
}

.experience p {
    color: #555;
    line-height: 1.6;
}

.experience-cta {
    text-align: center;
    margin-top: 60px;
}


/* EXPERIENCES BACKGROUND IMAGE */
.bg-image {
    position: relative;
    background-image: url("/multimedia/portada/expiriense.jpg");
    background-position: center 10%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Overlay oscuro */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Contenido por arriba del overlay */
.bg-image .container {
    position: relative;
    z-index: 2;
}

/* Ajustes de texto */
.bg-image h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
    color: #ffffff;
}

/* Cards sobre fondo */
.bg-image .experience {
    background: rgba(255, 255, 255, 0.92);
    color: #002b36;
}



/* FOOTER */
.footer {
    background: #002b36;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    padding: 80px 24px 60px;
    max-width: 1200px;
    margin: auto;
}

/* BRAND */
.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d8db;
    max-width: 260px;
}

.footer h4 {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

/* NAV */
.footer-social h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #d0d8db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #6ec1e4;
}
/* GUIDE */
.guide {
    text-align: center;
}

.guide img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 12px;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.guide h4 {
    margin-bottom: 8px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-icons img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: translateY(-3px);
}

/* CONTACT */
.footer-contact {
    display: block;
    margin-bottom: 12px;
    color: #d0d8db;
    text-decoration: none;
    font-size: 14px;
}

.contact-link {
    display: block;
    margin-bottom: 12px;
    color: #d0d8db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact .contact-link:hover {
    color: #6ec1e4;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #aab7bb;
}
.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact img {
    width: 22px;
    height: 22px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link img {
    width: 22px;
    height: 22px;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-link:hover img {
    opacity: 1;
    transform: translateY(-3px);
}


.footer-block h4 {
    margin-bottom: 14px;
}

/* LISTA */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ITEM */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d0d8db;
    font-size: 14px;
}

/* ICONOS */
.contact-list img {
    width: 20px;
    height: 20px;
    flex-shrink: 0; /* CLAVE: evita desalineaciones */
}

.home-intro {
    background: #0b1f26;
    padding: 30px 0;
}
.home-intro-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-intro-text {
    color: #ffffff;
}

.intro-eyebrow {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6ec1e4;
    margin-bottom: 14px;
}

.home-intro-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.home-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #d0d8db;
    margin-bottom: 18px;
    max-width: 520px;
}
.home-intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-intro-image img {
    width: 100%;
    max-width: 520px;   /* 🔥 controla el tamaño real */
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.home-intro.reverse .home-intro-grid {
    direction: rtl;
}

.home-intro.reverse .home-intro-text,
.home-intro.reverse .home-intro-image {
    direction: ltr;
}


/*Tours-------------------------------------------------------------------------------------------*/
.waters-hero {
    position: relative;
    height: 100vh; /* ocupa casi toda la primera vista */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    background-image: url('/multimedia/portada/tourss.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.waters-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.55)
    );
}

.waters-intro {
    position: relative;
    z-index: 2;
}

.waters-intro h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.waters-intro .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 2px;
}
.waters-hero {
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { background-size: 100%; }
    to { background-size: 110%; }
}
@media (max-width: 768px) {
    .waters-hero {
        height: 75vh;
    }
}


/* LAYOUT GENERAL */

.water-split {
    display: flex;
    min-height: 85vh;
    background: #111615;
    color: #ffffff;
}

/* TEXTO */

.water-content {
    flex: 1;
    padding: 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.water-content .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #6bbfa7;
}

.water-content h2 {
    font-size: 3rem;
    margin: 20px 0 25px;
    font-weight: 600;
}

.water-content p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 20px;
}

.water-details {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.water-details li {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* BOTÓN */

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #111615;
}

/* SLIDER */

.water-media {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTROLES */

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.slider-controls button {
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 8px 14px;
    margin-left: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: rgba(0,0,0,0.7);
}

.water-split.reverse {
    flex-direction: row-reverse;
}


.water-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.learning-box {
    background: rgba(255,255,255,0.04);
    padding: 1.5rem;
    border-left: 3px solid var(--accent);
    margin: 2rem 0;
    border-radius: 6px;
}

.water-list {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.water-list li {
    margin-bottom: 0.6rem;
    color: var(--text-muted);
}


@media (max-width: 1024px) {
    .water-split.reverse {
        flex-direction: column;
    }
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .water-split {
        flex-direction: column;
    }

    .water-content {
        padding: 60px 40px;
    }

    .water-media {
        height: 60vh;
    }
}


/*About----------------------------------------------------------------------------------------------------------------------------*/


.about-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    background-image: url('/multimedia/About/About2.JPEG');
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.about-hero p {
    letter-spacing: 2px;
    margin-top: 1rem;
    opacity: 0.9;
}

.about-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.about-intro p:first-child {
    font-size: 1.6rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.about-intro p:last-child {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}



.about-split {
    padding: 0;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-image {
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    background: #f5f6f5;
    padding: 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 20px;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #183a34;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.about-licensed {
    background: #111615;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.license-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.license-list li {
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.about-values {
    padding: 120px 0;
    background: #f3f1ec;
    text-align: center;
}

.about-values h2 {
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: #1b1b1b;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.value-item {
    padding: 40px 30px;
    border-radius: 8px;
    background: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    opacity: 0;
    transform: translateY(30px);
}

.value-item.show {
    opacity: 1;
    transform: translateY(0);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.value-item .icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}


.about-cta {
    position: relative;
    padding: 140px 0;
    text-align: center;
    color: #fff;

    background-image: url('/multimedia/About/About3.JPEG');
    background-size: cover;
    background-position: center;
}

.about-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.about-cta .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

/*Contact--------------------------------------------------------------------------------------------------------------------------*/
.contact-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    background-image: url('/multimedia/Contact.JPEG');
    background-size: cover;
    background-position: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.contact-hero p {
    margin-top: 15px;
    letter-spacing: 2px;
    opacity: 0.9;
}
.contact-section {
    padding: 120px 0;
    background: #f5f6f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-form-wrapper h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #183a34;
    box-shadow: 0 0 0 2px rgba(24,58,52,0.1);
}
.contact-info h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-note {
    margin-top: 30px;
    opacity: 0.7;
}
.hidden-field {
    display: none;
}

.hamburger {
    display: none; /* oculto en desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Animación X */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ===================================================== */
/* =================== MEDIA QUERIES =================== */
/* ===================================================== */


/* ----------- 1200px ----------- */
@media (max-width: 1200px) {

    .nav-container {
        padding: 12px 18px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .home-intro-grid {
        gap: 40px;
    }

    .split-text {
        padding: 70px 50px;
    }

    .water-content {
        padding: 70px 50px;
    }

}


/* ----------- 992px ----------- */
@media (max-width: 992px) {

    /* NAV */
    .nav-menu {
        gap: 18px;
    }

    /* HERO */
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* WHY */
    .why-grid {
        gap: 50px;
    }

    /* EXPERIENCES */
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        height: auto;
    }

    /* HOME INTRO */
    .home-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-intro-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* WATER SPLIT */
    .water-content h2 {
        font-size: 2.4rem;
    }

    /* ABOUT */
    .split-grid {
        grid-template-columns: 1fr;
    }

    .split-text {
        padding: 60px 40px;
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


/* ----------- 768px (TABLET) ----------- */
@media (max-width: 768px) {

    /* HEADER */
    .logo img {
        height: 40px;
    }

    .logo p {
        font-size: 14px;
    }

    /* HERO */
    .hero {
        height: 85vh;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn-hero {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* WHY */
    .why-us {
        padding: 70px 0;
    }

    .why-us h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    /* EXPERIENCES */
    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .experience {
        padding: 25px;
    }

    /* FISH */
    .fish-separator img {
        width: 70%;
        height: auto;
    }

    /* FOOTER */
    .footer-grid {
        gap: 40px;
        padding: 60px 20px 40px;
    }

    /* ABOUT */
    .about-intro {
        padding: 70px 20px;
    }

    .about-values {
        padding: 80px 20px;
    }

    .about-cta {
        padding: 100px 20px;
    }

    /* CONTACT */
    .contact-section {
        padding: 80px 20px;
    }
   /* Mostrar botón hamburguesa */
    .hamburger {
        display: flex;
    }

    /* Convertir menú en panel lateral */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #002b36;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;

        transition: right 0.4s ease;
        z-index: 1500;
    }

    /* Cuando está activo */
    .nav-menu.active {
        right: 0;
    }

    /* Ajustes header */
    .logo img {
        height: 40px;
    }

    .logo p {
        font-size: 14px;
    }



}


/* ----------- 480px (MOBILE) ----------- */
@media (max-width: 480px) {

    body {
        font-size: 15px;
    }

    /* HERO */
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    /* WHY */
    .why-list li,
    .licenses ul li {
        font-size: 14px;
    }

    .licenses {
        padding: 25px;
        height: auto;
    }

    /* WATER */
    .water-content {
        padding: 40px 20px;
    }

    .water-content h2 {
        font-size: 2rem;
    }

    /* ABOUT */
    .split-text {
        padding: 40px 20px;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    /* CONTACT */
    .contact-form input,
    .contact-form textarea {
        padding: 14px;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

}


