:root{
    --bg:#0D1117;
    --card:#111827;
    --border:#1F2937;
    --grid-color:#1A2330;
    --primary:#19BBFF;
    --text:#FFFFFF;
    --text-secondary:#9CA3AF;
}

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

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Outfit',sans-serif;
    overflow-x:hidden;
}

/* ========================================
   LAYOUT GLOBAL
======================================== */

.container{
    width:min(1200px,90%);
    margin:auto;
}

.grid-overlay{
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.02) 1px,
            transparent 1px
        );

    background-size:50px 50px;
}

/* ========================================
   HEADER
======================================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(13,17,23,.85);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

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

.header-container{
    height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}

.logo{
    color:#fff;
    text-decoration:none;

    font-size:1.7rem;
    font-weight:800;
    letter-spacing:-0.04em;
}

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

.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu a{
    position:relative;

    color:#9CA3AF;
    text-decoration:none;

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

    transition:.25s;
}

.menu a:hover{
    color:#fff;
}

.menu a::after{
    content:'';
    position:absolute;

    left:50%;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary);

    transform:translateX(-50%);
    transition:.25s;
}

.menu a:hover::after{
    width:100%;
}

.header-button{
    display:flex;
    align-items:center;
    justify-content:center;

    height:44px;
    padding:0 22px;

    border-radius:999px;

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

    color:var(--primary);
    text-decoration:none;

    font-weight:600;

    transition:.25s;
}

.header-button:hover{
    background:rgba(25,187,255,.15);
    border-color:rgba(25,187,255,.4);

    transform:translateY(-1px);
}

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

.hero{
    min-height:780px;

    padding-top:140px;
    padding-bottom:80px;

    display:flex;
    align-items:flex-start;

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

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

.hero-copy{
    width:100%;
}

.hero-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:28px;

    color:var(--primary);

    font-size:12px;
    font-weight:500;
    letter-spacing:4px;
    line-height:1.2;

    text-transform:uppercase;
}

.hero-eyebrow::before{
    content:'';

    width:6px;
    height:6px;

    border-radius:50%;

    background:var(--primary);

    box-shadow:0 0 14px rgba(25,187,255,.8);

    flex:0 0 6px;
}

.hero h2{
    max-width:850px;
    margin-bottom:28px;

    color:var(--text);

    font-size:clamp(46px, 4.1vw, 62px);
    font-weight:800;
    line-height:.92;
    letter-spacing:-0.0065em;
}

.hero h2 span{
    color:var(--primary);
}

.hero-description{
    max-width:620px;

    color:var(--text-secondary);

    font-size:16px;
    line-height:1.8;
}

.hero-actions{
    margin-top:34px;

    display:flex;
    align-items:center;
    gap:12px;
}

/* ========================================
   BOTÕES
======================================== */

.hero-button{
    height:52px;
    padding:0 26px;

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

    border-radius:8px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:.25s ease;
}

.hero-button.primary{
    background:var(--primary);
    color:#061018;
}

.hero-button.primary:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 35px rgba(25,187,255,.22);
}

.hero-button.secondary{
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    background:rgba(255,255,255,.02);
}

.hero-button.secondary:hover{
    border-color:rgba(25,187,255,.35);
    color:var(--primary);
}

.services-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    color:var(--primary);

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    transition:.25s ease;
}

.services-link:hover{
    gap:12px;
}

.location-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:8px;
    padding:14px 22px;

    border-radius:999px;

    background:var(--primary);
    color:#020617;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:.25s ease;
}

.location-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(25,187,255,.28);
}

/* ========================================
   CARD DO HERO / DIAGNÓSTICO VISUAL
======================================== */

.preventive-card{
    max-width:420px;
    position:relative;
    overflow:hidden;

    padding:28px;

    border:1px solid rgba(255,159,67,.28);
    border-radius:18px;

    background:
        linear-gradient(145deg, rgba(255,159,67,.08), rgba(25,187,255,.04)),
        rgba(17,24,39,.78);
}

.preventive-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
}

.preventive-header span{
    color:rgba(255,255,255,.48);
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.preventive-header strong{
    padding:6px 10px;
    border-radius:999px;

    background:rgba(255,92,92,.12);
    color:#ff5c5c;

    font-size:10px;
    font-weight:800;
    letter-spacing:1.4px;

    animation:alertBlink 1s infinite;
}

.diagnostic-screen{
    position:relative;
    overflow:hidden;

    padding:22px;

    border:1px solid rgba(25,187,255,.25);
    border-radius:14px;

    background:
        linear-gradient(rgba(25,187,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25,187,255,.035) 1px, transparent 1px),
        rgba(13,17,23,.88);

    background-size:22px 22px;
}

.scan-line{
    position:absolute;
    left:0;
    top:0;

    width:100%;
    height:2px;

    background:var(--primary);
    box-shadow:0 0 18px rgba(25,187,255,.9);

    animation:scanMove 2.2s ease-in-out infinite;
}

.main-temp{
    margin-bottom:22px;
}

.main-temp small{
    display:block;

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

    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.main-temp strong{
    display:block;

    margin-top:8px;

    color:#ff5c5c;

    font-size:64px;
    font-weight:800;
    letter-spacing:-.08em;
    line-height:.9;
}

.main-temp span{
    display:block;

    margin-top:8px;

    color:#ff9f43;

    font-size:13px;
    font-weight:700;
}

.diagnostic-metrics{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.diagnostic-metrics div{
    padding:12px;

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

    background:rgba(255,255,255,.035);
}

.diagnostic-metrics span{
    display:block;

    margin-bottom:6px;

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

    font-size:10px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.diagnostic-metrics strong{
    color:#fff;

    font-size:14px;
    font-weight:800;
}

.diagnostic-metrics .fan{
    border-color:rgba(255,159,67,.25);
    background:rgba(255,159,67,.06);
}

.diagnostic-metrics .fan strong{
    color:#FFB347;
}

.diagnostic-metrics .airflow{
    border-color:rgba(255,179,71,.25);
    background:rgba(255,179,71,.06);
}

.diagnostic-metrics .airflow strong{
    color:#FFB347;
}

.diagnostic-metrics .thermal{
    border-color:rgba(255,92,92,.28);
    background:rgba(255,92,92,.08);
    box-shadow:0 0 20px rgba(255,92,92,.08);
}

.diagnostic-metrics .thermal strong{
    color:#FF5C5C;
}

.diagnostic-metrics .status{
    border-color:rgba(255,92,92,.35);
    background:rgba(255,92,92,.10);
}

.diagnostic-metrics .status strong{
    color:#FF7B7B;
}

.risk-list{
    margin-top:18px;

    display:grid;
    gap:11px;
}

.risk-list p{
    display:flex;
    align-items:center;
    gap:10px;

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

    font-size:13px;
    line-height:1.4;
}

.risk-list p span{
    width:7px;
    height:7px;

    flex:0 0 7px;

    border-radius:50%;

    background:#ff5c5c;

    box-shadow:0 0 12px rgba(255,92,92,.8);
}

/* ========================================
   ANIMAÇÕES
======================================== */

@keyframes scanMove{
    0%{
        top:0;
        opacity:.25;
    }

    50%{
        top:100%;
        opacity:1;
    }

    100%{
        top:0;
        opacity:.25;
    }
}

@keyframes alertBlink{
    0%,100%{
        opacity:.55;
    }

    50%{
        opacity:1;
    }
}

/* ========================================
   SEÇÕES / TÍTULOS PADRÃO
======================================== */

.brands-section,
.services-section{
    padding:96px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.section{
    padding:110px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.section-heading{
    margin-bottom:42px;
}

.section-heading h2,
.proof-copy h2{
    margin-top:14px;

    font-size:clamp(32px,3vw,46px);

    line-height:1;

    letter-spacing:-0.055em;

    font-weight:700;
}

.section-eyebrow,
.section-heading p.section-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:14px;

    color:var(--primary);

    font-size:13px;
    font-weight:700;

    letter-spacing:3px;
    line-height:1.2;
    text-transform:uppercase;
}

.section-eyebrow::before{
    content:'';

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--primary);

    flex:0 0 6px;
}

.section-heading > p:not(.section-eyebrow){
    margin-top:12px;
    max-width:900px;
    color:var(--text-secondary);
    font-size:17px;
    line-height:1.7;
}

/* ========================================
   MARCAS
======================================== */

.brands-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.brands-grid img{
    width:100%;
    height:86px;
    padding:24px;
    object-fit:contain;

    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:rgba(255,255,255,.025);

    filter:grayscale(1);
    opacity:.65;

    transition:.25s ease;
}

.brands-grid img:hover{
    filter:grayscale(0);
    opacity:1;
    border-color:rgba(25,187,255,.25);
    transform:translateY(-3px);
}

/* ========================================
   SERVIÇOS
======================================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.services-footer{
    margin-top:32px;
}

.service-card{
    min-height:260px;

    padding:28px;

    display:flex;
    flex-direction:column;

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

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

    transition:.3s ease;
}

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

    border-color:rgba(25,187,255,.25);
    background:rgba(25,187,255,.045);
}

.service-card h3{
    margin-bottom:18px;
    font-size:22px;
    line-height:1.1;
    letter-spacing:-0.04em;
    font-weight:700;
}

.service-card p{
    color:var(--text-secondary);

    font-size:14px;
    line-height:1.7;
}

.service-card a{
    margin-top:auto;

    color:var(--primary);

    text-decoration:none;

    font-size:14px;
    font-weight:700;
}

.service-card a::after{
    content:" →";
}

/* ========================================
   DIFERENCIAIS / PROVAS
======================================== */

.proof-section{
    padding:110px 0;

    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.proof-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.proof-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.proof-card{
    padding:24px;

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

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

    transition:.3s ease;
}

.proof-card:hover{
    transform:translateY(-4px);

    border-color:rgba(25,187,255,.25);

    background:rgba(25,187,255,.045);
}

.proof-card strong{
    font-size:clamp(36px,3vw,46px);

    font-weight:700;

    line-height:1;

    letter-spacing:-0.055em;

    color:var(--text);
}

.proof-card p{
    margin-top:14px;

    color:var(--text-secondary);

    font-size:16px;

    line-height:1.6;
}

/* ========================================
   SOBRE A RYTEC
======================================== */

.about-section{
    padding:110px 0;
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.about-section .section-heading{
    max-width:900px;
}

.about-section .section-heading > p:not(.section-eyebrow){
    max-width:850px;

    font-size:18px;
    line-height:1.9;

    color:var(--text-secondary);
}

.about-list{
    margin-top:48px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

    border:0;
}

.about-item{
    padding:28px;

    display:block;

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

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

    transition:.3s ease;
}

.about-item:hover{
    transform:translateY(-4px);
    border-color:rgba(25,187,255,.25);
    background:rgba(25,187,255,.045);
}

.about-item strong{
    display:block;

    margin-bottom:14px;

    color:#fff;

    font-size:22px;
    font-weight:700;
    letter-spacing:-0.04em;
}

.about-item p{
    max-width:100%;

    color:var(--text-secondary);

    font-size:15px;
    line-height:1.8;
}

/* ========================================
   PROCESSO TRANSPARENTE
======================================== */

.process-section{
    padding:110px 0;

    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.process-header{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;

    align-items:start;

    margin-bottom:60px;
}

.process-header h2{
    margin-top:14px;

    font-size:clamp(32px,3vw,46px);
    line-height:1;
    letter-spacing:-0.055em;
    font-weight:700;

    max-width:650px;
}

.process-description{
    color:var(--text-secondary);

    font-size:18px;

    line-height:1.7;
}

.process-list{
    border-top:1px solid rgba(255,255,255,.08);
}

.process-item{
    display:grid;
    grid-template-columns:90px 1fr;

    gap:30px;

    padding:34px 0;

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

    transition:.25s ease;
}

.process-item:hover{
    padding-left:12px;
}

.process-item span{
    color:var(--primary);

    font-size:34px;

    font-weight:700;

    letter-spacing:-0.05em;
}

.process-item h3{
    margin-bottom:10px;

    color:var(--text);

    font-size:24px;

    font-weight:700;

    letter-spacing:-0.04em;
}

.process-item p{
    color:var(--text-secondary);

    font-size:16px;

    line-height:1.7;

    max-width:650px;
}

.process-note{
    position:relative;

    margin-top:18px;

    max-width:760px;

    padding:18px 20px;

    border-left:2px solid var(--primary);

    background:rgba(25,187,255,.03);

    border-radius:0 12px 12px 0;
}

.process-note::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:60px;
    height:1px;

    background:var(--primary);
}

.process-note strong{
    display:block;

    margin-bottom:10px;

    color:var(--primary);

    font-size:16px;

    font-weight:700;

    letter-spacing:-0.02em;
}

.process-note p{
    color:var(--text-secondary);

    font-size:14px;

    line-height:1.7;

    max-width:700px;
}

.process-note b{
    color:#fff;
}

/* ========================================
   AVALIAÇÕES
======================================== */

.reviews-section{
    padding:110px 0;

    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:48px;
}

.review-card{
    padding:28px;

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

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

    transition:.3s ease;
}

.review-card:hover{
    transform:translateY(-4px);

    border-color:rgba(25,187,255,.25);

    background:rgba(25,187,255,.045);
}

.review-stars{
    margin-bottom:18px;

    color:#FFB347;

    font-size:18px;

    letter-spacing:2px;
}

.review-card p{
    color:var(--text-secondary);

    font-size:15px;

    line-height:1.8;
}

.review-card strong{
    display:block;

    margin-top:24px;

    color:#fff;

    font-size:16px;

    font-weight:700;
}

.review-card span{
    display:block;

    margin-top:4px;

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

    font-size:13px;
}

.reviews-footer{
    margin-top:36px;
}

/* ========================================
   FAQ
======================================== */

.faq-section{
    padding:110px 0;
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.faq-list{
    border-top:0;
    margin-top:0;
}

.faq-item{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-item:last-child{
    border-bottom:0;
}

.faq-item:last-child .faq-answer p{
    margin-bottom:0;
}

/* ========================================
   FAQ - PERGUNTAS
======================================== */

.faq-question{
    width:100%;

    padding:18px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;

    background:none;
    border:0;

    color:var(--text);

    font-family:'Outfit',sans-serif;
    font-size:22px;
    font-weight:700;
    letter-spacing:-0.04em;

    text-align:left;
    cursor:pointer;
}

.faq-question span{
    width:32px;
    height:32px;

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

    border:1px solid rgba(255,255,255,.10);
    border-radius:50%;

    color:var(--primary);

    font-size:20px;
    font-weight:300;

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

/* ========================================
   FAQ - RESPOSTA EXPANDIDA
======================================== */

.faq-answer{
    display:block;
    max-height:0;
    overflow:hidden;

    transition:max-height .3s ease;
}

.faq-answer p{
    max-width:900px;

    margin:0 0 26px 0;
    padding:22px 24px;

    border-left:2px solid rgba(25,187,255,.45);
    border-radius:0 14px 14px 0;

    background:rgba(25,187,255,.035);

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

    font-size:17px;
    line-height:1.9;
    font-weight:400;
}

/* ========================================
   FAQ - ITEM ABERTO
======================================== */

.faq-item.active{
    background:transparent;
}

.faq-item.active .faq-question span{
    border-color:rgba(25,187,255,.35);

    background:rgba(25,187,255,.08);
}

.faq-box{
    margin-top:48px;

    padding:32px;

    border:1px solid rgba(25,187,255,.15);
    border-radius:18px;

    background:rgba(25,187,255,.025);
}

.faq-footer{
    margin-top:32px;
}

/* ========================================
   LOCALIZAÇÃO
======================================== */

#onde-estamos{
    padding-top:110px;
}

#onde-estamos .section-heading{
    margin-bottom:42px;
}

.location-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin:0 0 28px;
}

.location-highlights .highlight{
    background:rgba(255,255,255,.02);
    border:1px solid rgba(25,187,255,.18);
    border-radius:18px;
    padding:26px 20px;
    text-align:center;
}

.location-highlights .highlight strong{
    display:block;
    color:var(--primary);
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.location-highlights .highlight span{
    color:var(--text-secondary);
    font-size:14px;
}

.location-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:24px;
    align-items:stretch;
}

.location-card{
    background:rgba(255,255,255,.02);
    border:1px solid rgba(25,187,255,.18);
    border-radius:22px;
    padding:28px;
}

.location-card h3{
    font-size:22px;
    margin-bottom:22px;
}

.location-item{
    margin-bottom:18px;
}

.location-item strong{
    display:block;
    color:var(--text);
    font-size:14px;
    margin-bottom:6px;
}

.location-item span{
    display:block;
    color:var(--text-secondary);
    font-size:15px;
    line-height:1.6;
}

/* ========================================
   LOCALIZAÇÃO - LINKS
======================================== */

.location-item a{
    display:block;

    color:var(--text-secondary);
    text-decoration:none;

    font-size:16px;
    line-height:1.7;

    transition:.25s ease;
}

.location-item a:hover{
    color:var(--primary);
}

.location-item span{
    font-size:16px;
    line-height:1.7;
}

.location-item strong{
    font-size:15px;
}

.map-wrapper{
    min-height:420px;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(25,187,255,.18);
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    min-height:420px;
    display:block;

    filter:
        brightness(.85)
        contrast(1.1)
        saturate(.8);
}

/* ========================================
   CONTACT / FORMULÁRIO WHATSAPP
======================================== */

#contato{
    padding-top:110px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:start;
}

.contact-content .section-heading{
    margin-bottom:32px;
}

.contact-info-card{
    padding:26px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    background:rgba(255,255,255,.025);
}

.contact-info-card p{
    color:var(--text-secondary);
    font-size:15px;
    line-height:1.7;
}

.contact-info-card p + p{
    margin-top:14px;
}

.contact-form-card{
    padding:32px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    background:rgba(255,255,255,.035);
}

.form-card-header{
    padding-bottom:22px;
    margin-bottom:24px;
    border-bottom:1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.form-card-header p{
    color:var(--primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.form-card-header div{
    display:flex;
    gap:6px;
}

.form-card-header span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
}

.form-card-header span:last-child{
    background:var(--primary);
    box-shadow:0 0 12px rgba(25,187,255,.8);
}

.contact-form{
    background:none;
    border:0;
    border-radius:0;
    padding:0;
}

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

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

.form-group label{
    display:block;
    margin-bottom:8px;

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

    font-size:11px;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:15px 16px;

    border:1px solid rgba(255,255,255,.10);
    border-radius:8px;

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

    color:var(--text);

    font-family:'Outfit',sans-serif;
    font-size:15px;

    outline:none;
}

.form-group textarea{
    min-height:120px;
    resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:rgba(25,187,255,.75);
}

.contact-submit{
    width:100%;
    height:52px;

    border:0;
    border-radius:8px;

    background:var(--primary);
    color:#061018;

    font-family:'Outfit',sans-serif;
    font-size:15px;
    font-weight:800;

    cursor:pointer;

    transition:.25s ease;
}

.contact-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 35px rgba(25,187,255,.22);
}

.form-note{
    margin-top:14px;

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

    font-size:13px;
    line-height:1.6;
    text-align:center;
}

.form-group label span{
    color:var(--primary);
    font-weight:700;

    text-shadow:0 0 8px rgba(25,187,255,.35);
}

/* ========================================
   CONTACT INFO
======================================== */

.contact-info-list{
    margin:34px 0;
}

.contact-info-item{
    padding:22px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    max-width:520px;
}

.contact-info-item:first-child{
    border-top:1px solid rgba(255,255,255,.08);
}

.contact-info-item strong{
    display:block;

    margin-bottom:6px;

    color:#fff;

    font-size:24px;
    font-weight:700;
    letter-spacing:-0.04em;
}

.contact-info-item span{
    color:var(--text-secondary);

    font-size:15px;
    line-height:1.7;
}

/* ========================================
   CONTACT BENEFITS
======================================== */

.contact-benefits{
    display:grid;
    gap:14px;

    margin-top:32px;
}

.contact-benefits p{
    color:var(--text-secondary);

    font-size:15px;
    line-height:1.6;
}

.contact-benefits p{
    position:relative;
    padding-left:18px;
}

.contact-benefits p::before{
    content:"";

    position:absolute;

    left:0;
    top:10px;

    width:6px;
    height:6px;

    border-radius:50%;

    background:var(--primary);

    box-shadow:0 0 12px rgba(25,187,255,.8);
}

/* ========================================
   CONTACT / AJUSTE FINO
======================================== */

.contact-info-item{
    padding:22px 0;
}

.contact-info-item strong{
    font-size:22px;
}

.contact-grid{
    align-items:center;
}

/* ========================================
   CONTACT INFO LINKS
======================================== */

.contact-info-item a{
    color:var(--text-secondary);
    text-decoration:none;
    line-height:1.7;

    transition:.25s ease;
}

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

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

.footer{
    padding:72px 0 28px;
    border-top:1px solid rgba(255,255,255,.06);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.25fr 1.25fr 1fr 1fr;
    gap:56px;
    align-items:start;
}

.footer-logo{
    display:inline-block;

    margin-bottom:24px;

    color:#fff;
    text-decoration:none;

    font-size:38px;
    font-weight:800;

    letter-spacing:-0.04em;
}

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

.footer-brand p{
    max-width:340px;

    color:var(--text-secondary);

    font-size:16px;
    line-height:1.8;
}

.footer-column,
.footer-hours{
    display:grid;
    gap:14px;
}

.footer-column h3,
.footer-hours h3{
    position:relative;

    margin-bottom:18px;

    color:#fff;

    font-size:16px;
    font-weight:800;

    text-transform:uppercase;
    letter-spacing:.04em;
}

.footer-column h3::after,
.footer-hours h3::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-10px;

    width:34px;
    height:2px;

    background:var(--primary);
}

.footer-column a{
    color:var(--text-secondary);

    text-decoration:none;

    font-size:15px;
    line-height:1.6;

    transition:.25s ease;
}

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

.footer-hours-card{
    margin-top:10px;
    padding:24px;

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

    background:rgba(255,255,255,.025);
}

.footer-hours-card strong{
    display:block;

    margin-bottom:8px;

    color:#fff;

    font-size:15px;
    font-weight:700;
}

.footer-hours-card span{
    display:block;

    color:var(--primary);

    font-size:15px;
    font-weight:700;
}

.footer-hours-card hr{
    margin:22px 0;

    border:0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom{
    margin-top:56px;
    padding-top:24px;

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

    display:flex;
    justify-content:space-between;
    gap:24px;
}

.footer-bottom p{
    color:rgba(255,255,255,.45);

    font-size:14px;
}

/* ========================================
   SOBRE - RESPONSIVO
======================================== */

@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

}