/* Variables */
:root {
    --primary-color: #0F2C59;
    /* Dark Blue */
    --accent-color: #D97706;
    /* Copper/Orange */
    --accent-hover: #b45309;
    --text-color: #333333;
    --light-text: #666666;
    --bg-color: #ffffff;
    --bg-light: #F3F4F6;
    /* Light gray for sections */
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 95%;
    max-width: 1800px;
    /* Very wide but keeps it sane on huge screens */
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    /* Rounded pill shape */
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-outline {
    background-color: var(--accent-color);
    /* Changed to solid based on image */
    color: var(--white);
    border: none;
    padding: 10px 28px;
}

.btn-outline:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 50px;
    /* Pill shape for all buttons */
    width: 100%;
    /* Full width in cards */
}

.btn-sm:hover {
    background-color: var(--accent-hover);
}

.btn-inverse {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-inverse:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Inherit text color */
    cursor: pointer;
}

.logo img {
    height: 50px;
    /* Adjust based on actual logo aspect ratio */
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* Center the menu items */
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    /* Increased gap for better distribution */
}

.nav-menu a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--white);
    /* White background as per image */
    min-height: auto;
    /* Remove fixed height constraint */
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f0f4f8;
    /* Subtle blob color */
    border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    transform: scale(1.1);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* Optional: Add a subtle float animation */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
    /* Light gray background */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--light-text);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 35px;
    /* More rounded */
    border: none;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(217, 119, 6, 0.1);
    /* Light orange bg */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    /* Centered with auto margin */
    color: var(--accent-color);
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Uniform columns */
    gap: 20px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left align logo */
    gap: 10px;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align content */
}

.footer-info p {
    opacity: 0.8;
    margin: 20px 0;
    max-width: 300px;
    text-align: left;
    /* Left align text */
}

.footer-links {
    /* Remova text-align: center; */
    /* Se for grid/flex, garanta que a coluna esteja posicionada corretamente,
       mas o texto deve alinhar à esquerda */
    text-align: left;
}

.footer-links ul {
    padding: 0;
    list-style: none;
    text-align: left;
    /* Garante que os itens da lista fiquem à esquerda */
}

/* CONTAINER DE CONTATO */
.footer-contact {
    /* REMOVER text-align: right; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* CORREÇÃO: Alinha os itens à esquerda */
}

/* HORÁRIO DE ATENDIMENTO */
.footer-hours {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* CORREÇÃO: Alinha os itens à esquerda */
}

/* TITULOS */
.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
    text-align: left;
    /* CORREÇÃO: Alinha o texto do título à esquerda */
}

/* PARÁGRAFOS E ÍCONES */
.footer-contact p,
.footer-hours p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* CORREÇÃO: Alinha o conteúdo da linha à esquerda */
    gap: 10px;
    opacity: 0.8;
    width: 100%;
}

/* Remova o alinhamento específico de .footer-hours h4 se já foi coberto acima */
.footer-hours h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
    text-align: left;
    /* Certifique-se de que está à esquerda */
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    /* Changed to center */
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 900px;
    /* Limit width for better readability when centered */
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 0 15px;
    }

    /* Header */
    .header-container {
        position: relative;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .header-cta {
        display: none;
        /* Hide desktop CTA */
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
        /* Reduced padding */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

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

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    /* Sections General */
    .services,
    .benefits,
    .pricing,
    .faq,
    .footer {
        padding: 60px 0;
        /* Reduced padding for all sections */
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Grids */
    .services-grid,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        /* Force single column */
        max-width: 400px;
        /* Limit width for better look */
        margin: 0 auto;
    }

    /* Footer - Force Center Alignment on Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        /* Center logo */
    }

    .footer-info {
        align-items: center;
        /* Center info content */
    }

    .footer-info p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links,
    .footer-contact,
    .footer-hours {
        text-align: center;
        /* Center align containers */
        align-items: center;
        /* Center flex items */
    }

    .footer-links ul {
        text-align: center;
        /* Center list items */
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-hours h4 {
        text-align: center;
        /* Center headings */
    }

    .footer-contact p,
    .footer-hours p {
        justify-content: center;
        /* Center flex content (icons + text) */
    }

    .footer-contact,
    .footer-hours {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        /* Full width buttons on very small screens */
        padding: 12px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 35px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    position: relative;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.price-box {
    margin-bottom: 20px;
    opacity: 0.7;
}

.price-box .price {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: line-through;
    color: var(--light-text);
}

.price-highlight {
    background-color: #fff7ed;
    /* Very light orange */
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.price-annual {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.price-annual small {
    font-size: 1rem;
    font-weight: 600;
}

.bonus {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 5px;
}

.price-annual .prefix {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: -5px;
}

.loyalty-note {
    font-size: 0.75rem;
    color: var(--light-text);
    font-style: italic;
    margin-top: -20px;
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0 10px;
}

.features {
    text-align: center;
    /* Changed to center */
    margin-bottom: 40px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center list items */
    gap: 10px;
}

.features i {
    color: var(--accent-color);
}

.btn-block {
    width: 100%;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info p {
    opacity: 0.8;
    margin: 20px 0;
    max-width: 300px;
}

.footer-info p {
    opacity: 0.8;
    margin: 20px 0;
    max-width: 300px;
    text-align: center;
    /* Center text */
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-info p,
    .social-links {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 10px;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--light-text);
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    /* Top padding to clear fixed header */
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.legal-section p {
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: justify;
}

.legal-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.legal-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-responsive {
    overflow-x: auto;
}

.date {
    margin-top: 40px;
    font-style: italic;
    text-align: right;
    color: var(--light-text);
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 1.8rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}