@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    color: #fff;
}

body{
    background-color: #fafaf5;
}

h1{
    font-size: 3rem;
    font-weight: 900;
}

h2{
    font-size: 2rem;
    font-weight: 900;
}

p{
    font-size: 1.2rem;
    font-weight: 400;
}

.destaque-primario{
    color: #67a9ff;
}

.destaque-secundario{
    color: #00ffee;
}

.btn-primario{
    background: linear-gradient(to right, #0560d8, #00afaf);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 80px;
}

.btn-primario:hover{
    background: linear-gradient(to right, #3d91ff, #05ffff);
    color: #000;
    scale: 1.07;
}

.btn-secundario {
    background: transparent;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    border: 2px solid #67a9ff;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 80px;
}

.btn-secundario:hover {
    background: #67a9ff;
    color: #000;
    scale: 1.07;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    .close-button {
        display: flex;
        margin-left: auto;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 22px;
        color: #fff;
        cursor: pointer;
    }
    transition: opacity 0.3s ease, z-index 0.3s ease;
}

.modal.oculto {
    z-index: -1;
    pointer-events: none;
    opacity: 0;
}

/* Navbar */
.navbar {
    display: flex;
    height: 80px;
    padding-left: 15vw;
    padding-right: 15vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(248, 248, 248);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.hide{
    transform: translateY(-100%);
}

.navbar .logo{
    height: 80%;
}

.navbar .logo img{
    width: auto;
    height: 100%;
}

.navbar .menu ul{
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar .menu ul li .line{
    width: 0;
    height: 2px;
    background-color: #7092BF;
    transition: all 0.3s ease;
}

.navbar .menu ul li a{
    text-decoration: none;
    color: #000;
}

.navbar .menu ul li.selected .line,
.navbar .menu ul li:hover .line{
    width: 100%;
}

.navbar .contato .contato-button{
    background-color: #080808;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 80px;
}

.navbar .contato .contato-button:hover{
    background-color: #d3d3d3;
    color: #000;
}

.main-content{
    padding-top: 80px;
}

.main-content .inicio{
    background-image: url('../img/sectionhero-inicio.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-highlight {
    filter: drop-shadow(0px 0px 10px #67a9ff);
}

.copy{
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-signals {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card, .service-card, .plan-card {
    transition: all 0.3s ease;
}

.feature-card:hover, .service-card:hover {
    transform: translateY(-5px);
}

.video-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popular-badge {
    z-index: 10;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-question {
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2d2a36;
}

/* Footer */
.footer{
    display: flex;
    padding-top: 80px;
    padding-left: 15vw;
    padding-right: 15vw;
    padding-bottom: 80px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    background-color: #fff;
}

.footer h4{
    border-bottom: 2px solid #7092BF;
}

.footer .redes-sociais{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer .redes-sociais div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.7rem;
    text-align: center;
}

.footer .redes-sociais div i{
    border: 2px solid #ccc;
    border-radius: 50%;
    padding: 0.25rem;
    transition: all 0.2s ease;
}

.footer .redes-sociais div i:hover{
    border-color: #7092BF;
    color: #7092BF;
    scale: 1.2;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    
    .navbar .menu ul {
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 0.5rem;
    }
}