/* Reset Básico & Fontes Globais */
:root {
    --primary-color: #002b5e;   /* Deep Navy Blue */
    --secondary-color: #007acc; /* Vibrant Blue */
    --accent-color: #b8860b;    /* Dark Goldenrod */
    --text-color: #333333;
    --light-text-color: #FFFFFF;
    --bg-light-gray: #f4f4f4;
    --border-color: #d9d9d9;
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-primary: 'Open Sans', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2.0rem; }
h3 { font-size: 1.3rem; color: #333; }

p {
    margin-bottom: 1rem;
    color: #555;
}

p.lead {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light-gray);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-light p, .text-light h1, .text-light h2, .text-light h3, .text-light h4 {
    color: var(--light-text-color);
}
.text-light a {
    color: var(--accent-color);
}
.text-light a:hover {
    color: #fff;
}

.text-center {
    text-align: center;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-text-color);
}

.btn-primary:hover {
    background-color: #a0740a;
    color: var(--light-text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}
.btn-secondary:hover {
    background-color: #006bb3;
    color: var(--light-text-color);
    transform: translateY(-2px);
}

.btn-light {
    background-color: #fff;
    color: var(--primary-color);
}
.btn-light:hover {
    background-color: #eee;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Header */
header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem; /* Adjusted */
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-headings);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    font-size: 0.9rem; /* Adjusted */
}
.main-nav ul li a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.main-nav ul li a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 15px !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(32, 33, 34, 0.7), rgba(5, 6, 7, 0.8)), url('./equipe.png?v=2') no-repeat center center/cover;
    color: var(--light-text-color);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    color: var(--light-text-color);
    margin-bottom: 1.5rem;
}

.hero .hero-sub-guarantee {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color); /* Destaque na cor dourada/laranja */
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #e0e0e0;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
    font-size: 0.9rem;
}
.hero-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}
.hero-benefits i {
    color: var(--accent-color);
    font-size: 1.2em;
}

/* Final CTA Section */
#final-cta .btn-large {
    background-color: var(--accent-color);
    color: var(--light-text-color);
}

#final-cta .btn-large:hover {
    background-color: #a0740a;
    color: var(--light-text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Problema Section */
.problem-list {
    list-style: none;
    margin-top: 2rem;
}
.problem-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--secondary-color);
}
.problem-list i {
    color: var(--secondary-color);
    font-size: 1.3em;
}

/* Solução Section */
.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.feature-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Como Funciona Section */
.process-steps {
    margin-top: 2rem;
}
.process-steps li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2.5rem;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.process-steps li:last-child {
    margin-bottom: 0;
}
.step-number {
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent shrinking */
}
.step-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Sobre Nós Section */
.about-us-container {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-us-image {
    flex: 1;
}
.about-us-image img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.about-us-content {
    flex: 1.5;
}
.about-us-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}
.about-us-content ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-us-content ul li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Serviços Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}
.service-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 43, 94, 0.1);
}
.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.service-card:hover i {
    color: var(--accent-color);
}
.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Como Funciona Section */
.process-steps {
    margin-top: 2.5rem;
}
.process-steps li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2.5rem;
}
.process-steps li:last-child {
    margin-bottom: 0;
}
.step-number {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 43, 94, 0.2);
}
.step-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}
.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--border-color);
}
.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.testimonial-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

/* Contato */
.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}
.contact-form {
    flex: 1.5;
}
.contact-info {
    flex: 1;
}
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 122, 204, 0.25);
}
.input-error {
    border-color: var(--error-color) !important;
}
.error-message {
    color: var(--error-color);
    font-size: 0.85em;
    margin-top: 4px;
    display: block;
}
.privacy-notice {
    font-size: 0.8rem;
    color: #777;
    margin-top: 1rem;
}
.contact-info h3, .contact-info h4 {
    color: var(--primary-color);
}
.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

/* Legal Text Sections */
.legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #666;
}
.legal-text h2 {
    text-align: center;
}
.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}
.legal-text ul {
    list-style: disc;
    padding-left: 20px;
}
.legal-text ul li {
    margin-bottom: 0.5rem;
}
.legal-text p {
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #001f44;
    color: #bdc3c7;
    padding: 50px 0 20px 0;
    font-size: 0.9rem;
}
footer .logo {
    color: var(--light-text-color);
}
footer h4 {
    color: var(--light-text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}
.footer-nav ul li, .footer-contact p {
    margin-bottom: 0.8rem;
}
.footer-nav ul li a, .footer-contact a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}
.footer-nav ul li a:hover, .footer-contact a:hover {
    color: var(--accent-color);
}
.footer-social a {
    color: #bdc3c7;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}
.footer-contact i {
    width: 20px;
}
footer hr {
    border: 0;
    border-top: 1px solid #3e5165;
    margin: 2rem 0;
}
.footer-bottom {
    text-align: center;
}
.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #95a5a6;
}
.footer-bottom a {
    color: #bdc3c7;
}
.footer-bottom a:hover {
    color: var(--accent-color);
}
.disclaimer {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.8;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: var(--light-text-color);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease, width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1DAE54;
    transform: scale(1.05);
    color: var(--light-text-color);
}
.whatsapp-float i {
    font-size: 1.6rem;
}
.whatsapp-float span {
    display: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
    color: var(--light-text-color);
}
.whatsapp-float {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
}
.whatsapp-float i {
     margin-right: 0;
}


/* Estilos para a página de obrigado (Thank You Page) */
.thank-you-container {
    text-align: center;
    padding: 80px 20px;
    min-height: 70vh; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.thank-you-container h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem; /* Example size */
}
.thank-you-container p {
    font-size: 1.2rem;
    margin-bottom: 20px; /* Adjusted margin */
    max-width: 600px;
    line-height: 1.7;
}
.thank-you-container .btn {
    margin-top: 20px;
}





/* Responsividade */
@media (max-width: 992px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }
    .about-us-image {
        margin-bottom: 2rem;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }
    .main-nav ul.active {
        display: flex;
    }
    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .main-nav ul li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }
    .nav-cta {
        display: inline-block;
        margin: 15px auto;
        width: fit-content;
    }
    .menu-toggle {
        display: block;
    }
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info {
        margin-top: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        margin: 0 10px;
    }
}

@media (min-width: 769px) {
    .whatsapp-float {
        width: auto;
        height: auto;
        padding: 10px 18px;
    }
    .whatsapp-float span {
        display: inline;
    }
    .whatsapp-float i {
        font-size: 1.8rem;
    }
}