/* ============================================
   AFILIADOS INTELIGENTES - CSS GLOBAL
   Arquivo CSS centralizado para todas as LPs
   ============================================ */

/* ===========================
   RESET & ROOT VARIABLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais (Shopee/Afiliados) */
    --primary: #ee4d2d;
    --secondary: #f69113;
    
    /* Cores gerais */
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f5f5f5;
    --success: #00b894;
    
    /* Cores específicas por produto */
    --convites-primary: #667eea;
    --convites-secondary: #764ba2;
    --disparos-primary: #f093fb;
    --disparos-secondary: #f5576c;
    --whatsapp: #25d366;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(238, 77, 45, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 77, 45, 0.4);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    color: white;
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.preview-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.preview-content {
    display: grid;
    gap: 1rem;
}

.preview-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1.5rem;
    border-radius: 12px;
    color: white;
}

.preview-card h4 {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.preview-card h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* Hero badges */
.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge i {
    color: var(--secondary);
}

.coming-soon-banner {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.product-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-card .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    padding: 100px 2rem;
    background: white;
}

.features-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: background 0.3s;
}

.feature-item:hover {
    background: var(--bg-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(238, 77, 45, 0.1), rgba(246, 145, 19, 0.1));
    color: var(--primary);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: white;
}

.feature-card .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.benefits-visual {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.metric-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.metric-box h4 {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.metric-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list i {
    color: var(--success);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefits-list h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefits-list p {
    color: var(--text-light);
}

/* ===========================
   CHANNELS SECTION (Disparos)
   =========================== */
.channels {
    padding: 100px 2rem;
    background: white;
}

.channels-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.channel-card {
    background: white;
    border: 3px solid #e8e8e8;
    padding: 3rem;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.channel-card.whatsapp:hover {
    border-color: var(--whatsapp);
}

.channel-card.email:hover {
    border-color: #0078d4;
}

.channel-card.sms:hover {
    border-color: #ff6b6b;
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.channel-card.whatsapp .channel-icon {
    background: linear-gradient(135deg, var(--whatsapp), #128c7e);
}

.channel-card.email .channel-icon {
    background: linear-gradient(135deg, #0078d4, #0063b1);
}

.channel-card.sms .channel-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.channel-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.channel-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.channel-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.channel-features i {
    color: var(--success);
    font-size: 1.1rem;
}

/* ===========================
   USE CASES SECTION (Convites)
   =========================== */
.use-cases {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.use-cases-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.use-case-card:hover {
    transform: translateY(-10px);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.use-case-card ul {
    list-style: none;
    color: var(--text-light);
}

.use-case-card ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.use-case-card ul li i {
    color: var(--primary);
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    padding: 100px 2rem;
    background: white;
}

.pricing-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 3rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--dark-light), var(--dark));
    color: white;
    border-color: var(--primary);
    position: relative;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-card .period {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.pricing-card.featured .pricing-features i {
    color: var(--secondary);
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 77, 45, 0.4);
}

.pricing-card.featured .pricing-button {
    background: white;
    color: var(--primary);
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    color: white;
}

.steps-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(238, 77, 45, 0.3);
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 100px 2rem;
    background: white;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem 3rem;
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(238, 77, 45, 0.3);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 3rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-visual {
        display: none;
    }

    .products-grid,
    .features-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

.dashboard-preview {
    animation: float 6s ease-in-out infinite;
}

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

.product-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-card:nth-child(1) { 
    animation-delay: 0.1s; 
}

.product-card:nth-child(2) { 
    animation-delay: 0.2s; 
}

.product-card:nth-child(3) { 
    animation-delay: 0.3s; 
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* ===========================
   VARIAÇÕES POR PRODUTO
   =========================== */

/* Página: Convites Inteligentes */
body.convites-page {
    --primary: var(--convites-primary);
    --secondary: var(--convites-secondary);
}

body.convites-page .cta-button,
body.convites-page .step-number,
body.convites-page .pricing-button,
body.convites-page .pricing-badge {
    background: linear-gradient(135deg, var(--convites-primary), var(--convites-secondary));
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

body.convites-page .logo {
    color: var(--convites-primary);
}

body.convites-page .coming-soon-banner {
    background: linear-gradient(135deg, var(--whatsapp), #128c7e);
}

/* Página: Disparos Inteligentes */
body.disparos-page {
    --primary: var(--disparos-primary);
    --secondary: var(--disparos-secondary);
}

body.disparos-page .cta-button,
body.disparos-page .step-number,
body.disparos-page .pricing-button,
body.disparos-page .pricing-badge {
    background: linear-gradient(135deg, var(--disparos-primary), var(--disparos-secondary));
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

body.disparos-page .logo {
    color: var(--disparos-primary);
}

body.disparos-page .coming-soon-banner {
    background: linear-gradient(135deg, var(--whatsapp), #128c7e);
}

/* Página: Campanhas Inteligentes (Hero centralizado) */
body.campanhas-page .hero {
    padding: 120px 2rem;
}

body.campanhas-page .hero::before {
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    clip-path: none;
}

body.campanhas-page .hero-container {
    text-align: center;
    grid-template-columns: 1fr;
}

body.campanhas-page .hero h1 {
    font-size: 4rem;
}

body.campanhas-page .hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
