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

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

html{
    scroll-behavior:smooth;
}

body{
    background:#050510;
    color:#fff;
    font-family:'Open Sans',sans-serif;
    overflow-x:hidden;
    position:relative;
}

/* ========================================
   BACKGROUND EFFECTS
======================================== */

.bg-glow{
    position:fixed;
    border-radius:50%;
    filter:blur(180px);
    opacity:.15;
    z-index:-1;
}

.bg-1{
    width:500px;
    height:500px;
    background:#F551AC;
    top:-100px;
    left:-100px;
}

.bg-2{
    width:600px;
    height:600px;
    background:#F551AC;
    bottom:-250px;
    right:-150px;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(
        circle at 30% 20%,
        rgba(245,81,172,.12),
        transparent 30%
    ),
    radial-gradient(
        circle at 80% 70%,
        rgba(245,81,172,.08),
        transparent 35%
    );
    pointer-events:none;
    z-index:-2;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1,h2,h3,h4,h5{
    font-family:'Roboto',sans-serif;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.section-title p{
    color:#b8b8c0;
}

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

.header{
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    z-index:999;
    backdrop-filter:blur(20px);
    background:rgba(5,5,16,.65);
    border-bottom:1px solid rgba(245,81,172,.15);
}

.logo img{
    height:80px;
    width: 100%;
}

.menu-btn{
    background:transparent;
    border:1px solid #F551AC;
    color:#fff;
    padding:12px 24px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.menu-btn:hover{
    background:#F551AC;
    box-shadow:0 0 25px rgba(245,81,172,.4);
}

/* ========================================
   MODAL MENU
======================================== */

.menu-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.menu-content{
    background:#0d0d18;
    padding:50px;
    border-radius:25px;
    min-width:350px;
    text-align:center;
    border:1px solid rgba(245,81,172,.25);
}

.menu-content nav{
    display:flex;
    flex-direction:column;
    gap:25px;
    margin:30px 0;
}

.menu-content nav a{
    color:white;
    text-decoration:none;
    font-size:1.1rem;
}

.close-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

/* ========================================
   BUTTONS
======================================== */

.btn-primary{
    background:#F551AC;
    color:white;
    padding:16px 34px;
    border-radius:14px;
    text-decoration:none;
    display:inline-block;
    transition:.4s;
    font-weight:600;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 0 40px rgba(245,81,172,.5);
}

.btn-secondary{
    border:1px solid rgba(245,81,172,.4);
    color:white;
    padding:16px 34px;
    border-radius:14px;
    text-decoration:none;
    display:inline-block;
    transition:.4s;
}

.btn-secondary:hover{
    background:rgba(245,81,172,.1);
}

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

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    padding:140px 8%;
}

.hero-left{
    flex:1;
}

.badge{
    display:inline-block;
    border:1px solid rgba(245,81,172,.4);
    color:#F551AC;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
}

.hero h1{
    font-size:5rem;
    line-height:1.1;
    margin-bottom:30px;
}

.hero h1 span{
    color:#F551AC;
}

.hero p{
    max-width:650px;
    color:#c6c6d0;
    font-size:1.25rem;
    line-height:1.8;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

/* ========================================
   PARTNERS PREMIUM
======================================== */

.partners{
    padding:100px 0;
    overflow:hidden;
}

.partners-carousel{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:60px;
}

.partners-track{
    display:flex;
    width:max-content;
    gap:25px;

    animation:partnersScroll 10s linear infinite;
}

.partners-track:hover{
    animation-play-state:paused;
}

.partner-card{

    width:220px;
    height:120px;

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

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

    border:1px solid rgba(245,81,172,.15);

    border-radius:20px;

    backdrop-filter:blur(20px);

    transition:.4s;
}

.partner-card:hover{

    transform:translateY(-5px);

    border-color:#F551AC;

    box-shadow:
    0 0 25px rgba(245,81,172,.2);

}

.partner-card img{

    max-width:140px;
    max-height:60px;

    object-fit:contain;

    filter:
    grayscale(100%)
    brightness(.8);

    transition:.4s;

}

.partner-card:hover img{

    filter:
    grayscale(0%)
    brightness(1);

}

@keyframes partnersScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.partners-carousel::before,
.partners-carousel::after{

    content:"";

    position:absolute;

    top:0;

    width:180px;
    height:100%;

    z-index:2;

    pointer-events:none;

}

.partners-carousel::before{

    left:0;

    background:
    linear-gradient(
        to right,
        #050510,
        transparent
    );

}

.partners-carousel::after{

    right:0;

    background:
    linear-gradient(
        to left,
        #050510,
        transparent
    );

}
/* ========================================
   SHIELD
======================================== */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.shield-container{
    position:relative;
    width:450px;
    height:450px;
}

.shield-ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(245,81,172,.25);
}

.ring-1{
    width:100%;
    height:100%;
}

.ring-2{
    width:75%;
    height:75%;
    top:12.5%;
    left:12.5%;
}

.shield-center{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(245,81,172,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    backdrop-filter:blur(25px);
    border:1px solid rgba(245,81,172,.2);

    animation:pulseShield 4s infinite ease-in-out;
}

@keyframes pulseShield{
    0%{
        transform:translate(-50%,-50%) scale(1);
    }

    50%{
        transform:translate(-50%,-50%) scale(1.08);
    }

    100%{
        transform:translate(-50%,-50%) scale(1);
    }
}

.floating-tag{
    position:absolute;
    padding:12px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(245,81,172,.2);
    backdrop-filter:blur(20px);
}

.top-left{
    top:40px;
    left:-50px;
}

.top-right{
    top:40px;
    right:-60px;
}

.bottom-left{
    bottom:40px;
    left:-80px;
}

.bottom-right{
    bottom:40px;
    right:-70px;
}

/* ========================================
   SERVICES
======================================== */

.services{
    padding:100px 8%;
}

.carousel-container{
    display:flex;
    align-items:center;
    gap:20px;
}

.carousel-track{
    display:flex;
    gap:25px;
    overflow:hidden;
    flex:1;
}

.service-card{
    min-width:320px;
    padding:30px;
    border-radius:24px;
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(20px);
    border:1px solid rgba(245,81,172,.15);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 35px rgba(245,81,172,.15);
}

.service-card h3{
    margin-bottom:15px;
    color:#F551AC;
}

.carousel-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:#F551AC;
    color:white;
}

.center{
    text-align:center;
    margin-top:40px;
}

/* ========================================
   ABOUT
======================================== */

.about{
    padding:120px 8%;
    text-align:center;
}

.about p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    color:#c4c4cf;
}

/* ========================================
   DIFFERENTIALS
======================================== */

.differentials{
    padding:120px 8%;
}

.diff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px, 1fr));
    gap:25px;
}

.diff-card{
    padding:35px;
    text-align:center;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(245,81,172,.15);
    transition:.3s;
}

.diff-card:hover{
    transform:translateY(-8px);
}

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

.faq{
    padding:120px 8%;
}

.faq-item{
    margin-bottom:20px;
}

.faq-question{
    width:100%;
    text-align:left;
    padding:22px;
    border:none;
    cursor:pointer;
    background:#0f0f1d;
    color:white;
    border-radius:15px;
}

.faq-answer{
    display:none;
    padding:20px;
    color:#bdbdcc;
}

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

.contact{
    padding:120px 8%;
    text-align:center;
}

.contact h2{
    font-size:3rem;
}

.contact p{
    margin:20px 0 40px;
    color:#bdbdcc;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

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

footer{
    padding:80px 8%;
    text-align:center;
    border-top:1px solid rgba(245,81,172,.1);
}

.footer-logo img{
    height:70px;
    margin-bottom:20px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    color:#bdbdcc;
}

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

@media(max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:3.5rem;
    }

    .shield-container{
        width:320px;
        height:320px;
    }

    .floating-tag{
        display:none;
    }

}

@media(max-width:768px){

    .hero h1{
        font-size:2.8rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .contact-buttons{
        flex-direction:column;
    }

    .carousel-container{
        flex-direction:column;
    }

}

/* ========================================
   SCROLL ANIMATION
======================================== */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ========================================
   PARTICLES
======================================== */

.particle{
    position:fixed;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#F551AC;
    pointer-events:none;
    z-index:-1;
    animation:particleFloat linear forwards;
}

@keyframes particleFloat{

    from{
        transform:translateY(100vh);
    }

    to{
        transform:translateY(-100px);
    }

}

/* CONSULTAS.HTML */

/* ========================================
   CONSULTAS PAGE
======================================== */

.services-page{
    padding:80px 8%;
}

.search-container{
    max-width:700px;
    margin:0 auto 60px;
}

.search-container input{
    width:100%;
    padding:18px;
    border-radius:16px;
    border:1px solid rgba(245,81,172,.2);
    background:#0d0d18;
    color:white;
    font-size:16px;
}

.category{
    margin-bottom:80px;
}

.category h2{
    margin-bottom:30px;
    color:#F551AC;
}

.services-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}