/* =====================================================
   AURUM DETAILING
   STYLE.CSS
   PARTE 1
===================================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#FFFFFF;
    overflow-x:hidden;

}

/* CORES */

:root{

    --azul:#0A6CFF;
    --azul-hover:#2E85FF;

    --prata:#E6E6E6;
    --cinza:#BDBDBD;

    --preto:#050505;
    --preto-card:#111111;

    --borda:rgba(255,255,255,.08);

}

/* CONTAINER */

.container{

    width:min(1180px,92%);
    margin:auto;

}

/* TÍTULOS */

h1{

    font-size:64px;
    font-weight:700;
    line-height:1.1;

}

h2{

    font-size:40px;
    font-weight:600;
    color:var(--prata);
    margin-bottom:18px;

}

h3{

    font-size:24px;
    font-weight:600;

}

p{

    color:#D8D8D8;
    line-height:1.8;

}

/* LINKS */

a{

    text-decoration:none;
    color:#FFF;

}

/* IMAGENS */

img{

    max-width:100%;
    display:block;

}
/* =====================================================
   HEADER
===================================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(5,5,5,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid var(--borda);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}
.logo{

    display:flex;

    align-items:center;

    justify-content:flex-start;

}

.logo img{

    height:105px;
  width:auto;

}

nav ul{

    display:flex;

    gap:34px;

    list-style:none;

}

nav a{

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:var(--azul);

}
/* =====================================================
   BOTÕES
===================================================== */
.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:linear-gradient(135deg,#0066FF,#0050D4);

    color:#FFF;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    
  box-shadow:0 12px 35px rgba(24,110,255,.35);

}

.btn-primary:hover{

    transform:translateY(-5px) scale(1.02);

    box-shadow:0 22px 45px rgba(24,110,255,.45);

}

.btn-secondary{

    border:1px solid var(--prata);

    padding:15px 30px;

    border-radius:50px;

    transition:.3s;

}

.btn-secondary:hover{

    background:var(--prata);

    color:#050505;

}
/* =====================================================
   HERO
===================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    radial-gradient(circle at top,#186EFF22 0%,transparent 45%),
    radial-gradient(circle at bottom,#0b244722 0%,transparent 35%),
    linear-gradient(180deg,#050505,#0A0A0A 50%,#050505);
}
.hero::before{

content:"";

position:absolute;

top:-250px;

left:50%;

transform:translateX(-50%);

width:700px;

height:700px;

background:radial-gradient(circle,
rgba(24,110,255,.18),
transparent 70%);

filter:blur(60px);

pointer-events:none;
opacity:.35;
filter:blur(90px);
}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(5,5,5,.88),
        rgba(5,5,5,.72)
    );

}
.hero-content{

    position:relative;

    z-index:2;

    width:100%;

    max-width:720px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

}
.hero-logo{

    width:300px;

    display:block;

    margin:0 auto 35px;

    filter:drop-shadow(0 0 18px rgba(24,110,255,.25));

    animation:float 5s ease-in-out infinite;

}

.hero h1{

    margin-bottom:20px;
  font-size:60px;

line-height:1.1;

font-weight:800;

letter-spacing:-2px;

}

.hero span{

    color:var(--azul);

}

.hero p{
font-size:21px;

    max-width:650px;

    margin:0 auto 40px;

    color:#D8D8D8;

    line-height:1.8;
}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}
/* =====================================================
   QUEM SOMOS
===================================================== */

section{

    padding:100px 0;

}

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-text p{

    margin-bottom:20px;

}

.about-image img{

    width:100%;

    border-radius:20px;

    border:1px solid var(--borda);

    transition:.35s;

}

.about-image img:hover{

    transform:scale(1.02);

}
/* =====================================================
   SERVIÇOS
===================================================== */


.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:50px;

}

.card{
overflow:hidden;
    background:var(--preto-card);

    border:1px solid rgba(255,255,255,.05);
  box-shadow:0 12px 25px rgba(0,0,0,.18);

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    transition:.35s;

    padding:0;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#186EFF;

    box-shadow:

        0 0 20px rgba(24,110,255,.25),

        0 20px 40px rgba(0,0,0,.45);

}

.card h3{

    margin:25px 25px 15px;

}

.card p{

    margin:0 25px 30px;

    font-size:15px;

    line-height:1.7;

}

.service-image{
  transition:.4s;

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;
  border-radius:18px 18px 0 0;

}
/* =====================================================
   PLANOS
===================================================== */

.pricing{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:60px;

}

.price-card{

    background:var(--preto-card);

    border:1px solid var(--borda);

    border-radius:18px;

    padding:40px;

    text-align:center;

    transition:.35s;

}
.price-card.destaque{

    border:2px solid #186EFF;

    box-shadow:0 0 25px rgba(24,110,255,.25);

    transform:scale(1.03);

}

.price-card:hover{

transform:scale(1.05) translateY(-10px);

    box-shadow:0 0 40px rgba(24,110,255,.45);

}

.price-card h3{

    margin-bottom:25px;
position: relative;
overflow: hidden;
}
.badge{

    position:absolute;

    top:20px;

    right:-28px;

    width:140px;

    padding:7px 0;

    text-align:center;

    background:linear-gradient(135deg,#FFD700,#FFB800);

    color:#111;

    font-size:10px;

    font-weight:800;

    transform:rotate(45deg);

    text-transform:uppercase;

    letter-spacing:.5px;

    box-shadow:0 6px 15px rgba(255,215,0,.25);

}

.price-card ul{

    list-style:none;

    margin-bottom:30px;

}

.price-card li{

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.price-card a{

    display:inline-block;

    margin-top:25px;

    padding:14px 30px;

    background:var(--azul);

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.price-card a:hover{

    background:var(--azul-hover);

}

/* =====================================================
   GALERIA
===================================================== */

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:20px;

    margin-top:50px;

}

.gallery img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    border:1px solid var(--borda);

    transition:.35s;

}

.gallery img:hover{

    transform:scale(1.03);

    border-color:var(--azul);

}
/* =====================================================
   CONTATO
===================================================== */

#contato{

    text-align:center;

}

#contato p{

    max-width:700px;

    margin:20px auto 40px;

}
/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#0A0A0A;

    border-top:1px solid var(--borda);

    padding:50px 0;

    text-align:center;

}

footer img{

    width:170px;

    margin:auto;

    margin-bottom:20px;

}

footer p{

    color:#9E9E9E;

    font-size:14px;

}
/* =====================================================
   WHATSAPP
===================================================== */

.floating{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

}

.floating a{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#25D366;

    font-size:30px;

    color:#FFF;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    transition:.3s;

}

.floating a:hover{

    transform:scale(1.1);

}
/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:900px){

    h1{

        font-size:56px;
      line-height:1.15;

    font-weight:700;

    margin-bottom:20px;

    }

    h2{

        font-size:30px;

    }

    .about{

        grid-template-columns:1fr;

    }

    nav{

        display:none;

    }

    header .container{

        justify-content:space-between;

    }

    .hero{

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

}
/* =====================================================
   ANIMAÇÕES
===================================================== */

.card,
.price-card,
.about-image img,
.gallery img{

    transition:.35s ease;

}

.hero-logo{

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

/* =====================================================
   MENU MOBILE
===================================================== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#FFF;
    font-size:30px;
    cursor:pointer;
}

@media (max-width:900px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:fixed;
        top:82px;
        left:0;
        width:100%;
        background:#050505;
        border-top:1px solid var(--borda);
        display:none;
        padding:25px 0;
    }

    nav.active{
        display:block;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        gap:25px;
        text-align:center;
    }

    .btn-whatsapp{
        display:none;
    }

}

/* =====================================================
   HEADER SCROLL
===================================================== */

header.scrolled{

    background:rgba(5,5,5,.98);

    box-shadow:0 8px 30px rgba(0,0,0,.35);

}

/* =====================================================
   SELEÇÃO DE TEXTO
===================================================== */

::selection{

    background:var(--azul);

    color:#FFF;

}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#050505;

}

::-webkit-scrollbar-thumb{

    background:var(--azul);

    border-radius:20px;

}
.plan-price{

    margin:20px 0 30px;

    text-align:center;

}

.plan-price span{

    display:block;

    color:#9b9b9b;

    font-size:13px;

    margin-bottom:6px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.plan-price h2{

    font-size:44px;

    font-weight:800;

    color:#fff;

    line-height:1;

    text-shadow:0 0 18px rgba(24,110,255,.25);

}
/* =====================================================
   FAQ
===================================================== */

#faq{

    background:#080808;

}

.faq-subtitle{

    max-width:700px;

    margin:0 auto 50px;

    text-align:center;

    color:#BDBDBD;

}

.faq-container{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:var(--preto-card);

    border:1px solid var(--borda);

    border-radius:16px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    border-color:var(--azul);

    box-shadow:0 0 18px rgba(24,110,255,.15);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#FFF;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    font-size:18px;

    font-weight:600;

    text-align:left;

}

.faq-question span{

    font-size:28px;

    color:var(--azul);

    transition:.35s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 28px 24px;

    color:#D8D8D8;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}
/* =====================================================
   BOTÃO VOLTAR AO TOPO
===================================================== */

.back-to-top{

    position:fixed;

    right:25px;

    bottom:105px;

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--azul);

    color:#FFF;

    font-size:24px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(24,110,255,.35);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:998;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:translateY(-5px);

    background:var(--azul-hover);

}
/* =====================================================
   LINKS DO RODAPÉ
===================================================== */

.footer-links{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    margin:25px 0;

}

.footer-links a{

    color:#BDBDBD;

    font-size:14px;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--azul);

}
/* ==========================================
   GALERIA SWIPER
========================================== */

.aurumSwiper{

    width:92%;

    max-width:900px;

    margin:50px auto;

    overflow:hidden;

    border-radius:20px;

    position:relative;

}

.aurumSwiper img{

    width:100%;

    max-height:650px;

    object-fit:contain;

    display:block;

    border-radius:20px;

}

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

    width:50px;

    height:50px;

    top:50% !important;

    transform:translateY(-50%);

}

.swiper-button-next{

    right:15px;

}

.swiper-button-prev{

    left:15px;

}

.swiper-pagination{

    position:relative;

    margin-top:15px;

}

.swiper-pagination-bullet{

    background:#fff;

    opacity:.6;

}

.swiper-pagination-bullet-active{

    background:var(--azul);

    opacity:1;

}
/* =====================================================
   HIGHLIGHTS
===================================================== */

.highlights{

    margin-top:-40px;
    position:relative;
    z-index:5;

}

.highlights .container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.highlight-card{

    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px 25px;
    text-align:center;
    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    border-color:var(--azul);

    box-shadow:0 20px 45px rgba(24,110,255,.15);

}

.highlight-card i{

    font-size:38px;

    color:var(--azul);

    margin-bottom:18px;

}

.highlight-card h3{

    margin-bottom:15px;

    font-size:20px;

}

.highlight-card p{

    font-size:15px;

    color:#CFCFCF;

    line-height:1.7;

}

@media(max-width:900px){

    .highlights .container{

        grid-template-columns:1fr;
        gap:18px;

    }

}
/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal{

    opacity:0;
    transform:translateY(50px);
    transition:opacity .8s ease, transform .8s ease;

}

.reveal.show{

    opacity:1;
    transform:translateY(0);

}
/* =====================================================
   FIM DO CSS
===================================================== */
