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

:root {
    --bg-dark: #111827;
    --bg-darker: #0a0e1a;
    --indigo: #4f46e5;
    --indigo-light: #6366f1;
    --indigo-dark: #3730a3;
    --text-light: #f9fafb;
    --text-gray: #d1d5db;
    --card-bg: #1f2937;
}

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

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

/* Navbar */
.navbar {
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) translateZ(0);
    }
    50% {
        transform: translateY(-5px) translateZ(0);
    }
}

.play-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
    animation: playGlow 2s ease-in-out infinite;
}

@keyframes playGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(79, 70, 229, 0.9);
        transform: scale(1.05);
    }
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 14px solid white;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 3px;
    animation: playPulse 1.5s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Otimização de performance para animações */
.logo-icon,
.play-circle,
.play-triangle,
.logo-text {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Reduzir animações em dispositivos com preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .logo-icon,
    .play-circle,
    .play-triangle,
    .logo-text {
        animation: none !important;
    }
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--indigo-light) 0%, #818cf8 50%, var(--indigo-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    font-family: 'Consolas', 'Monaco', 'Courier New', 'SF Mono', 'Roboto Mono', monospace;
    text-transform: uppercase;
    animation: textShine 3s linear infinite;
    font-variant-numeric: tabular-nums;
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.portal-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--indigo) 0%, transparent 70%);
    animation: portalExpand 2s ease-out forwards;
    z-index: 0;
}

@keyframes portalExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(10);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
    color: white;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.btn-primary:hover {
    transform: scale(0.95);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--indigo);
}

.btn-secondary:hover {
    background: var(--indigo);
    transform: scale(0.95);
}

.btn-outline {
    background: transparent;
    color: var(--indigo-light);
    border: 2px solid var(--indigo);
}

.btn-outline:hover {
    background: var(--indigo);
    color: white;
    transform: scale(0.95);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-dark {
    background-color: var(--bg-darker);
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Cards */
.card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.3);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.6);
}

.card h3 {
    margin: 1rem 0;
    color: var(--indigo-light);
}

.card p {
    color: var(--text-gray);
}

.card-highlight {
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.card-small {
    padding: 1.5rem;
    text-align: center;
}

.card-small h3 {
    font-size: 1.1rem;
}

.card-small p {
    font-size: 0.9rem;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Icons CSS */
.icon-check, .icon-star, .icon-zap, .icon-shield, .icon-play, .icon-device, .icon-rocket,
.icon-signal, .icon-globe, .icon-update, .icon-config, .icon-calendar, .icon-badge,
.icon-tv, .icon-film, .icon-sports, .icon-kids, .icon-news, .icon-music, .icon-doc, .icon-world {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.icon-check::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 15px;
    border-left: 4px solid var(--indigo-light);
    border-bottom: 4px solid var(--indigo-light);
    transform: rotate(-45deg);
    top: 15px;
    left: 15px;
}

.icon-check-small {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.icon-check-small::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-left: 3px solid var(--indigo-light);
    border-bottom: 3px solid var(--indigo-light);
    transform: rotate(-45deg);
    top: 5px;
    left: 4px;
}

.icon-star::before {
    content: '★';
    font-size: 50px;
    color: var(--indigo-light);
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-zap::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--indigo-light);
    top: 10px;
    left: 15px;
}

.icon-zap::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid var(--indigo-light);
    top: 20px;
    left: 30px;
}

.icon-shield::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    border: 4px solid var(--indigo-light);
    border-radius: 5px 5px 20px 20px;
    top: 5px;
    left: 10px;
}

.icon-play::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 35px solid var(--indigo-light);
    top: 10px;
    left: 15px;
}

.icon-device::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 45px;
    border: 3px solid var(--indigo-light);
    border-radius: 5px;
    top: 7px;
    left: 12px;
}

.icon-device::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: var(--indigo-light);
    bottom: 12px;
    left: 22px;
}

.icon-rocket::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 40px;
    background: var(--indigo-light);
    border-radius: 10px 10px 0 0;
    top: 5px;
    left: 20px;
}

.icon-rocket::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--indigo-light);
    bottom: 5px;
    left: 20px;
}

.icon-signal::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 20px;
    background: var(--indigo-light);
    bottom: 15px;
    left: 10px;
}

.icon-signal::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 35px;
    background: var(--indigo-light);
    bottom: 15px;
    left: 25px;
    box-shadow: 15px 0 0 var(--indigo-light);
}

.icon-globe::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border: 4px solid var(--indigo-light);
    border-radius: 50%;
    top: 7px;
    left: 7px;
}

.icon-globe::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 45px;
    border: 4px solid var(--indigo-light);
    border-radius: 50%;
    top: 7px;
    left: 17px;
}

.icon-update::before {
    content: '↻';
    font-size: 45px;
    color: var(--indigo-light);
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.icon-config::before {
    content: '⚙';
    font-size: 50px;
    color: var(--indigo-light);
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-calendar::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 35px;
    border: 3px solid var(--indigo-light);
    border-radius: 5px;
    top: 15px;
    left: 10px;
}

.icon-calendar::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--indigo-light);
    top: 25px;
    left: 10px;
}

.icon-badge::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid var(--indigo-light);
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.icon-badge::after {
    content: '✓';
    font-size: 35px;
    color: var(--indigo-light);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.icon-tv::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 35px;
    border: 3px solid var(--indigo-light);
    border-radius: 5px;
    top: 10px;
    left: 7px;
}

.icon-tv::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 8px;
    border: 3px solid var(--indigo-light);
    border-top: none;
    bottom: 5px;
    left: 20px;
}

.icon-film::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    border: 3px solid var(--indigo-light);
    border-radius: 3px;
    top: 5px;
    left: 10px;
}

.icon-film::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid var(--indigo-light);
    top: 24px;
    left: 20px;
}

.icon-sports::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border: 4px solid var(--indigo-light);
    border-radius: 50%;
    top: 7px;
    left: 7px;
}

.icon-sports::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--indigo-light);
    border-radius: 50%;
    top: 20px;
    left: 20px;
}

.icon-kids::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 35px;
    background: var(--indigo-light);
    border-radius: 50% 50% 45% 45%;
    top: 15px;
    left: 17px;
}

.icon-kids::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--indigo-light);
    top: 5px;
    left: 29px;
}

.icon-news::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    border: 3px solid var(--indigo-light);
    border-radius: 3px;
    top: 5px;
    left: 10px;
}

.icon-news::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--indigo-light);
    top: 15px;
    left: 17px;
    box-shadow: 0 8px 0 var(--indigo-light), 0 16px 0 var(--indigo-light);
}

.icon-music::before {
    content: '♪';
    font-size: 50px;
    color: var(--indigo-light);
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.icon-doc::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 45px;
    border: 3px solid var(--indigo-light);
    border-radius: 3px;
    top: 7px;
    left: 12px;
}

.icon-doc::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--indigo-light);
    top: 20px;
    left: 20px;
    box-shadow: 0 6px 0 var(--indigo-light), 0 12px 0 var(--indigo-light);
}

.icon-world::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border: 4px solid var(--indigo-light);
    border-radius: 50%;
    top: 7px;
    left: 7px;
}

.icon-world::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 45px;
    background: var(--indigo-light);
    top: 7px;
    left: 29px;
    box-shadow: -10px 0 0 var(--indigo-light), 10px 0 0 var(--indigo-light);
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
}

.timeline-content h3 {
    color: var(--indigo-light);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-featured {
    border: 2px solid var(--indigo);
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.6);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(79, 70, 229, 0.3);
}

.pricing-icon {
    margin: 1rem auto;
}

.pricing-body {
    flex: 1;
    padding: 1.5rem 0;
}

.discount-badge {
    background: var(--indigo);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-description {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.pricing-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(79, 70, 229, 0.3);
    text-align: center;
}

/* Guarantee Box */
.guarantee-box {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.4);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.guarantee-content h3 {
    color: var(--indigo-light);
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.3);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-card h3 {
    font-size: 1rem;
    color: var(--indigo-light);
    margin-bottom: 0.8rem;
}

.review-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: rgba(79, 70, 229, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #a5b4fc;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--indigo-light);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.cta-box {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(79, 70, 229, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copy {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        padding: 2rem;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
}
