/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #17fa2c;
    --primary-green-hover: #0049ff;
    --dark-bg: #000000;
    --dark-bg-2: #0a0a0a;
    --dark-bg-3: #1a1a1a;
    --light-bg: #ffffff;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #000000;
    --gold: #FFD700;
}

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

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

/* Barra de Urgência */
.urgency-bar {
    background: #EC2222;
    color: var(--text-white);
    text-align: center;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .urgency-bar {
        font-size: 22px;
        padding: 18px 2px;
        line-height: 1.4;
    }
}

/* Hero VSL */
.hero-vsl {
    background: var(--dark-bg);
    padding: 40px 20px;
    text-align: center;
}

.vsl-wrapper {
    max-width: 1080px;
    margin: 0 auto 30px;
}

.vsl-container {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 para vídeo vertical */
    height: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 50px rgba(23, 250, 44, 0.3);
}

/* Ajuste para desktop - limita a altura */
@media (min-width: 769px) {
    .vsl-wrapper {
        max-width: 600px; /* Limita largura no desktop */
    }

    .vsl-container {
        max-height: 80vh; /* Máximo 80% da altura da tela */
        padding-bottom: 0;
        height: 80vh;
    }
}

.vsl-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* VSL Player */
.vsl-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.vsl-player::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.vsl-player::-webkit-media-controls-play-button,
.vsl-player::-webkit-media-controls-current-time-display,
.vsl-player::-webkit-media-controls-time-remaining-display {
    color: var(--primary-green);
}

/* Botões CTA */
.cta-primary,
.cta-secondary,
.cta-checkout {
    display: inline-block;
    background: var(--primary-green);
    color: var(--text-dark);
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.75), 0 4px 1px rgba(23, 250, 44, 0.5);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    animation: pulse 1.2s ease-in-out infinite;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-checkout:hover {
    background: var(--primary-green-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.75), 0 6px 2px rgba(0, 73, 255, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.75), 0 0 20px rgba(23, 250, 44, 0.6);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.75), 0 0 40px rgba(23, 250, 44, 1);
    }
}

/* Título Principal */
.main-title {
    background: var(--dark-bg);
    padding: 40px 20px 20px;
    text-align: center;
}

.main-title h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Seção de Resultados */
.results-section {
    background: var(--dark-bg-2);
    padding: 60px 20px;
}

.results-section h2 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    text-transform: uppercase;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.result-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-image:hover {
    transform: scale(1.05);
}

.result-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.results-cta-text {
    text-align: center;
    font-size: clamp(16px, 3vw, 20px);
    margin: 40px auto;
    max-width: 900px;
    line-height: 1.6;
}

.cta-secondary {
    display: block;
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
}

/* Seção de Benefícios */
.benefits-section {
    background: var(--dark-bg);
    padding: 60px 20px;
}

.benefits-section h2 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-gray);
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--dark-bg-2);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(23, 250, 44, 0.2);
}

.benefit-item.bonus {
    border: 2px solid var(--primary-green);
}

.benefit-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.benefit-content h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-green);
    text-transform: uppercase;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.bonus-price {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #ff4444;
}

.new-price {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 800;
}

/* Seção Por Que */
.why-section {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 60px 20px;
}

.why-section h2 {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.why-content p {
    margin-bottom: 20px;
}

/* Resumo da Oferta */
.offer-summary {
    background: var(--dark-bg-2);
    padding: 60px 20px;
    text-align: center;
}

.offer-summary h2 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.summary-images {
    margin: 40px 0;
}

.summary-images img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Seção de Preço */
.price-section {
    background: var(--dark-bg);
    padding: 60px 20px;
}

.price-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-bg-2) 0%, var(--dark-bg-3) 100%);
    border: 3px solid var(--primary-green);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(23, 250, 44, 0.3);
}

.price-box h2 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.price-content {
    margin: 30px 0;
}

.price-installments {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.price-value {
    font-size: clamp(48px, 10vw, 72px);
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin: 10px 0;
}

.price-cents {
    font-size: 0.6em;
}

.price-total {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 10px;
}

.cta-checkout {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    display: block;
    font-size: 20px;
    padding: 22px 40px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.security-badge {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 20px;
}

/* Garantias */
.guarantee-section {
    background: var(--light-bg);
    padding: 60px 20px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.guarantee-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.guarantee-card.green {
    border: 3px solid var(--primary-green);
}

.guarantee-card.gold {
    border: 3px solid var(--gold);
}

.guarantee-icon {
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.guarantee-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

/* Seção do Criador */
.creator-section {
    background: var(--dark-bg-2);
    padding: 60px 20px;
}

.creator-card {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: var(--dark-bg-3);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--primary-green);
}

.creator-image {
    border-radius: 15px;
    overflow: hidden;
}

.creator-image img {
    width: 100%;
    height: auto;
    display: block;
}

.creator-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.creator-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-gray);
}

/* FAQ */
.faq-section {
    background: var(--dark-bg);
    padding: 60px 20px;
}

.faq-section h2 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg-2);
    border: 2px solid rgba(23, 250, 44, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(23, 250, 44, 0.1);
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 3px solid var(--primary-green);
    padding: 50px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-links span {
    color: var(--text-gray);
}

.footer-cnpj {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 30px auto;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-gray);
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 14px;
    margin-top: 30px;
    color: var(--text-gray);
}

/* Responsivo */
@media (max-width: 1024px) {
    .benefit-item,
    .creator-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .urgency-bar {
        font-size: 12px;
        padding: 10px 15px;
    }

    .vsl-container {
        padding-bottom: 177.78%; /* Mantém proporção vertical no mobile */
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-item {
        padding: 20px;
        margin-bottom: 30px;
    }

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

    .price-box {
        padding: 40px 25px;
    }

    .cta-primary,
    .cta-secondary,
    .cta-checkout {
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 48px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-methods img {
        height: 30px;
    }

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

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Estilos para seção de preço customizada */
.price-title-total {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 800;
}

.price-old-value {
    color: #ec2222;
}

.price-installment-text {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.price-big-value {
    font-size: 120px;
}

.price-cents-big {
    font-size: 60px;
    vertical-align: super;
}

.price-cash-text {
    font-size: 32px;
    margin-top: 20px;
    font-weight: 700;
}

.price-cash-value {
    color: #17fa2c;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .price-title-total {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .price-installment-text {
        font-size: 28px;
    }

    .price-big-value {
        font-size: 70px;
    }

    .price-cents-big {
        font-size: 35px;
    }

    .price-cash-text {
        font-size: 20px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .price-title-total {
        font-size: 16px;
    }

    .price-installment-text {
        font-size: 24px;
    }

    .price-big-value {
        font-size: 60px;
    }

    .price-cents-big {
        font-size: 30px;
    }

    .price-cash-text {
        font-size: 18px;
    }
}


/* Reduzir espaço entre box de benefícios e card de preço */
.offer-summary {
    padding-bottom: 20px;
}

.price-section {
    padding-top: 20px;
}

/* Cards de garantia melhorados */
.guarantee-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.guarantee-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.8;
}

.guarantee-card.green::before {
    color: #17fa2c;
}

.guarantee-card.gold::before {
    color: #FFD700;
}

.guarantee-card.green {
    border: 4px solid #17fa2c;
    box-shadow: 0 20px 60px rgba(23, 250, 44, 0.3), 0 0 40px rgba(23, 250, 44, 0.2);
}

.guarantee-card.gold {
    border: 4px solid #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.2);
}

.guarantee-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.guarantee-card.green:hover {
    box-shadow: 0 25px 70px rgba(23, 250, 44, 0.4), 0 0 50px rgba(23, 250, 44, 0.3);
}

.guarantee-card.gold:hover {
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4), 0 0 50px rgba(255, 215, 0, 0.3);
}

.guarantee-icon {
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.guarantee-icon svg {
    width: 120px;
    height: 120px;
}

.guarantee-card h3 {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.guarantee-card.green h3 {
    color: #17fa2c;
}

.guarantee-card.gold h3 {
    color: #FFD700;
}

.guarantee-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 18px;
}

.guarantee-card p strong {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.guarantee-card.green p strong {
    color: #17fa2c;
}

.guarantee-card.gold p strong {
    color: #FFD700;
}

@media (max-width: 768px) {
    .guarantee-card {
        padding: 35px 25px;
    }

    .guarantee-icon svg {
        width: 100px;
        height: 100px;
    }

    .guarantee-card h3 {
        font-size: 22px;
    }

    .guarantee-card p {
        font-size: 15px;
    }
}

/* Tornar imagens dos ícones de garantia responsivas */
.guarantee-icon img {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .guarantee-icon img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .guarantee-icon img {
        max-width: 100px;
    }
}

/* Diminuir tamanho do aviso legal */
.footer-disclaimer {
    font-size: 11px !important;
    line-height: 1.6 !important;
}

.footer-disclaimer p {
    margin-bottom: 12px !important;
}

/* Diminuir MUITO MAIS o aviso legal */
.footer-disclaimer {
    font-size: 9px !important;
    line-height: 1.4 !important;
    max-width: 800px !important;
}

.footer-disclaimer p {
    margin-bottom: 8px !important;
}

.footer-disclaimer strong {
    font-size: 9px !important;
}

/* Diminuir ao MÍNIMO o aviso legal */
.footer-disclaimer {
    font-size: 7px !important;
    line-height: 1.3 !important;
    max-width: 700px !important;
    opacity: 0.8 !important;
}

.footer-disclaimer p {
    margin-bottom: 6px !important;
}

.footer-disclaimer strong {
    font-size: 7px !important;
}

/* Diminuir termos e privacidade no mobile */
@media (max-width: 768px) {
    .footer-links {
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 11px;
    }
    
    .footer-links span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-links a {
        font-size: 10px;
    }
    
    .footer-links span {
        font-size: 10px;
    }
}

/* Diminuir tamanho do CNPJ */
.footer-cnpj {
    font-size: 10px !important;
    opacity: 0.7;
}

/* Botão da primeira dobra acima do player VTurb */
.hero-vsl .esconder {
    position: relative;
    z-index: 10;
    margin-top: 20px;
}

/* Copy acima do vídeo */
.hero-copy {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.hero-headline {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    text-transform: none;
}

.highlight-text {
    color: #17fa2c;
    display: block;
    margin-bottom: 10px;
}

.underline-text {
    text-decoration: underline;
    text-decoration-color: #17fa2c;
    text-underline-offset: 5px;
    display: inline-block;
}

.hero-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-copy {
        margin-bottom: 30px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .hero-subtext {
        font-size: 16px;
    }
}

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

    .hero-subtext {
        font-size: 14px;
    }
}

/* Ajustar copy para ficar mais compacta */
.hero-copy {
    margin-bottom: 25px !important;
    padding: 0 15px !important;
}

.hero-headline {
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
}

.highlight-text {
    margin-bottom: 5px !important;
    font-size: 22px !important;
}

.underline-text {
    font-size: 22px !important;
    text-underline-offset: 3px !important;
}

.hero-subtext {
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 800px !important;
}

@media (max-width: 768px) {
    .hero-copy {
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }

    .hero-headline {
        font-size: 18px !important;
    }

    .highlight-text {
        font-size: 18px !important;
    }

    .underline-text {
        font-size: 18px !important;
    }

    .hero-subtext {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 16px !important;
    }

    .highlight-text {
        font-size: 16px !important;
    }

    .underline-text {
        font-size: 16px !important;
    }

    .hero-subtext {
        font-size: 12px !important;
    }
}
