/* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

button{
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

a{
    text-decoration: none;
}



/* Botão Whatsapp */
.iconwhats{
    position: fixed;
    bottom: 60px;
    right: 30px;
    font-size: 30px;
    background-color: #109653;
    color: #fffdfd;
    border-radius: 50%;
    padding: 3px;
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 2px 2px 2px #1c1c1c;
    transition: .3s;
}

.iconwhats .fab{
 padding-top: 9px;
}

.iconwhats:hover{
    background-color: #fff;
    color: #109653;
    font-weight: 900;
    box-shadow: 2px 2px 20px #109653;
}

.iconwhats::before, .iconwhats::after{
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 2px solid #109653;
    animation: animar 1.5s linear infinite;
    opacity: 0;
}

.iconwhats::after{
    animation-delay: .5s;
}

@keyframes animar {
    0%{
        transform: scale(0.5);
        opacity: 0;
    }

    50%{
        opacity: 1;
    }

    100%{
        transform: scale(1.2);
        opacity: 0;
    }
    
}



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



/* Estilos para o novo menu de navegação */
.navbar {
    background-color: #0f1f2e00;
    padding: 30px 0;
    position: sticky;
    margin-top: -20px;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo-image {
    max-height: 50px; /* Ajuste a altura da logo no menu */
}

.menu-items {
    display: flex;
    gap: 35px;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    padding: 5px 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

/* Animação ao passar o mouse */
.menu-items a:hover {
    transform: scale(1.15);
    color: #a7c5e4; /* Cor de destaque */
}

/* Ícone do menu hamburger para mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Estilos para o menu responsivo (mobile) */
@media (max-width: 768px) {
    .header-content {
        /* Remove o espaçamento superior que era do header antigo */
        margin-bottom: 20px;
    }

    .hamburger {
        display: flex;
    }

    .menu-items {
        display: none; /* Esconde os itens do menu por padrão */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Altura da navbar */
        left: 0;
        width: 100%;
        background-color: #0f1f2e;
        padding: 20px 0;
        height: 200vh;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .menu-items.active {
        display: flex; /* Mostra o menu quando ativo */
    }

    .menu-items a {
        padding: 15px;
        width: 100%;
        font-size: 18pt;
    }

    /* Animação do ícone hamburger para 'X' */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}














/* Header e Logo */
.hero-section {
    background: linear-gradient(150deg, #0f1f2e 50%, #ffffff 100%);
    color: white;
    padding: 20px 0 60px;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.contact-info a {
    font-size: 24px;
    font-weight: bold;
    transition: .2s;
    color: white;
}

.contact-info a:hover {
    font-size: 26px;
    font-weight: bold;
    text-decoration: underline;
}


/* Hero Body */
.hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text-area h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-area p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Form Box */
.form-box {
    background: #109653;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #ffffff;
    text-align: center;
    transition: .6s;
}

.form-box:hover {
    transform: scale(1.1);
    box-shadow: 0px 3px 3px #ffffff;
}   

.form-box h2 {
    margin-bottom: 0px;
    color: #ffffff;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-box textarea {
    height: 100px;
    resize: vertical;
}

.cta-button {
    background: #0f1f2e;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.5s ease;
    width: 100%;
}

.cta-button:hover {
    background: #5a6fd8;
}

/* Video Containers */
.service-intro-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-placeholder,
.testimonial-video-placeholder {
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
}

.play-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover .play-icon,
.testimonial-video-placeholder:hover .play-icon {
    opacity: 1;
}

.video-instructions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-align: left;
}

.video-instructions p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.video-instructions small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    text-align: center;
    background-color: #0f1f2e;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: .3s;
}

.benefit-item:hover{
    box-shadow: 1px 10px 10px #747474;
    transform: scale(1.05);
}

.benefits-section button{
    background-color: #fff;
    color: #0f1f2e;
    transition: .5s;
}

.benefits-section button:hover{
    background-color: #109653;
    color: #fff;
    box-shadow: 0px 3px 3px #ffffff;
}

.icon-placeholder {
    font-size: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: #0f1f2e;
}


/* Social Proof Section */
.social-proof-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.social-proof-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.recommendation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-video-placeholder {
    background: #333;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin: 20px 0;
}

.client-name {
    font-weight: bold;
    margin-top: auto;
}

.client-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: #ddd;
    border-radius: 50%;
    flex-shrink: 0;
}

.social-proof-section button{
    background-color: #0f1f2e;
    color: #fff;
    transition: .5s;
}

.social-proof-section button:hover{
    background-color: #0f1f2e;
    color: #fff;
    box-shadow: 0px 3px 3px #000000;
}



/* About Us Section */
.about-us-section {
    padding: 60px 0;
}



.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-placeholder {
    background: #ffffff;
    border-radius: 10px 10px 10px 10px;
    aspect-ratio: 2/2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-placeholder-img {
    width: 70%;
    height: 80%;
    border-radius: 2px 2px 2px 2px;
}

.icon-placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher sem distorcer */
    display: block;
}

.icon-placeholder-img {
    font-size: 6rem;
    color: #999;
}

.about-us-text-area h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.about-us-text-area p{
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: .5s;
}

.faq-question:hover {
    background: #0f1f2e;
    color: #fff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.final-cta-footer {
    background: #0f1f2e;
    color: white;
    padding: 60px 0 20px;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.final-cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-details {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    opacity: 0.7;
}


.final-cta-footer button{
    background-color: rgba(252, 252, 252, 0.411);
    color: #000;
}

.final-cta-footer button:hover{
    background-color: #fff;
    color: #0f1f2e;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-body,
    .service-intro-content,
    .recommendation-content,
    .about-us-content,
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-text-area h1 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-placeholder {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

