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

:root {
    --gold: #d4af37;
    --dark-gray: #2a2a2a;
    --light-beige: #f4e4c1;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --accent: #c9a961;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    font-family: 'Playfair Display', serif;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-beige) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--dark-gray);
    bottom: -50px;
    left: -50px;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--gold);
    top: 50%;
    right: 10%;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Objetivo Section */
.objetivo {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--white) 100%);
}

.objetivo-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

.objetivo-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 300;
}

/* Opções Section */
.opcoes {
    padding: 6rem 2rem;
    background: var(--white);
}

.opcoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.opcao-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.opcao-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.opcao-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-beige);
    padding-bottom: 1.5rem;
}

.opcao-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.opcao-modelo {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.opcao-tipo {
    margin-bottom: 1.5rem;
}

.tipo-badge {
    display: inline-block;
    background: var(--light-beige);
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tipo-premium {
    background: var(--gold);
    color: var(--white);
}

.tipo-opcional {
    background: #e8d5b7;
    color: var(--dark-gray);
}

.opcao-description {
    margin-bottom: 2rem;
}

.opcao-description p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.opcao-servicos {
    flex: 1;
    margin-bottom: 2rem;
}

.servico-grupo {
    margin-bottom: 1.5rem;
}

.servico-grupo h4 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.servico-grupo ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.servico-grupo li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.servico-grupo li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.opcao-investimento {
    background: linear-gradient(135deg, var(--light-beige) 0%, #f9f3e6 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.investimento-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.investimento-valor {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.investimento-tipo {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Resumo Section */
.resumo {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--white) 100%);
}

.tabela-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.tabela-resumo {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.tabela-resumo thead {
    background: var(--gold);
    color: var(--white);
}

.tabela-resumo th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.tabela-resumo td {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.tabela-resumo tbody tr:last-child td {
    border-bottom: none;
}

.tabela-resumo tbody tr:nth-child(odd) {
    background: #f9f9f9;
}

.tabela-resumo tbody tr:hover {
    background: var(--light-beige);
}

.tabela-resumo .valor {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

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

    .nav-menu {
        gap: 1rem;
    }

    .opcoes-grid {
        grid-template-columns: 1fr;
    }

    .opcao-card {
        padding: 1.5rem;
    }

    .tabela-resumo th,
    .tabela-resumo td {
        padding: 1rem;
        font-size: 0.85rem;
    }
}
