:root {
    --primary: #0055A4;
    --primary-dark: #003a75;
    --secondary: #FF6B00;
    --secondary-dark: #e55e00;
    --accent: #00A79D;
    --light: #F8F9FA;
    --dark: #212529;
    --darker: #121416;
    --success: #28A745;
    --danger: #dc3545;
    --warning: #ffc107;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    font-size: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Sections */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    font-size: 1.8rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Author Section */
.author {
    background-color: white;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.author-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    transition: all 0.4s ease;
    border: 4px solid white;
}

.author-image:hover {
    transform: rotate(0);
}

.author-image img {
    width: 100%;
    height: auto;
    display: block;
}

.author-content {
    flex: 1;
}

.author-name {
    color: var(--primary);
    font-size: 1.8rem;
}

.author-title {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: var(--light);
    padding: 12px;
    border-radius: 8px;
    min-width: 110px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Benefits Section */
.benefits {
    background-color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--secondary);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: var(--secondary);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Content Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.content-item {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary);
}

.content-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
}

.content-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 85, 164, 0.05);
    line-height: 1;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.testimonial-text:before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid var(--secondary);
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    border: 4px solid var(--secondary);
}

.pricing-badge {
    position: absolute;
    top: 45px;
    right: -60px;
    background: var(--danger);
    color: white;
    padding: 8px 60px;
    font-weight: 700;
    font-size: 0.95rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 30px;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 35px 30px;
    text-align: center;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin: 20px 0;
}

.old-price {
    font-size: 1.6rem;
    color: #999;
    text-decoration: line-through;
    position: relative;
}

.new-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.price-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.bonus-box {
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
    border: 2px dashed var(--secondary);
}

.bonus-box h4 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-align: center;
}

.bonus-list {
    list-style: none;
}

.bonus-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.bonus-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.6);
}

.btn:active {
    transform: translateY(0);
}

.btn-large {
    font-size: 1.3rem;
    padding: 18px 55px;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.btn i {
    margin-right: 8px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2rem;
    color: #666;
}

.pricing-footer {
    background: var(--darker);
    padding: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.pricing-footer p {
    margin-bottom: 4px;
}

/* Miss Section */
.miss {
    background-color: white;
    text-align: center;
}

.miss h2 {
    color: var(--danger);
    font-size: 1.8rem;
}

.miss-container {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* FAQ */
.faq {
    background-color: var(--light);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    background: var(--primary);
    color: white;
}

.faq-answer {
    padding: 20px;
    display: none;
    background: white;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i:before {
    content: '\f068';
}

/* Footer */
footer {
    background: var(--darker);
    color: white;
    padding: 50px 0 15px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.copyright {
    margin-top: 35px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #aaa;
}

/* Target Audience Section */
.target-audience {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.audience-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.audience-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.audience-image:hover {
    transform: rotate(0);
}

.audience-image img {
    width: 100%;
    height: auto;
    display: block;
}

.audience-content {
    flex: 1;
}

.audience-list {
    list-style: none;
    margin: 30px 0;
}

.audience-list li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.audience-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.6rem;
}

.audience-list strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.audience-cta {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(0, 85, 164, 0.05);
    border-radius: 15px;
    border: 2px dashed var(--primary);
}

.audience-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Estilos para destaque de bônus */
.content-item.bonus-highlight {
    border-left: 4px solid #FF6B00;
    background: linear-gradient(135deg, #fff9f2 0%, #fff 100%);
    position: relative;
    overflow: visible;
    border-top: 4px solid #FF6B00;
}

.bonus-highlight:before {
    background: #FF6B00;
}

.bonus-highlight .content-number {
    color: rgba(255, 107, 0, 0.1);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e63757;
    color: white;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(230, 55, 87, 0.4);
    z-index: 10;
    animation: pulse 1.5s infinite;
}

.bonus-description {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
}

.bonus-description i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #FF6B00;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.bonus-description strong {
    color: #d35400;
}

.bonus-counter {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #FF6B00;
}

.counter-bar {
    height: 25px;
    background: #ffe8d6;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.counter-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #e55e00);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    animation: progressBar 2s ease-in-out;
}

@keyframes progressBar {
    from { width: 0; }
    to { width: 65%; }
}

/* Animations */
@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);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Elemento visual decorativo */
.visual-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-element {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.3);
}

.visual-element i {
    font-size: 3.5rem;
    color: white;
    animation: pulseIcon 2s infinite;
}

.visual-separator p {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    font-size: 1.1rem;
    max-width: 180px;
}

/* Elementos decorativos (brilhos) */
.sparkle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkle 3s infinite;
}

.s1 { width: 15px; height: 15px; top: 15px; right: 20px; animation-delay: 0.5s; }
.s2 { width: 10px; height: 10px; bottom: 25px; left: 15px; animation-delay: 1s; }
.s3 { width: 8px; height: 8px; top: 40px; left: 30px; animation-delay: 1.5s; }

/* Animações */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes sparkle {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0.8; transform: scale(1); }
}

/* Responsividade - esconder em mobile */
@media (max-width: 768px) {
    .visual-separator {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Responsive */
@media (max-width: 992px) {
    .author-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 8px;
    }
    
    .timer-number {
        font-size: 1.6rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .btn-large {
        font-size: 1.2rem;
        padding: 15px 35px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}




/* NOVO HERO SECTION - CSS */
.hero-new {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a4d8e 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
}

.hero-right {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.ebook-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FF6B00, #e55e00);
    color: white;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-new h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.pricing-box {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.price-container {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 10px;
}

.old-price-hero {
    font-size: 1.8rem;
    color: #ddd;
    text-decoration: line-through;
    position: relative;
    opacity: 0.7;
}

.new-price-hero {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255,215,0,0.4);
}

.economy {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 600;
    text-align: center;
}

.payment-methods {
    margin-top: 25px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 2.5rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* Design 3D do ebook */
.ebook-3d {
    position: relative;
    width: 256px;
    height: 400px;
    /* width: 280px;
    height: 380px; */
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) rotateZ(-3deg);
    transform-style: preserve-3d;
    margin: 0 auto;
    animation: floatBook 6s ease-in-out infinite;
}

.ebook-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #0055A4 0%, #003a75 100%); */
    background-image: url("/static/image/capa.png");
    background-size: cover;
    border-radius: 10px 15px 15px 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    transform: translateZ(20px);
    border-right: 5px solid white;
}

.ebook-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ebook-subtitle {
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 30px;
}

.ebook-author {
    font-size: 1.1rem;
    color: white;
    position: absolute;
    bottom: 30px;
    font-style: italic;
}

.ebook-pages {
    position: absolute;
    width: 95%;
    height: 98%;
    background: repeating-linear-gradient(#f1f1f1, #f1f1f1 1px, white 1px, white 20px);
    border-radius: 10px 2px 2px 10px;
    transform: translateX(-5px) translateZ(-5px);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

/* Elementos flutuantes decorativos */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.c1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 30%;
    animation: float 8s infinite ease-in-out;
}

.c2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 20%;
    animation: float 10s infinite ease-in-out;
    animation-delay: 1s;
}

.c3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 10%;
    animation: float 12s infinite ease-in-out;
    animation-delay: 2s;
}

/* Animações */
@keyframes floatBook {
    0% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) rotateZ(-3deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-18deg) rotateX(12deg) rotateZ(-5deg) translateY(-15px); }
    100% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) rotateZ(-3deg) translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-15px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Seção de features no rodapé do hero */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 20px 0;
    background: rgba(0,0,0,0.15);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 15px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-new h1 {
        font-size: 2.2rem;
    }
    
    .new-price-hero {
        font-size: 2.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    /* Melhorias para Target Audience Section */
    .target-audience {
        padding: 50px 0;
    }
    
    .audience-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .audience-image {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .audience-list {
        margin: 20px 0;
    }
    
    .audience-list li {
        margin-bottom: 20px;
        padding-left: 35px;
        text-align: left;
    }
    
    .audience-list li:before {
        font-size: 1.4rem;
    }
    
    .audience-list strong {
        font-size: 1rem;
    }
    
    .audience-cta {
        margin-top: 25px;
        padding: 20px 15px;
    }
    
    .audience-cta p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
