/* ===== VARIÁVEIS DE CORES ===== */
:root {
    --primary-dark: #1e3a5f;
    --primary-light: #2d5a8c;
    --accent-gold: #f59e0b;
    --accent-light: #fcd34d;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
}

/* ===== RESET E ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===== HEADER ===== */
.sticky-header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo {
    height: 40px;
    width: auto;
}

.navbar {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* ===== BOTÕES ===== */
.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-primary.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    padding: 10px 20px;
    border: 2px solid var(--primary-dark);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.btn-secondary.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 40px 20px;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-categorias,
.section-salas,
.section-planos,
.section-incluso,
.section-social-proof,
.section-faq,
.section-urgency {
    animation: fadeInUp 0.6s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--accent-gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.highlight-value {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.highlight-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-light);
}

/* ===== SEÇÕES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

section {
    padding: 60px 20px;
}

/* ===== SEÇÃO VALOR ===== */
.section-valor {
    background: var(--bg-light);
}

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

.valor-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.valor-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 18px;
}

.valor-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== COMPARATIVO VISUAL ===== */
.comparativo-section {
    background: var(--bg-white);
    padding: 60px 20px;
}

.comparativo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.comparativo-item {
    text-align: center;
}

.comparativo-item h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.comparativo-item ul {
    list-style: none;
    text-align: left;
}

.comparativo-item li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.comparativo-item li:last-child {
    border-bottom: none;
}

.comparativo-item li::before {
    content: "✓ ";
    color: var(--success);
    font-weight: 700;
    margin-right: 8px;
}

/* ===== SEÇÃO CATEGORIAS ===== */
.section-categorias {
    background: var(--bg-white);
}

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

.categoria-card {
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.categoria-card.office {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
}

.categoria-card.premium {
    border-left-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 100%);
    border: 2px solid var(--accent-gold);
    position: relative;
}

.categoria-card.premium::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.categoria-card.signature {
    border-left-color: #ec4899;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, transparent 100%);
}

.categoria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-left-width: 6px;
}

.categoria-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.categoria-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.categoria-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.categoria-features {
    list-style: none;
}

.categoria-features li {
    color: var(--text-light);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.categoria-features li:last-child {
    border-bottom: none;
}

/* ===== SEÇÃO SALAS ===== */
.section-salas {
    background: var(--bg-light);
}

.salas-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.salas-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.salas-table thead {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.salas-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.salas-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.salas-table tbody tr:hover {
    background: var(--bg-light);
}

.salas-table tr.office td:first-child {
    color: #3b82f6;
    font-weight: 600;
}

.salas-table tr.premium td:first-child {
    color: var(--accent-gold);
    font-weight: 600;
}

.salas-table tr.signature td:first-child {
    color: #ec4899;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 8px;
    color: var(--bg-white);
}

.cta-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* ===== SEÇÃO PLANOS ===== */
.section-planos {
    background: var(--bg-white);
}

.planos-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-dark);
}

.tab-btn:hover {
    border-color: var(--accent-gold);
}

.tab-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.planos-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.planos-table thead {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.planos-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.planos-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}

.planos-table tbody tr:hover {
    background: var(--bg-light);
}

.planos-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.planos-info h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.planos-info ul {
    list-style: none;
}

.planos-info li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 14px;
}

/* ===== SEÇÃO INCLUSO ===== */
.section-incluso {
    background: var(--bg-light);
}

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

.incluso-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.incluso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.incluso-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.incluso-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 16px;
}

.incluso-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== SOCIAL PROOF ===== */
.section-social-proof {
    background: var(--bg-white);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.proof-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.proof-text {
    color: var(--text-dark);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.proof-author {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

/* ===== GARANTIA / RISCO REVERSO ===== */
.garantia-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.garantia-banner h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.garantia-banner p {
    font-size: 14px;
    opacity: 0.95;
}

/* ===== FAQ ===== */
.section-faq {
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 18px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 15px;
    transition: all 0.3s;
    gap: 15px;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

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

.faq-answer {
    display: none;
    padding: 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ===== URGENCY SECTION ===== */
.section-urgency {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 60px 20px;
}

.section-urgency h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-urgency p {
    font-size: 18px;
    margin-bottom: 30px;
}

.section-urgency strong {
    color: var(--accent-light);
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 40px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section a {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .sticky-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .salas-table-wrapper {
        display: none;
    }

    .salas-table {
        font-size: 12px;
    }

    .salas-table th,
    .salas-table td {
        padding: 10px;
    }

    .planos-tabs {
        gap: 5px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .social-proof-stats {
        grid-template-columns: 1fr;
    }

    .categorias-grid,
    .incluso-grid,
    .valor-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .btn-primary.btn-large,
    .btn-secondary.btn-large {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .navbar {
        gap: 5px;
    }

    .nav-link {
        display: none;
    }

    .navbar .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }

    section {
        padding: 40px 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .salas-table-wrapper {
        margin-bottom: 20px;
    }

    .cta-section {
        padding: 20px;
    }
}
