/* =========================================
   BASE STYLES & VARIABLES
========================================= */
:root {
    --primary: #4CAF50;
    --primary-dark: #2E7D32;
    --primary-light: #E8F5E9;
    --accent: #FF9800;
    --accent-hover: #F57C00;
    --text-dark: #2C3E50;
    --text-light: #546E7A;
    --bg-light: #F9FAF8;
    --bg-white: #FFFFFF;
    --danger: #E53935;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 10px 30px rgba(76, 175, 80, 0.4);

    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
}

.highlight-red {
    color: var(--danger);
}

.highlight-yellow {
    color: #FFC107;
}

.text-white {
    color: var(--bg-white) !important;
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* =========================================
   UTILITIES
========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin-top: 16px;
    border-radius: 2px;
}

.divider.center {
    margin: 16px auto 0;
}

.divider.border-white {
    background: var(--bg-white);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.rounded-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}

.rounded-circle {
    border-radius: 50%;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    aspect-ratio: 1;
}

.border-green {
    border: 6px solid var(--primary-light);
}

.glass-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.dark-bg {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.mt-5 {
    margin-top: 40px;
}

/* =========================================
   BUTTONS
========================================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 15px rgba(255, 152, 0, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 152, 0, 0.4);
}

.cta-button.secondary {
    background: var(--primary);
    box-shadow: 0 8px 15px rgba(76, 175, 80, 0.3);
}

.cta-button.secondary:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 25px rgba(76, 175, 80, 0.4);
}

.checkout-btn {
    width: 100%;
    font-size: 1.5rem;
    padding: 24px;
    background: #00C853;
    /* Vibrant green for checkout */
    box-shadow: 0 8px 15px rgba(0, 200, 83, 0.4);
}

.checkout-btn:hover {
    background: #00B248;
    box-shadow: 0 15px 25px rgba(0, 200, 83, 0.5);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 152, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* =========================================
   TOP BAR
========================================= */
.top-bar {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-bar p {
    color: white;
    margin: 0;
}

.top-bar i {
    color: #A5D6A7;
    margin-right: 5px;
    vertical-align: middle;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    padding: 80px 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23E8F5E9" opacity="0.5"/></svg>') top left / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 1;
}

.hero-title-img {
    max-width: 100%;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.floating-img {
    width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   FEATURES (O que vai encontrar)
========================================= */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list ul {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.features-list i {
    font-size: 2rem;
    color: var(--primary);
}

/* =========================================
   CARDS GALLERY (Algumas saladas)
========================================= */
.gallery {
    padding: 100px 0;
    background: var(--bg-white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.salad-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.salad-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
    position: relative;
    padding-top: 120%;
    /* Ratio */
    overflow: hidden;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.salad-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
    letter-spacing: 0.5px;
    border: 2px solid white;
}

.card-content {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* =========================================
   SHOWCASE
========================================= */
.showcase {
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
}

.showcase-main {
    transform: scale(1.1);
    z-index: 2;
}

.hover-zoom {
    transition: transform 0.4s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
    z-index: 3;
}

/* =========================================
   VIDEO SECTION
========================================= */
.video-preview {
    padding: 100px 0;
}

.video-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   BONUSES
========================================= */
.bonuses {
    padding: 100px 0;
    background: var(--bg-white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.bonus-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 10px;
    border-radius: var(--radius-lg);
}

.bonus-info {
    padding: 30px 20px;
}

.bonus-title {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.bonus-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.bonus-info h3 span {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-light);
}

.price-strike {
    text-decoration: line-through;
    color: #9E9E9E;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-free {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

/* =========================================
   PAIN POINTS
========================================= */
.pain-points {
    padding: 80px 0;
}

.pain-list {
    list-style: none;
    max-width: 700px;
    margin: 40px auto 0;
}

.pain-list li {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 16px 24px;
    margin-bottom: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.pain-list li:hover {
    transform: translateX(10px);
}

.pain-icon {
    font-size: 2rem;
    color: var(--danger);
}

/* =========================================
   OFFER / PRICING
========================================= */
.offer {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, #E8F5E9 100%);
}

.checkout-container {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #E0E0E0;
    position: relative;
    box-shadow: var(--shadow-md);
}

.checkout-header-badge {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.plan-selector {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
}

.plan-box {
    flex: 1;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: #FAFAFA;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.plan-box:hover {
    border-color: #BDBDBD;
}

.plan-box.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.plan-box.active.premium {
    border-color: var(--accent);
    background: #FFF3E0;
}

.radio-indicator {
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #BDBDBD;
    position: relative;
    margin-top: 5px;
}

.plan-box.active .radio-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.plan-box.active.premium .radio-indicator::after {
    background: var(--accent);
}

.plan-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.plan-box.premium .plan-price {
    color: var(--accent-hover);
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #9E9E9E;
    margin-left: 8px;
    font-weight: normal;
}

.pricing-features {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    font-size: 0.9rem;
    white-space: nowrap;
}

.offer-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.offer-features li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-features i {
    color: var(--primary);
    background: var(--primary-light);
    padding: 8px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.disabled {
    opacity: 0.5;
}

.disabled i {
    color: var(--danger) !important;
    background: rgba(229, 57, 53, 0.1) !important;
}

.pricing {
    background: #FAFAFA;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 30px;
    border: 2px dashed #E0E0E0;
}

.price-old {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-installment {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.price-installment span {
    font-size: 4rem;
    color: var(--primary-dark);
    line-height: 1;
}

.price-cash {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.scarcity {
    text-align: center;
    color: var(--danger);
    font-weight: 700;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.offer-image img {
    width: 100%;
    transform: scale(1.1);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

.dark-pricing {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.basic-btn {
    background: #607D8B;
    box-shadow: 0 8px 15px rgba(96, 125, 139, 0.4);
}

.basic-btn:hover {
    background: #455A64;
    box-shadow: 0 15px 25px rgba(96, 125, 139, 0.5);
}

/* =========================================
   MODAL
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    border: 4px solid var(--accent);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1.1rem;
    color: var(--danger);
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-body p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.modal-pricing {
    background: #FFF3E0;
    border-color: #FFE0B2;
}

.modal-btn {
    background: var(--accent);
    margin-top: 10px;
    font-size: 1.1rem;
}

.decline-offer {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s;
}

.decline-offer:hover {
    color: var(--text-dark);
}

/* =========================================
   AUTHORITY
========================================= */
.authority {
    padding: 100px 0;
    background: var(--bg-white);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.authority-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.authority-text {
    flex: 1;
}

.authority-text p {
    font-size: 1.25rem;
    margin-top: 30px;
}

/* =========================================
   TESTIMONIALS (Swiper)
========================================= */
.testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    padding: 40px 10px 80px;
    margin-top: 30px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.3s;
}

.swiper-slide img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.swiper-slide-active {
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent) !important;
}

/* =========================================
   FAQ
========================================= */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    /* remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-light);
    font-size: 1.1rem;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 60px 0;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 15px;
    color: #888;
}

.security-badges {
    margin-top: 30px;
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* =========================================
   ANIMATIONS (Intersection Observer)
========================================= */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(-20deg);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-20deg);
}

[data-aos="flip-right"] {
    transform: perspective(1000px) rotateY(20deg);
}

.aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0) !important;
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {

    .features-grid,
    .hero-content,
    .offer-box,
    .flex-row {
        gap: 40px;
    }

    .offer-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {

    .hero-content,
    .features-grid,
    .offer-box,
    .pricing-cards,
    .flex-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-card.premium {
        transform: scale(1);
    }

    .pricing-cards {
        gap: 60px;
    }

    .hero {
        padding: 40px 0 80px;
    }

    .hero-subtitle {
        margin-bottom: 30px;
    }

    .features-list ul {
        text-align: left;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-main {
        transform: scale(1);
        order: -1;
        /* Bring main image to top on mobile */
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .checkout-container {
        padding: 25px 15px;
    }

    .plan-selector {
        flex-direction: row;
        /* Forçar lado a lado no mobile = 'um ao lado do outro' */
        gap: 10px;
    }

    .plan-box {
        padding: 15px 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .radio-indicator {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .plan-info h4 {
        font-size: 0.9rem;
    }

    .plan-desc {
        font-size: 0.75rem;
    }

    .plan-price {
        font-size: 1.1rem;
        display: flex;
        flex-direction: column;
    }

    .old-price {
        margin-left: 0;
        margin-top: 5px;
    }

    .popular-badge {
        font-size: 0.70rem;
        padding: 4px 10px;
        top: -12px;
    }

    .pricing {
        padding: 20px;
    }

    .price-installment span {
        font-size: 3rem;
    }

    .authority-image {
        order: -1;
    }

    h2 {
        font-size: 2.2rem;
    }

    .cta-button {
        width: 100%;
        padding: 16px 20px;
    }
}