:root {
    --bg-color: #0b0f19;
    --primary: #c9933f; /* Tom dourado premium country */
    --primary-glow: rgba(201, 147, 63, 0.4);
    --surface: rgba(25, 30, 45, 0.6);
    --surface-border: rgba(255, 255, 255, 0.08);
    --text: #f0f0f0;
    --text-muted: #a0a5b5;
}

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

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

/* Fundo Animado com Gradientes Suaves */
.background-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 15% 50%, rgba(201, 147, 63, 0.05), transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(50, 60, 90, 0.1), transparent 40%);
    z-index: -1;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
}

/* Utilitários Glassmorphism */
.glass-panel {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

/* Header */
.header {
    padding: 20px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.9) 0%, transparent 100%);
}

/* Hero Section */
.hero {
    margin-top: 20px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 147, 63, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-image-wrapper {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--surface-border);
}

.hero-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Botões */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--primary-glow);
    background: #d8a24e;
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 16px 32px;
    border-radius: 50px;
    border: 1px solid var(--surface-border);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 90%;
    word-wrap: break-word;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Features */
.features {
    margin: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Galeria */
.gallery {
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    object-fit: cover;
}

/* Pricing */
.pricing {
    margin: 60px 0;
}

.pricing-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.pricing-card.highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), #fff);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.period {
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.agent-info {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px dashed var(--surface-border);
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.pricing-card .btn-primary {
    display: block;
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(201, 147, 63, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 147, 63, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Vídeo Responsivo */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Responsividade / Desktop Mínimo */
@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card {
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}
