/* =======================================================
   ARATECH STYLESHEET
   PARTE 1
   VARIABLES + RESET + BODY + NAVBAR + HERO
   ======================================================= */

/* =======================================================
   VARIABLES GLOBALES
   ======================================================= */

:root {

    --bg-primary: #0A192F;
    --bg-secondary: #112240;
    --bg-card: rgba(17, 34, 64, 0.75);

    --accent-primary: #1E90FF;
    --accent-secondary: #75D0FA;

    --text-primary: #FFFFFF;
    --text-secondary: #CCD6F6;

    --border-color: rgba(117, 208, 250, 0.20);

    --shadow-blue:
        0 0 10px rgba(30, 144, 255, .35),
        0 0 25px rgba(30, 144, 255, .15);

    --shadow-hover:
        0 0 20px rgba(30, 144, 255, .60),
        0 0 45px rgba(30, 144, 255, .30);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;

    --transition-fast: .25s ease;
    --transition-normal: .4s ease;
    --transition-slow: .8s ease;

    --container-width: 1200px;

}

/* =======================================================
   RESET
   ======================================================= */

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

html {

    scroll-behavior: smooth;
    overflow-x: hidden;

}

body {
        background:
    radial-gradient(
        circle at center,
        #041A35 0%,
        #02101F 55%,
        #010B16 100%
    );
    color: var(--text-primary);

    font-family: 'Montserrat', sans-serif;

    overflow-x: hidden;
    position: relative;

    min-height: 100vh;

}

main{
    padding-bottom:80px;
}

/* =======================================================
   SCROLLBAR
   ======================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #08111f;
}

::-webkit-scrollbar-thumb {

    background: linear-gradient(
        180deg,
        var(--accent-primary),
        var(--accent-secondary)
    );

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {

    background: var(--accent-secondary);

}

/* =======================================================
   FONDO TECNOLÓGICO
   ======================================================= */

.background-grid {

    position: fixed;
    inset: 0;

    z-index: -10;

    background:

        linear-gradient(
            rgba(117,208,250,.008)
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.02) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    animation: gridMove 30s linear infinite;

    opacity:.65;

    filter:blur(.3px);

}

.background-grid::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(30,144,255,.25),
            transparent 70%
        );

    top: -200px;
    left: -200px;

    filter: blur(80px);

}

.background-grid::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(117,208,250,.15),
            transparent 70%
        );

    right: -200px;
    bottom: -200px;

    filter: blur(100px);

}

@keyframes gridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }

}

/* =======================================================
   CONTENEDOR GENERAL
   ======================================================= */

.container {

    width: min(90%, var(--container-width));
    margin: auto;

}

/* =======================================================
   NAVBAR
   ======================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 999;

    backdrop-filter: blur(18px);

    background:
        rgba(10,25,47,.80);

    border-bottom:
        1px solid rgba(255,255,255,.05);

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
        15px 40px;

    transition:
        var(--transition-normal);

}

.navbar.scrolled {

    box-shadow: var(--shadow-blue);

}

.nav-logo img {

    height: 55px;

    transition:
        var(--transition-normal);

}

.nav-logo img:hover {

    transform: scale(1.04);

}

.navbar nav ul{

    list-style:none !important;

    display:flex;

    gap:12px;

    margin:0;

    padding:0;

    position:relative;

    z-index:2;

}

.navbar nav a {

    text-decoration: none;

    color: var(--text-primary);

    font-size: .95rem;
    font-weight: 600;

    transition:
        var(--transition-fast);

    position: relative;

}

.navbar nav a::after{
    display:none !important;
}

.navbar nav a:hover {

    color:
        var(--accent-secondary);

}

.navbar nav a:hover::after {

    width: 100%;

}

.navbar nav li{

    list-style:none !important;

}

/* =======================================================
   HERO
   ======================================================= */

.hero-section {

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        10px 20px 60px;
}

.hero-content {

    width: 100%;
    max-width: 1000px;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

}

.hero-logo {

    width: min(650px, 90%);
    margin-bottom: 70px;

    animation:
        floatLogo 6s ease-in-out infinite;

}

@keyframes floatLogo {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

/* =======================================================
   REDES SOCIALES
   ======================================================= */

.social-buttons {

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 15px;

    margin-bottom: 80px;

}

.social-btn {

    text-decoration: none;

    color: white;

    padding:
        14px 26px;

    border-radius:
        var(--radius-md);

    background:
        rgba(255,255,255,.05);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:
        blur(12px);

    transition:
        var(--transition-normal);

}

.social-btn:hover {

    border-color:
        rgba(117,208,250,.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 0 18px rgba(117,208,250,.15);

}

/* =======================================================
   TARJETA FORMULARIO
   ======================================================= */

.quote-card {

    width: 100%;
    max-width: 800px;

    padding:
        40px;

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            rgba(117,208,250,.18),
            rgba(30,144,255,.08)
        );

    backdrop-filter:
        blur(35px);

    border:
        1px solid rgba(117,208,250,.22);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 20px 60px rgba(30,144,255,.10);
}

.quote-card h2 {

    font-family:
        'League Spartan',
        sans-serif;

    font-size:
        clamp(2rem, 5vw, 3.5rem);

    margin-bottom: 20px;

}

.quote-card p {

    color:
        var(--text-secondary);

    line-height: 1.8;

    margin-bottom: 30px;

}

/* =======================================================
   FORMULARIO
   ======================================================= */

#quoteForm {

    display: flex;
    flex-direction: column;

    gap: 18px;

}

#quoteForm input,
#quoteForm textarea {

    width: 100%;

    padding:
        16px 18px;

    border-radius:
        var(--radius-sm);

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(117,208,250,.10);

    color:
        white;

    font-family:
        inherit;

    transition:
        var(--transition-fast);

}

#quoteForm input:focus,
#quoteForm textarea:focus {

    outline: none;

    border-color:
        var(--accent-primary);

    box-shadow:
        0 0 15px rgba(30,144,255,.35);

}

#quoteForm button {

    border: none;

    cursor: pointer;

    font-weight: 700;

    padding:
        18px;

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            135deg,
            var(--accent-primary),
            var(--accent-secondary)
        );

    color: white;

    transition:
        var(--transition-normal);

}

#quoteForm button:hover {

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.20),
        rgba(255,255,255,.10)
    );

    border-color:
        rgba(117,208,250,.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 0 18px rgba(117,208,250,.15);

}

/* =======================================================
   BOTÓN WHATSAPP
   ======================================================= */

.whatsapp-btn {

    display: inline-block;

    margin-top: 25px;

    text-decoration: none;

    color: white;

    font-weight: 700;

    padding:
        18px 30px;

    border-radius:
        999px;

    background:
        linear-gradient(
            135deg,
            #0ea5e9,
            #1E90FF
        );

    box-shadow:
        var(--shadow-blue);

    transition:
        var(--transition-normal);

    animation:
        pulseWhats 2.5s infinite;

}

.whatsapp-btn:hover {

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 0 18px rgba(117,208,250,.15);

}

@keyframes pulseWhats {

    0% {
        box-shadow:
        0 0 0 0 rgba(30,144,255,.6);
    }

    70% {
        box-shadow:
        0 0 0 20px rgba(30,144,255,0);
    }

    100% {
        box-shadow:
        0 0 0 0 rgba(30,144,255,0);
    }

}

/* =======================================================
   ARATECH STYLESHEET
   PARTE 2
   NOSOTROS + UBICACIÓN + GARANTÍAS
   PRIVACIDAD + CLIENTES + FOOTER
   ======================================================= */

/* =======================================================
   SECCIONES GENERALES
   ======================================================= */

.section {

    padding:
        120px 0;

    position: relative;

}

.section h1 {

    font-family:
        'League Spartan',
        sans-serif;

    font-size:
        clamp(2.5rem, 6vw, 4.5rem);

    text-align: center;

    margin-bottom: 35px;

    color:
        var(--text-primary);

}

.section h2 {

    font-family:
        'League Spartan',
        sans-serif;

    font-size:
        clamp(1.4rem, 3vw, 2rem);

    margin-bottom: 20px;

    color:
        var(--accent-secondary);

}

.section h3 {

    font-size:
        1.3rem;

    margin-top: 20px;
    margin-bottom: 15px;

    color:
        var(--accent-primary);

}

.section p {

    color:
        var(--text-secondary);

    line-height:
        1.9;

    margin-bottom:
        18px;

}

/* =======================================================
   NOSOTROS
   ======================================================= */

.services-grid {

    margin-top: 40px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 25px;

}

.service-card {

    padding:
        30px;

    text-align: center;

    border-radius:
        var(--radius-md);

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:
        blur(12px);

    transition:
        var(--transition-normal);

    color:
        var(--text-primary);

}

.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--accent-primary);

    box-shadow:
        var(--shadow-hover);

}

.section-logo {

    display: block;

    width:
        min(450px, 90%);

    margin:
        60px auto 0 auto;

}

/* =========================================
   UBICACION VISIONOS
========================================= */


.section-description {

    text-align:center;

    font-size:1.15rem;

    color:
        rgba(255,255,255,.78);

    max-width:700px;

    margin:
        0 auto 40px;

    line-height:1.8;

}

.location-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(380px,1fr));

    gap:35px;

    margin-top:50px;

}

.glass-info-card{

    background:
        linear-gradient(
            135deg,
            rgba(117,208,250,.18),
            rgba(30,144,255,.08)
        );

    backdrop-filter:blur(24px);

    border:
        1px solid rgba(117,208,250,.18);

    border-radius:28px;

    padding:40px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 0 35px rgba(117,208,250,.08);

    position:relative;
    overflow:hidden;
    
}

.glass-info-card::before{

    content:"";

    position:absolute;

    top:-100%;

    left:-50%;

    width:200%;

    height:200%;

    background:
        radial-gradient(
            circle,
            rgba(117,208,250,.08),
            transparent 60%
        );

    pointer-events:none;

}

.glass-info-card h2{

    color:white;

    margin:15px 0 25px;

    font-size:2rem;

}

.info-icon{

    font-size:2rem;

    opacity:.9;

}

.location-address{

    font-size:1.2rem;

    line-height:1.9;

    color:white;

}

.location-note{

    margin-top:15px;

    color:rgba(255,255,255,.65);

}

.glass-action-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:30px;

    padding:15px 28px;

    border-radius:999px;

    text-decoration:none;

    color:white;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.08)
        );

    border:
        1px solid rgba(255,255,255,.18);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.25);

    transition:
        all .25s ease;

}

.glass-action-btn:hover{

    border-color:
        rgba(117,208,250,.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 0 18px rgba(117,208,250,.15);

}

.schedule-block{

    margin-bottom:25px;

}

.schedule-block strong{

    display:block;

    color:#75D0FA;

    margin-bottom:10px;

}

.schedule-block span{

    display:block;

    margin:5px 0;

}

status-open{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 20px;

    margin-top:20px;

    border-radius:999px;

    background:
        rgba(117,208,250,.08);

    border:
        1px solid rgba(117,208,250,.20);

    font-weight:700;

}

    /*
    =======================================================
    UBICACIÓN
    ======================================================= 

    .section-description {

        text-align: center;

        font-size:
            1.15rem;

        margin-bottom:
            20px;

    }

    .highlight-text {

        text-align: center;

        color:
            var(--accent-secondary);

        font-weight:
            700;

        margin-bottom:
            40px;

    }

    .location-image {

        width: 100%;

        border-radius:
            var(--radius-lg);

        border:
            1px solid rgba(255,255,255,.08);

        transition:
            var(--transition-normal);

        box-shadow:
            var(--shadow-blue);

    }

    .location-image:hover {

        transform:
            translateY(-8px)
            scale(1.01);

        box-shadow:
            var(--shadow-hover);

    }

    .schedule-image {

        width: 100%;

        margin-top:
            40px;

        border-radius:
            var(--radius-lg);

        box-shadow:
            var(--shadow-blue);

    }*/


/* =======================================================
   CONTENIDO LEGAL
   ======================================================= */

.legal-container {

    max-width:
        1000px;

}

.legal-content {

    padding:40px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(117,208,250,.18),
        rgba(30,144,255,.08)
    );

    border:
        1px solid rgba(117,208,250,.22);

    backdrop-filter:
        blur(35px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 20px 60px rgba(30,144,255,.10);

}

.legal-content h2 {

    margin-top:
        35px;

    margin-bottom:
        15px;

    color:
        var(--accent-primary);

}

.legal-content ul {

    padding-left:
        25px;

    margin:
        20px 0;

}

.legal-content li {

    margin-bottom:
        15px;

    color:
        var(--text-secondary);

    line-height:
        1.8;

}

.last-update {

    margin-top:
        40px;

    text-align:
        center;

    font-weight:
        700;

    color:
        var(--accent-secondary);

}

/* =======================================================
   PRIVACIDAD
   ======================================================= */

.privacy-button {

    display:
        inline-block;

    margin-top:
        30px;

    padding:
        16px 28px;

    border-radius:
        999px;

    text-decoration:
        none;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--accent-primary),
            var(--accent-secondary)
        );

    transition:
        var(--transition-normal);

}

.privacy-button:hover {

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 0 18px rgba(117,208,250,.15);

}

.secure-text {

    margin-top:35px;

    text-align:center;

    font-size:1.2rem;

    font-weight:700;

    color:white;

    text-shadow:
        0 0 15px rgba(117,208,250,.25);

}


/* =======================================================
   CLIENTES
   ======================================================= */

.clients-section {

    min-height:
        60vh;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}

.coming-soon-container {

    text-align:
        center;

}

.coming-soon {



    font-family:
        'League Spartan',
        sans-serif;

    font-size:
        clamp(4rem, 10vw, 8rem);

    letter-spacing:
        8px;

    color:
        white;

    text-transform:
        uppercase;

    animation:
        breathe 4s ease-in-out infinite;

}

@keyframes breathe {

    0% {

        transform:
            scale(1);

        opacity:
            .75;

    }

    50% {

        transform:
            scale(1.05);

        opacity:
            1;

        text-shadow:
            0 0 30px rgba(30,144,255,.8);

    }

    100% {

        transform:
            scale(1);

        opacity:
            .75;

    }

}

/* =======================================================
   FOOTER
   ======================================================= */

.footer {

    padding:
        15px 20px;

    margin-top:
        80px;

    background:
        rgba(0,0,0,.25);

    border-top:
        1px solid rgba(15,25,45,.65);

    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:500;

    backdrop-filter:
        blur(30px);

        border-top:
        1px solid rgba(255,255,255,.12);

}

.footer-content {

    width:
        min(1200px, 95%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap:
        40px;

    align-items:
        center;

}

.footer-brand {

    text-align:
        center;

}

.footer-brand img {

    width:
        min(180px, 100%);

    margin-bottom:
        20px;

}

.footer-brand p {

    color:
        var(--text-secondary);

    line-height:
        1.8;

}

.footer-social {

    display:
        flex;

    flex-direction:
        column;

    gap:
        15px;

    text-align:
        center;

}

.footer-social a {

    color:
        white;

    text-decoration:
        none;

    transition:
        var(--transition-fast);

}

.footer-social a:hover {

    color:
        var(--accent-secondary);

}

.footer-contact {

    display:
        flex;

    justify-content:
        center;

}

.footer-whatsapp{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    border-radius:999px;

    text-decoration:none;

    color:white;

    font-weight:600;

    letter-spacing:.4px;

    background:
    linear-gradient(
        180deg,
        rgba(117,208,250,.22),
        rgba(117,208,250,.10)
    );

    border:
        1px solid rgba(255,255,255,.22);

    backdrop-filter:
        blur(30px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.25),
        0 10px 25px rgba(117,208,250,.10);

    transition:
        background .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.footer-whatsapp:hover{

    transform:
        translateY(-2px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 10px 25px rgba(117,208,250,.15);

}

.footer-logo-inline{

    height:2px;

    width:auto;

}

.footer-content span,
.footer-content a{

    color:rgba(255,255,255,.85);

    font-size:.9rem;

    text-decoration:none;

}

.footer-content{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

/* =======================================================
   ARATECH STYLESHEET
   PARTE 3
   ARABOT + CURSOR + LOADING + ANIMACIONES
   RESPONSIVE + UTILIDADES
   ======================================================= */

/* =======================================================
   ARABOT
   ======================================================= */

#arabot-container {

    position: fixed;

    right: -20px;
    bottom: 100px;

    z-index: 9998;

    display: flex;
    align-items: center;
    gap: 15px;

    animation:
        arabotFloat 5s ease-in-out infinite;

}

#arabot-avatar {

    width: 130px;

    cursor: pointer;

    transition:
        .4s ease;

    filter:
        drop-shadow(0 0 20px rgba(30,144,255,.5));

}

#arabot-avatar:hover {

    transform:
        scale(1.08);

}

#arabot-message {

    position:absolute;

    right:220px;

    width:auto;

    max-width:none;

    background:none;

    border:none;

    box-shadow:none;

    backdrop-filter:none;

    text-align:left;

    white-space:nowrap;

    color:rgba(255,255,255,.75);

    font-size:1.15rem;

    font-weight:700;

    letter-spacing:.4px;

    text-shadow:
        0 0 8px rgba(117,208,250,.20);

}

#arabot-message::after{

    content:"";

    position:absolute;

    top:50%;

    left:100%;

    width:90px;

    height:2px;

    transform:
        translateY(-50%);

    background:
        linear-gradient(
            90deg,
            rgba(117,208,250,.45),
            rgba(117,208,250,.15),
            transparent
        );

    border-radius:999px;

    animation:
        neuralPulse 2s ease-in-out infinite;

}

@keyframes arabotFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/* =======================================================
   FLOATING WHATSAPP
   ======================================================= */

.floating-whatsapp {

    position: fixed;

    bottom:40px;
    left:30px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 1.8rem;

    color: white;

    background:
        linear-gradient(
            135deg,
            #00c853,
            #00e676
        );

    box-shadow:
        0 0 25px rgba(0,200,83,.5);

    z-index: 9999;

    animation:
        whatsappFloat 3s ease-in-out infinite;

}

@keyframes whatsappFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}

/* =======================================================
   LOADING SCREEN
   ======================================================= */

#loading-screen {

    position: fixed;

    inset: 0;

    background:
        #081220;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 30px;

    z-index: 999999;

    transition:
        opacity .8s ease,
        visibility .8s ease;

}

#loading-screen.hidden {

    opacity: 0;
    visibility: hidden;

}

#loading-screen img {

    width: min(350px, 80vw);

}


.loader-dots{

    display:flex;

    gap:12px;

    justify-content:center;

    margin-top:25px;

}

.loader-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#75D0FA;

    box-shadow:
        0 0 12px rgba(117,208,250,.6);

    animation:
        dotPulse 1.2s infinite;

}


.loader-dots span:nth-child(2){

    animation-delay:.2s;

}

.loader-dots span:nth-child(3){

    animation-delay:.4s;

}


@keyframes dotPulse{

    0%,100%{

        opacity:.3;
        transform:scale(.8);

    }

    50%{

        opacity:1;
        transform:scale(1.25);

    }

}



/* =======================================================
   SCROLL REVEAL
   ======================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        1s ease;

}

.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}

/* =======================================================
   ANIMACIONES GENERALES
   ======================================================= */

.fade-in {

    animation:
        fadeIn 1.2s ease forwards;

}

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

.slide-up {

    animation:
        slideUp 1s ease forwards;

}

@keyframes slideUp {

    from {

        opacity: 0;

        transform:
            translateY(40px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}

/* =======================================================
   EFECTOS DE TARJETAS
   ======================================================= */

.service-card,
.quote-card,
.legal-content {

    position: relative;

    overflow: hidden;

}

.service-card::before,
.quote-card::before,
.legal-content::before {

    content: "";

    position: absolute;

    top: 0;
    left: -150%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.05),
            transparent
        );

    transition:
        1.2s ease;

}

.service-card:hover::before,
.quote-card:hover::before,
.legal-content:hover::before {

    left: 150%;

}

/* =======================================================
   TITULOS PREMIUM
   ======================================================= */

.section h1 {

    text-shadow:
        0 0 20px rgba(30,144,255,.25);

}

/* =======================================================
   RESPONSIVE TABLET
   ======================================================= */

@media (max-width: 1024px) {

    .navbar {

        padding:
            15px 20px;

    }

    .navbar nav ul {

        gap: 15px;

    }

    .quote-card {

        padding: 30px;

    }

    #arabot-avatar {

        width: 100px;

    }

}

/* =======================================================
   RESPONSIVE MOBILE
   ======================================================= */

@media (max-width: 768px) {

    body {

        cursor: auto;

    }

    .navbar {

        flex-direction: column;

        gap: 15px;

    }

    .navbar nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

    .hero-section {

        padding-top: 180px;

    }

    .quote-card {

        padding: 25px;

    }

    .social-buttons {

        flex-direction: column;

    }

    #arabot-container {

        bottom:40px;
        
        right:30px;

    }

    #arabot-avatar {

        width: 90px;

    }

    #arabot-message {

        display: none;

    }

    .footer-content {

        text-align: center;

    }

}

/* =======================================================
   RESPONSIVE PEQUEÑO
   ======================================================= */

@media (max-width: 480px) {

    .section {

        padding:
            80px 0;

    }

    .quote-card {

        padding:
            20px;

    }

    .floating-whatsapp {

        width: 55px;
        height: 55px;

        font-size: 1.4rem;

    }

}

/* =======================================================
   UTILIDADES
   ======================================================= */

.text-center {

    text-align: center;

}

.hidden {

    display: none !important;

}

.glow {

    box-shadow:
        var(--shadow-hover);

}

.blur {

    backdrop-filter:
        blur(20px);

}

/* =======================================================
   FIN STYLES.CSS
   ======================================================= */


/* ===== LIQUID GLASS MERGED ===== */


/* ======================================================
   ARATECH LIQUID GLASS UPGRADE
   Agregar AL FINAL de styles.css
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root{
  --glass-bg: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.18);
  --glass-highlight: rgba(255,255,255,.25);
}

body{
  font-family:'Inter',sans-serif;
}

.section h1,
.quote-card h2{
  font-family:'Space Grotesk',sans-serif;
}

.navbar,
.quote-card,
.service-card,
.legal-content,
#arabot-message{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.12),
    rgba(255,255,255,.04)
  );
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border:1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    0 12px 40px rgba(0,0,0,.25),
    0 0 30px rgba(30,144,255,.12);
}

.navbar::before,
.quote-card::after,
.service-card::after,
.legal-content::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.18),
    transparent 35%
  );
}

.social-btn,
.whatsapp-btn,
.footer-whatsapp,
.privacy-button,
#quoteForm button{
  backdrop-filter: blur(24px);
  background: linear-gradient(
      180deg,
      rgba(255,255,255,.18),
      rgba(255,255,255,.08)
  );
  border:1px solid rgba(255,255,255,.20);
  box-shadow:
      inset 0 1px 0 rgba(255,255,255,.25),
      0 10px 30px rgba(30,144,255,.20);
}

.social-btn:hover,
.whatsapp-btn:hover,
.footer-whatsapp:hover,
.privacy-button:hover,
#quoteForm button:hover{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.20),
        rgba(255,255,255,.10)
    );

    border-color:
        rgba(117,208,250,.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 0 18px rgba(117,208,250,.15);

}

#quoteForm input,
#quoteForm textarea{
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}

.background-grid::before{
  opacity:.8;
}

.background-grid::after{
  opacity:.9;
}

.hero-logo{
  filter:
    drop-shadow(0 0 20px rgba(117,208,250,.25))
    drop-shadow(0 0 60px rgba(30,144,255,.15));
}


/* ======================================================
   ARABOT VISIONOS PHASE 2
   ====================================================== */

#arabot-avatar{
    width:90px !important;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    opacity:0;
}

#arabot-container{
    right:30px;
    bottom:110px;
    gap:18px;
}

#arabot-container::before{
    content:"";
    width:100px;
    height:100px;
    border-radius:50%;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    background:
    radial-gradient(
        circle at center,

        rgba(255,255,255,1) 0%,

        rgba(160,230,255,.95) 10%,

        rgba(117,208,250,.85) 25%,

        rgba(30,144,255,.65) 45%,

        rgba(30,144,255,.25) 70%,

        transparent 100%
    );
    box-shadow:
        0 0 30px rgba(117,208,250,.7),
        0 0 60px rgba(30,144,255,.5),
        0 0 120px rgba(30,144,255,.35);
    animation:
    arabotOrbFloat 12s ease-in-out infinite,
    arabotPulse 8s ease-in-out infinite;
}

#arabot-container::after{

    content:"";

    position:absolute;

    right:-20px;

    top:50%;

    width:150px;
    height:150px;

    border-radius:50%;

    transform:translateY(-50%);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
        0 0 40px rgba(117,208,250,.20);

    animation:
        arabotRing 4s linear infinite;

}

#arabot-message{
    background:rgba(255,255,255,.08)!important;
    backdrop-filter:blur(30px)!important;
    border:1px solid rgba(255,255,255,.18)!important;
    border-radius:24px!important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.25),
        0 20px 50px rgba(30,144,255,.18)!important;
}

#arabot-container:hover::before{

    transform:
        translateY(-50%)
        scale(1.10);

    filter:
        brightness(1.12);

}
#arabot-container:hover::after{

    transform:
        translateY(-50%)
        scale(1.08);

}

@keyframes arabotOrbFloat{

    0%{
        transform:
            translateY(-50%)
            translateX(0px);
    }

    25%{
        transform:
            translateY(-52%)
            translateX(2px);
    }

    50%{
        transform:
            translateY(-55%)
            translateX(0px);
    }

    75%{
        transform:
            translateY(-52%)
            translateX(-2px);
    }

    100%{
        transform:
            translateY(-50%)
            translateX(0px);
    }

}

@keyframes arabotPulse{

    0%,100%{

        box-shadow:
        0 0 35px rgba(117,208,250,.65),
        0 0 70px rgba(30,144,255,.45),
        0 0 120px rgba(30,144,255,.20);

    }

    50%{

        box-shadow:
        0 0 60px rgba(180,235,255,.95),
        0 0 120px rgba(117,208,250,.75),
        0 0 180px rgba(30,144,255,.45),
        0 0 260px rgba(30,144,255,.20);

    }

}

@keyframes arabotRing{

    0%{
        transform:
            translateY(-50%)
            scale(.85);

        opacity:.15;
    }

    50%{
        transform:
            translateY(-50%)
            scale(1.15);

        opacity:.35;
    }

    100%{
        transform:
            translateY(-50%)
            scale(1.45);

        opacity:0;
    }

}

/* ======================================================
   NAVBAR V2.5 PREMIUM VISIONOS
   ====================================================== */

.navbar{
    width:min(1400px,95%) !important;
    margin:18px auto !important;
    top:10px !important;
    left:0;
    right:0;
    padding:18px 32px !important;
    border-radius:28px !important;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.14),
        rgba(255,255,255,.05)
      ) !important;
    border:1px solid rgba(255,255,255,.18) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.22),
      0 20px 60px rgba(0,0,0,.25),
      0 0 40px rgba(30,144,255,.12) !important;
}

.navbar::after{
    content:"";
    position:absolute;
    top:0;
    left:10%;
    width:80%;
    height:1px;
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(117,208,250,.9),
        transparent
      );
}

.nav-logo img{
    height:72px !important;
    filter:
      drop-shadow(0 0 10px rgba(117,208,250,.25))
      drop-shadow(0 0 30px rgba(30,144,255,.18));
}

.navbar nav ul{
    gap:12px !important;
}

.navbar nav a{
    padding:12px 18px !important;
    border-radius:16px;
    backdrop-filter:blur(20px);
}

.navbar nav a:hover{
    background:rgba(255,255,255,.08);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.15),
      0 0 25px rgba(30,144,255,.18);
}

.navbar nav a.active-link{
    color:#0A192F !important;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.25),
      0 6px 18px rgba(0,0,0,.15);
}

.navbar.scrolled{
    transform:scale(.97);
    backdrop-filter:blur(40px);
}

@media(max-width:768px){

    .nav-logo img{
        height:58px !important;
    }

    .navbar{
        width:96% !important;
    }

}

.navbar nav a:hover{

    color:#14213D !important;
}



/* ======================================================
   ARATECH  3.0 (FASE 2.6)
   ====================================================== */

/* NAVBAR APPLE MUSIC */

.navbar{
    padding:12px 28px !important;
    border-radius:24px !important;
    backdrop-filter:blur(40px) saturate(180%) !important;
}

.nav-logo img{
    height:62px !important;
}

.navbar nav a{
    position:relative;
    overflow:hidden;
    transition:.35s ease;
}

.navbar nav a::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    opacity:0;
    transform:scale(.85);
    transition:.35s ease;
}

.navbar nav a:hover::before,
.navbar nav a.active-link::before{
    opacity:1;
    transform:scale(1);
}

.navbar nav a span{
    position:relative;
    z-index:2;
}

/* MÁS ESPACIO HERO */

.hero-section{
    padding-top:180px !important;
}

/* LOGO ELEGANTE */

.hero-logo{
    animation:heroBreath 8s ease-in-out infinite !important;
}

@keyframes heroBreath{
    0%,100%{
        transform:scale(1);
        filter:drop-shadow(0 0 20px rgba(117,208,250,.20));
    }
    50%{
        transform:scale(1.02);
        filter:drop-shadow(0 0 35px rgba(117,208,250,.35));
    }
}

/* LEGAL TITLES */

.legal-content h2{
    color:#ffffff !important;
}

/* WHATSAPP PREMIUM */

.floating-whatsapp{

    width:82px;
    height:82px;

    border-radius:22px !important;

    background:
    linear-gradient(
        180deg,
        rgba(117,208,250,.32),
        rgba(117,208,250,.18)
    ) !important;

    backdrop-filter:blur(30px);

    border:
        1px solid rgba(255,255,255,.25);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.35),
        0 10px 30px rgba(117,208,250,.20),
        0 0 80px rgba(117,208,250,.20);

    color:white;

    font-size:1.5rem;

    transition:
        all .25s ease;

}

.floating-whatsapp:hover{

    transform:
        translateY(-4px)
        scale(1.05);

}

/* ======================================================
   ARATECH VISIONOS 4.0 CSS
   ====================================================== */

.navbar{
  width:min(1450px,94%) !important;
  padding:10px 24px !important;
  border-radius:30px !important;
  backdrop-filter:blur(45px) saturate(200%) !important;
  background:linear-gradient(
      180deg,
      rgba(255,255,255,.16),
      rgba(255,255,255,.05)
  ) !important;
}

.navbar.vision-scrolled{
  transform:scale(.97);
}

.navbar nav a{
  border-radius:16px;
  transition:.35s ease;
}

.navbar nav a:hover,
.navbar nav a.active-link{
  background:rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    0 0 24px rgba(117,208,250,.15);
}

/* HERO */

.hero-section{
  padding-top:210px !important;
}

.hero-logo{
  animation:heroBreath 10s ease-in-out infinite !important;
}

@keyframes heroBreath{
  0%,100%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.018);
  }
}

.social-btn,
.whatsapp-btn,
.footer-whatsapp,
.privacy-button,
#quoteForm button{
  transition:
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .35s ease !important;
}

.service-card,
.quote-card,
.legal-content{
  position:relative;
  overflow:hidden;
}

/* ARABOT */

#arabot-container{
  transition:filter .35s ease;
  transition:
    all .8s cubic-bezier(.22,.61,.36,1);
}

#arabot-container.siri-pulse::before{
  animation:siriWave 1.5s ease-out;
}

@keyframes siriWave{

  0%{
    box-shadow:
      0 0 0 0 rgba(117,208,250,.8);
  }

  100%{
    box-shadow:
      0 0 0 80px rgba(117,208,250,0);
  }

}

/* WHATSAPP */

.floating-whatsapp{
  width:74px !important;
  height:74px !important;
  border-radius:24px !important;
  backdrop-filter:blur(25px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 15px 35px rgba(37,211,102,.35);
}

/* LEGAL */

.legal-content h2{
  color:#fff !important;
}

/* PREMIUM GLASS */

.quote-card,
.service-card,
.legal-content{

    background:
    linear-gradient(
        135deg,
        rgba(117,208,250,.22),
        rgba(30,144,255,.12)
    ) !important;

    border:
        1px solid rgba(117,208,250,.30) !important;

    backdrop-filter:
        blur(35px) saturate(180%);

}

.service-card{

    background:
        linear-gradient(
            180deg,
            rgba(117,208,250,.15),
            rgba(117,208,250,.05)
        ) !important;

}

.navbar nav{

    position:relative;

    display:flex;

    align-items:center;

}

/* =======================================================
   EXPERIENCIAS DE CLIENTES
   ======================================================= */

.clients-coming-soon{

    width:100%;

    max-width:1000px;

    margin:60px auto 40px auto;

    padding:40px;

    text-align:center;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(117,208,250,.18),
        rgba(30,144,255,.08)
    );

    border:
        1px solid rgba(117,208,250,.22);

    backdrop-filter:
        blur(35px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 20px 60px rgba(30,144,255,.10);

}

.clients-coming-soon h2{

    margin-bottom:25px;

    font-size:2.4rem;

    font-weight:800;

    letter-spacing:2px;

    color:white;

    text-shadow:
        0 0 30px rgba(117,208,250,.35);

}

.clients-coming-soon p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    font-size:1.1rem;

    color:
        rgba(255,255,255,.82);

}

.clients-divider{

    width:120px;

    height:3px;

    margin:0 auto 25px auto;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(117,208,250,.9),
            transparent
        );

    box-shadow:
        0 0 20px rgba(117,208,250,.45);

}

input::placeholder,
textarea::placeholder{

    color:
        rgba(255,255,255,.55);

    opacity:1;

}

/* =========================================
   QUICK FEATURES
========================================= */

.quick-features{

    max-width:1100px;

    margin:60px auto 80px;

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:25px;

    justify-content:center;

}

.feature-card{

    min-height:240px;

    padding:35px 25px;

    border-radius:28px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    backdrop-filter:blur(30px);

    background:
        linear-gradient(
            135deg,
            rgba(117,208,250,.18),
            rgba(30,144,255,.08)
        );

    border:
        1px solid rgba(117,208,250,.15);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 0 25px rgba(117,208,250,.06);

}

.feature-orb{

    width:58px;
    height:58px;

    border-radius:50%;

    margin-bottom:22px;

    background:
        radial-gradient(
            circle,
            rgba(180,235,255,.95),
            rgba(117,208,250,.75),
            rgba(117,208,250,.15)
        );

    box-shadow:
        0 0 25px rgba(117,208,250,.35),
        0 0 50px rgba(117,208,250,.12);

}

.feature-number{

    font-size:2.4rem;

    font-weight:800;

    color:white;

    text-shadow:
        0 0 15px rgba(117,208,250,.25);

    margin-bottom:15px;

}

.feature-card h3{

    color:
        rgba(255,255,255,.88);

    font-size:1.05rem;

    line-height:1.5;

    font-weight:600;

    max-width:180px;

}
.feature-card p{

    color:
        rgba(255,255,255,.75);

    line-height:1.7;

}

/* =========================================
   AJUSTE DE ESPACIADO
========================================= */

#legal{

    

    padding-bottom:50px;

}

#clients{

    padding-top:50px;

}

/* =======================================================
   MOBILE FIXES FINAL
   ======================================================= */

@media (max-width:768px){

    .hero-section{

        padding-top:140px !important;

        min-height:auto;

    }

    .hero-logo{

        width:90% !important;

        margin-bottom:40px !important;

    }

    .social-buttons{

        flex-direction:column;

        gap:15px;

        margin-bottom:50px;

    }

    .quote-card{

        width:95%;

        padding:25px !important;

    }

    .navbar{

        width:95% !important;

        padding:15px !important;

    }

    .navbar nav ul{

        gap:8px !important;

    }

    .footer{

        position:relative !important;

    }

    .footer-content{

        display:flex !important;

        flex-direction:column !important;

        gap:15px !important;

        text-align:center;

    }

    #arabot-container{

        right:15px !important;

        bottom:25px !important;

    }

    #arabot-container::before{

        width:65px !important;

        height:65px !important;

    }

    #arabot-container::after{

        width:90px !important;

        height:90px !important;

    }

    .floating-whatsapp{

        width:60px !important;

        height:60px !important;

        left:15px !important;

        bottom:20px !important;

    }

}

/* =======================================================
   PERFORMANCE + RESPONSIVE HARDENING
   ======================================================= */

html {
    scroll-padding-top: 130px;
}

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

section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
}

.hero-section {
    content-visibility: visible;
}

.navbar,
.quote-card,
.service-card,
.legal-content,
.feature-card,
.clients-coming-soon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

#quoteForm input,
#quoteForm textarea,
#quoteForm button,
.social-btn,
.whatsapp-btn,
.footer-whatsapp,
.privacy-button {
    min-height: 48px;
}

#quoteForm textarea {
    resize: vertical;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 768px) {

    html {
        scroll-padding-top: 150px;
    }

    body {
        background:
            radial-gradient(circle at 50% 0%, rgba(30,144,255,.20), transparent 36%),
            #010B16 !important;
    }

    .navbar {
        top: max(8px, env(safe-area-inset-top)) !important;
        width: min(94%, 430px) !important;
        margin: 0 auto !important;
        padding: 8px 12px !important;
        gap: 6px !important;
        border-radius: 20px !important;
        backdrop-filter: blur(14px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.16),
            0 10px 28px rgba(0,0,0,.25) !important;
    }

    .navbar.scrolled,
    .navbar.vision-scrolled {
        transform: none !important;
    }

    .nav-logo img {
        height: 36px !important;
        display: block;
    }

    .navbar nav {
        width: 100%;
    }

    .navbar nav ul {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px !important;
    }

    .navbar nav li {
        min-width: 0;
    }

    .navbar nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 7px 6px !important;
        border-radius: 12px !important;
        font-size: clamp(.76rem, 3.2vw, .88rem) !important;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hero-section {
        padding-top: 146px !important;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content {
        width: min(100%, 430px);
        margin: 0 auto;
        padding: 0 14px;
    }

    .hero-logo {
        width: min(92%, 360px) !important;
        margin: 0 auto 28px !important;
        animation: none !important;
        filter: drop-shadow(0 0 18px rgba(117,208,250,.22)) !important;
    }

    .social-buttons {
        width: 100%;
        gap: 12px !important;
        margin-bottom: 38px !important;
    }

    .social-btn,
    .whatsapp-btn {
        width: min(100%, 230px);
        margin-inline: auto;
        padding: 12px 18px !important;
        font-size: 1rem !important;
        border-radius: 18px !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    .quote-card {
        width: 100% !important;
        max-width: 390px;
        padding: 22px 16px !important;
        border-radius: 22px !important;
        backdrop-filter: blur(12px) saturate(130%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.14),
            0 12px 30px rgba(0,0,0,.22) !important;
    }

    .quote-card h2 {
        font-size: clamp(2rem, 10vw, 2.8rem) !important;
        line-height: 1.08 !important;
        letter-spacing: 0 !important;
        text-wrap: balance;
    }

    .quote-card p {
        font-size: clamp(.95rem, 4.4vw, 1.12rem) !important;
        line-height: 1.65 !important;
        overflow-wrap: anywhere;
    }

    #quoteForm {
        gap: 12px !important;
    }

    #quoteForm input,
    #quoteForm textarea {
        font-size: 16px !important;
        padding: 14px 16px !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    #arabot-container,
    #arabot-container::after,
    #arabot-message,
    #arabot-avatar {
        display: none !important;
    }

    .floating-whatsapp {
        display: none !important;
    }

    .section,
    .quick-features,
    .clients-coming-soon,
    .legal-content,
    .feature-card,
    .service-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

@media (max-width: 380px) {
    .navbar nav a {
        font-size: .72rem !important;
        padding-inline: 4px !important;
    }

    .hero-section {
        padding-top: 138px !important;
    }

    .quote-card {
        padding-inline: 14px !important;
    }
}

/* =======================================================
   NAV LOGO PROPORTION FIX
   ======================================================= */

.nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-width: 0;
}

.nav-logo img {
    display: block;
    width: auto !important;
    height: 56px !important;
    max-width: min(320px, 34vw) !important;
    object-fit: contain;
    aspect-ratio: auto;
}

@media (max-width: 768px) {
    .nav-logo {
        width: 100%;
        justify-content: center;
    }

    .nav-logo img {
        width: min(300px, 82vw) !important;
        height: auto !important;
        max-width: 100% !important;
    }
}

/* =======================================================
   FLUIDITY PASS
   ======================================================= */

html {
    scroll-behavior: auto !important;
}

.reveal {
    transform: translate3d(0, 18px, 0) !important;
    transition:
        opacity .28s ease,
        transform .28s ease !important;
}

.reveal.active {
    transform: translate3d(0, 0, 0) !important;
}

.navbar {
    transform: none !important;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease !important;
    backdrop-filter: blur(10px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(130%) !important;
}

.navbar.scrolled,
.navbar.vision-scrolled {
    transform: none !important;
}

.quote-card,
.service-card,
.legal-content,
.feature-card,
.clients-coming-soon,
.social-btn,
.whatsapp-btn,
.footer-whatsapp,
.privacy-button,
#quoteForm button,
#quoteForm input,
#quoteForm textarea {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-logo,
#arabot-container::before,
#arabot-container::after,
.feature-orb,
.loader-dots span {
    animation: none !important;
}

#arabot-container,
#arabot-container::before,
#arabot-container::after {
    transition: none !important;
}

.social-btn,
.whatsapp-btn,
.footer-whatsapp,
.privacy-button,
#quoteForm button,
.navbar nav a {
    transition:
        background-color .16s ease,
        border-color .16s ease,
        color .16s ease,
        box-shadow .16s ease !important;
}

.social-btn:hover,
.whatsapp-btn:hover,
.footer-whatsapp:hover,
.privacy-button:hover,
#quoteForm button:hover,
.floating-whatsapp:hover,
.nav-logo img:hover {
    transform: none !important;
}

.social-btn:active,
.whatsapp-btn:active,
.footer-whatsapp:active,
.privacy-button:active,
#quoteForm button:active,
.navbar nav a:active {
    transform: none !important;
    opacity: .88;
}

.service-card::before,
.quote-card::before,
.legal-content::before,
.navbar::before,
.quote-card::after,
.service-card::after,
.legal-content::after {
    display: none !important;
}

@media (max-width: 768px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* =======================================================
   MOBILE NAV CLEANUP
   ======================================================= */

@media (max-width: 768px) {
    .navbar {
        padding: 10px 12px !important;
        gap: 0 !important;
        border-radius: 18px !important;
    }

    .nav-logo {
        display: none !important;
    }

    .navbar nav {
        width: 100%;
    }

    .navbar nav ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px !important;
    }

    .navbar nav a {
        min-height: 38px !important;
        padding: 8px 4px !important;
        font-size: clamp(.78rem, 3.35vw, .94rem) !important;
    }

    .hero-section {
        padding-top: 124px !important;
    }

    .hero-logo {
        margin-top: 0 !important;
        margin-bottom: 34px !important;
    }
}

@media (max-width: 380px) {
    .hero-section {
        padding-top: 116px !important;
    }
}

/* =======================================================
   CONTROL PANEL NAVBAR
   ======================================================= */

:root {
    --nav-clearance-desktop: 132px;
    --nav-clearance-mobile: 128px;
}

html {
    scroll-padding-top: var(--nav-clearance-desktop) !important;
}

section[id] {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}

.navbar {
    top: 14px !important;
    width: min(1180px, calc(100% - 40px)) !important;
    margin: 0 auto !important;
    padding: 10px 18px !important;
    border-radius: 22px !important;
    background:
        linear-gradient(
            180deg,
            rgba(13, 31, 56, .96),
            rgba(8, 22, 42, .94)
        ) !important;
    border: 1px solid rgba(117, 208, 250, .22) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 12px 30px rgba(0,0,0,.30),
        0 0 0 1px rgba(0,0,0,.10) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar nav a {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: rgba(255,255,255,.92) !important;
    box-shadow: none !important;
}

.navbar nav a:hover,
.navbar nav a.active-link {
    background: rgba(117,208,250,.16) !important;
    border-color: rgba(117,208,250,.26) !important;
    color: #fff !important;
}

.hero-section {
    padding-top: var(--nav-clearance-desktop) !important;
}

@media (max-width: 768px) {
    :root {
        --nav-clearance-mobile: 126px;
    }

    html {
        scroll-padding-top: var(--nav-clearance-mobile) !important;
    }

    .navbar {
        top: max(8px, env(safe-area-inset-top)) !important;
        width: min(94%, 430px) !important;
        padding: 9px 10px !important;
        border-radius: 18px !important;
        background:
            linear-gradient(
                180deg,
                rgba(13, 31, 56, .97),
                rgba(7, 21, 39, .95)
            ) !important;
        border-color: rgba(117,208,250,.24) !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.10),
            0 10px 24px rgba(0,0,0,.32) !important;
    }

    .navbar nav ul {
        gap: 6px !important;
    }

    .navbar nav a {
        min-height: 36px !important;
        padding: 8px 4px !important;
        background: rgba(255,255,255,.06) !important;
        border-color: rgba(255,255,255,.07) !important;
    }

    .hero-section {
        padding-top: var(--nav-clearance-mobile) !important;
    }
}

@media (max-width: 380px) {
    :root {
        --nav-clearance-mobile: 120px;
    }
}
