/* ==========================================
   KIT ESTRATÉGICO PARA EDUCADORES CRISTÃOS
   Color Theme: Purple (#6C3FA0), Gold (#D4A843),
   Deep Purple (#2D1B4E), Warm White (#FFF9F0)
   ========================================== */

/* Global Styles */
:root {
    --primary-gold: #D4A017;
    --deep-brown: #3E2723;
    --warm-cream: #FEF9E7;
    --accent-gold: #F5C518;
    --accent-gold-dark: #B88A14;
    --dark-bg: #4E342E;
    --text-white: #FFFFFF;
    --warm-white: #FFFCEC;
    --cta-gold: #D4A017;
    --cta-hover: #B88A14;
    --badge-bg: #FEF9E7;
    --badge-border: #D4A017;
    --badge-text: #3E2723;
    --green-check: #4A7C44;
    --featured-gold: #D4A017;
    --danger-red: #A52A2A;

    /* Mapping old names for compatibility if any */
    --primary-blue: var(--primary-gold);
    --deep-blue: var(--deep-brown);
    --light-blue: var(--warm-cream);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-white);
    color: #333;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background-color: #D32F2F;
    /* Vibrant Red */
    color: var(--text-white);
    text-align: center;
    padding: 6px 15px;
    /* Thinner padding */
    font-weight: 700;
    font-size: 14px;
    /* Slightly smaller */
    letter-spacing: 0.1px;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    /* Force one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 9.5px;
        padding: 5px 8px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(160deg, #D4A017 0%, #F5C518 60%, #FEF9E7 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Hide mobile image on desktop */
.hero-image-mobile {
    display: none;
}

.hero-image-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: -60px;
    /* Moves image up on desktop */
}

.hero-image-desktop img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(41, 169, 224, 0.3);
}

/* Safe Badge */
.safe-badge {
    background-color: var(--badge-bg);
    color: var(--badge-text);
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--deep-brown);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 25px;
    line-height: 1.4;
    opacity: 0.95;
}

.hero-bullets {
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--deep-brown);
    font-weight: 500;
}

.check-icon {
    color: var(--green-check);
    font-weight: 900;
    font-size: 18px;
}

.hero-conclusion {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    background: var(--deep-brown);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s, box-shadow 0.3s;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.4);
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-gold);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(62, 39, 35, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(62, 39, 35, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(62, 39, 35, 0.4);
    }
}

.cta-button,
.cta-button-green,
.cta-button-secondary {
    animation: pulse 2s infinite ease-in-out;
}

.cta-button:hover,
.cta-button-green:hover,
.cta-button-secondary:hover {
    animation: none;
    /* Stop pulse on hover */
    transform: scale(1.03);
    background-color: #2D1B18;
    box-shadow: 0 6px 30px rgba(62, 39, 35, 0.5);
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
        order: 1;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin-bottom: 20px;
        order: 2;
    }

    .hero-subtitle {
        font-size: 18px;
        order: 3;
        margin-bottom: 20px;
    }

    .cta-button {
        order: 4;
        width: 100%;
        max-width: 400px;
    }

    .safe-badge {
        display: inline-flex !important;
        order: 0;
        margin-bottom: 20px;
    }

    /* Hide elements not requested for mobile sequence */
    .hero-bullets,
    .hero-conclusion,
    .delivery-info,
    .social-proof {
        display: none !important;
    }

    .hero-image-mobile img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(62, 39, 35, 0.2);
    }
}

/* Delivery Info */
.delivery-info {
    margin-top: 30px;
    font-size: 14px;
    color: #B0A0C4;
}

.delivery-info h2 {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}

.delivery-info img {
    height: 16px;
    width: auto;
}

/* Social Proof */
.social-proof {
    margin-top: 25px;
}

.clients-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clients-badge img {
    height: 35px;
}

.clients-badge h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Carousel Section */
.carousel-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.carousel-title {
    color: #1A0F2E;
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.carousel-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========== CAROUSEL SETTINGS ========== */
:root {
    --total-cards: 8;
    --card-width: 300px;
    --card-height: 400px;
    --rotation-speed: 40s;
    --circle-size: 600px;
}

.carousel-container {
    width: 100%;
    height: 600px;
    perspective: 2000px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.carousel-circle {
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
    transform-style: preserve-3d;
    animation: rotateCarousel var(--rotation-speed) linear infinite;
}

@keyframes rotateCarousel {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.carousel-circle .elementor-widget-image {
    position: absolute;
    width: var(--card-width) !important;
    height: var(--card-height) !important;
    left: 50%;
    top: 50%;
    margin-left: calc(var(--card-width) / -2);
    margin-top: calc(var(--card-height) / -2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(41, 169, 224, 0.3);
    transition: transform 0.3s ease;
    backface-visibility: visible;
}

.carousel-circle .elementor-widget-image img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.snapcard1 {
    transform: rotateY(0deg) translateZ(calc(var(--circle-size) / 1.5));
}

.snapcard2 {
    transform: rotateY(45deg) translateZ(calc(var(--circle-size) / 1.5));
}

.snapcard3 {
    transform: rotateY(90deg) translateZ(calc(var(--circle-size) / 1.5));
}

.snapcard4 {
    transform: rotateY(135deg) translateZ(calc(var(--circle-size) / 1.5));
}

.snapcard5 {
    transform: rotateY(180deg) translateZ(calc(var(--circle-size) / 1.5));
}

.snapcard6 {
    transform: rotateY(225deg) translateZ(calc(var(--circle-size) / 1.5));
}

.snapcard7 {
    transform: rotateY(270deg) translateZ(calc(var(--circle-size) / 1.5));
}

.snapcard8 {
    transform: rotateY(315deg) translateZ(calc(var(--circle-size) / 1.5));
}

.carousel-container:hover .carousel-circle {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    :root {
        --card-width: 250px;
        --card-height: 350px;
        --circle-size: 500px;
    }

    .carousel-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --card-width: 200px;
        --card-height: 300px;
        --circle-size: 350px;
        --rotation-speed: 30s;
    }

    .carousel-container {
        height: 400px;
    }

    .carousel-title {
        font-size: 28px;
        padding: 0 20px;
    }
}

/* Section Title */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 40px;
    text-align: center;
}

.highlight-purple {
    color: var(--primary-purple);
}

/* Modules Section */
.modules-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--warm-white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.module-card {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(212, 160, 23, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 160, 23, 0.1);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(212, 160, 23, 0.15);
}

.module-emoji {
    font-size: 48px;
    margin-bottom: 20px;
}

.module-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.modules-footer-text {
    margin-bottom: 30px;
}

.modules-footer-text p {
    font-size: 20px;
    color: #555;
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

/* ========== PROMO BAR ========== */
.promo-bar {
    background: linear-gradient(135deg, #D4A017, #5D4037);
    color: #FFFFFF;
    padding: 20px 0;
}

.promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-bar h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.time-block span {
    font-size: 43px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
}

.time-block .label {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .promo-bar h2 {
        font-size: 16px;
    }

    .time-block span {
        font-size: 34px;
    }

    .time-block .label {
        font-size: 13px;
    }
}

/* ========== TRANSFORMATION / BENEFITS SECTION ========== */
.transformation-section {
    background-color: var(--warm-cream);
    padding: 80px 0;
}

.transformation-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 50px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.08);
    text-align: center;
}

.transformation-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 40px;
}

.benefits-columns {
    display: flex;
    gap: 40px;
    text-align: left;
    margin-bottom: 30px;
}

.benefits-col {
    flex: 1;
}

.benefits-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

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

.benefits-list li {
    font-size: 15px;
    color: #444;
    padding: 8px 0;
    line-height: 1.5;
}

.benefits-conclusion {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.check-green {
    color: var(--green-check);
    font-weight: 700;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .benefits-columns {
        flex-direction: column;
        gap: 25px;
    }

    .transformation-card {
        padding: 30px 20px;
    }

    .transformation-card h2 {
        font-size: 24px;
    }
}

/* ========== PRESSURE SECTION ========== */
.pressure-section {
    background: linear-gradient(160deg, var(--primary-gold), var(--deep-brown));
    padding: 80px 0;
    text-align: center;
}

.pressure-card {
    max-width: 750px;
    margin: 0 auto;
}

.pressure-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    line-height: 1.2;
}

.pressure-card p {
    font-size: 18px;
    color: var(--light-blue);
    margin-bottom: 15px;
    line-height: 1.6;
}

.pressure-highlight {
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 20px !important;
    color: #FFFFFF !important;
}

/* ========== AUDIENCE SECTION ========== */
.audience-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.audience-item {
    background-color: var(--light-blue);
    border: 1px solid #BAE6FD;
    border-radius: 12px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.2s ease;
}

.audience-item:hover {
    transform: translateX(5px);
}

.audience-check {
    color: var(--green-check);
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.audience-item p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--deep-blue);
    margin: 0;
}

.audience-footer {
    text-align: center;
    margin-top: 30px;
}

.audience-footer p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========== METHOD SECTION ========== */
.method-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--warm-white);
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(41, 169, 224, 0.08);
    border: 1px solid rgba(41, 169, 224, 0.06);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(41, 169, 224, 0.15);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
}

.step-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--deep-brown));
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.step-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.method-footer {
    margin-top: 40px;
}

.method-footer p {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-gold);
}

/* ========== BONUS SECTION ========== */
.bonus-section {
    padding: 80px 0;
    background-color: var(--warm-white);
    text-align: center;
}

.bonus-intro {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.bonus-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 50px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

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

.bonus-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.05);
    border: 2px solid var(--warm-cream);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.bonus-header {
    margin-bottom: 15px;
}

.bonus-number {
    background: var(--primary-gold);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

.bonus-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: block;
}

.bonus-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    color: var(--deep-brown);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bonus-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bonus-value {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    border-top: 1px solid #EEE;
    padding-top: 15px;
}

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

.free-label {
    color: var(--green-check);
    font-weight: 800;
}

@media (max-width: 768px) {
    .bonus-main-title {
        font-size: 28px;
    }
}

/* ========== PRICING SECTION (UPGRADED) ========== */
.pricing-section {
    padding: 80px 0;
    text-align: center;
    background-color: #F3F4F6;
}

.pricing-main-urgency {
    display: inline-flex;
    align-items: center;
    background-color: #E63946;
    color: #FFFFFF;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.alarm-icon {
    font-size: 22px;
    margin-right: 10px;
}

.pricing-divider {
    border: none;
    border-top: 3px solid #333;
    width: 60px;
    margin: 20px auto 40px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    position: relative;
    transition: transform 0.3s ease;
}

.complete-card.featured {
    border: 2px solid #E63946;
    transform: scale(1.02);
    z-index: 5;
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.15);
}

.best-seller-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4ADE80;
    color: #14532D;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.card-urgency-bar {
    background-color: #E63946;
    color: #FFFFFF;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.plan-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-dark {
    color: #111827;
    font-weight: 800;
}

.highlight-blue {
    color: #2563EB;
    /* Vibrant blue for highlights */
    font-weight: 800;
}

.plan-ideal {
    font-size: 14px;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 5px;
}

.complete-card .plan-title {
    font-size: 32px;
}

.bonus-notice {
    font-size: 14px;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 5px;
}

.plan-mockup {
    margin-bottom: 25px;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 0;
    /* Remove padding to maximize image area */
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Ensure rounded corners apply to image */
}

.plan-mockup img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.value-highlight {
    background-color: #F0FDF4;
    border: 1px solid #4ADE80;
    color: #166534;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.plan-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features-new li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.icon-check {
    color: #10B981;
    font-weight: 900;
}

.icon-lock {
    color: #9CA3AF;
}

.restricted-item {
    color: #9CA3AF;
    opacity: 0.7;
}

.pricing-details {
    border-top: 1px solid #E5E7EB;
    padding-top: 25px;
    margin-bottom: 25px;
}

.old-price-line {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 5px;
}

.strike {
    text-decoration: line-through;
    color: #E63946;
}

.main-price {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 5px;
}

.complete-card .main-price {
    font-size: 56px;
}

.installments {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 12px;
}

.savings-badge {
    font-size: 14px;
    color: #166534;
}

.btn-cta-standard,
.btn-cta-complete {
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-cta-standard {
    background-color: #34D399; /* Verde mais suave */
    color: #FFFFFF;
    animation: none;
    box-shadow: none;
}

.btn-cta-standard:hover {
    background-color: #10B981;
    transform: none;
}

.btn-cta-complete {
    background-color: #10B981;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-cta-complete:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.trust-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    opacity: 0.6;
}

.trust-icon {
    height: 18px;
    width: auto;
    filter: grayscale(1);
    transition: opacity 0.3s;
}

.trust-icon:hover {
    opacity: 1;
    filter: none;
}

/* Response for Mobile */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        padding: 0 20px;
    }

    .complete-card.featured {
        transform: none;
    }

    .plan-title {
        font-size: 24px;
    }

    .main-price {
        font-size: 40px;
    }

    .pricing-main-urgency {
        font-size: 15px;
        padding: 8px 15px;
    }
}

/* ========== GUARANTEE SECTION ========== */
.guarantee-section {
    background-color: var(--warm-white);
    padding: 60px 0;
}

.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(108, 63, 160, 0.08);
    border: 1px solid rgba(108, 63, 160, 0.06);
}

.guarantee-icon img {
    width: 200px;
}

.guarantee-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A0F2E;
    margin-bottom: 10px;
}

.guarantee-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.guarantee-bold {
    font-weight: 700;
    color: var(--primary-purple) !important;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .guarantee-container {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon img {
        width: 150px;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background-color: #FFFFFF;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonials-grid {
    display: flex;
    overflow-x: hidden;
    gap: 20px;
    padding: 20px 0 40px;
    scroll-behavior: smooth;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--warm-cream);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.06);
    border: 1px solid #F5C518;
    transition: transform 0.3s ease;
    flex: 0 0 calc(33.333% - 14px);
    /* Show exactly 3 cards */
}

/* Carousel Nav Styles */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #000;
}

.carousel-arrows {
    display: flex;
    gap: 12px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.carousel-arrow:hover {
    border-color: #000;
    transform: scale(1.05);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--deep-brown);
    font-size: 16px;
    margin-bottom: 2px;
}

.author-subtitle {
    font-size: 13px;
    color: #777;
    font-weight: 400;
}

.stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
    margin-bottom: 12px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}



/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background-color: var(--warm-white);
}

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

.faq-item {
    background: #FFFFFF;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(41, 169, 224, 0.06);
    border: 1px solid rgba(41, 169, 224, 0.06);
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--deep-blue);
    font-size: 16px;
    transition: background 0.2s ease;
}

.faq-item summary:hover {
    background-color: #FAFAFE;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--primary-gold);
    font-weight: 700;
}

.highlight-blue {
    color: var(--deep-brown);
    font-weight: 700;
}

.highlight-yellow {
    color: var(--deep-brown);
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 25px 20px;
    margin: 0;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
}

.faq-footer p {
    margin-bottom: 15px;
    color: #555;
    font-weight: 600;
}

.cta-button-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta-button-whatsapp:hover {
    transform: scale(1.03);
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(160deg, var(--primary-gold), var(--deep-brown));
    color: var(--warm-cream);
    padding: 60px 0;
    text-align: center;
    font-size: 14px;
}

.footer-logo h2 {
    color: var(--warm-cream);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
    font-size: 22px;
}

.site-footer p {
    margin-bottom: 8px;
}

.disclaimer {
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.5;
    font-size: 12px;
    color: var(--warm-cream);
    opacity: 0.8;
}

.footer-links a {
    color: var(--warm-cream);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
    opacity: 0.8;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 5px;
        /* Minimal padding */
        padding-bottom: 40px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        /* Reduced gap */
        padding-top: 0;
        /* Zero top padding */
        padding-bottom: 30px;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        width: 100%;
        order: 3;
        /* Image after H1 */
        margin: 20px 0;
    }

    .hero-image-mobile img {
        width: 95%;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        order: 1;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
        order: 2;
    }

    .hero-content .safe-badge {
        order: 1;
        margin-bottom: 15px;
    }

    .hero-content .hero-description {
        order: 4;
        font-size: 16px;
        margin-top: 20px;
        padding: 0 10px;
        line-height: 1.6;
    }

    .hero-content .cta-button {
        order: 5;
        width: 100%;
        max-width: 450px;
        padding: 20px 25px;
        font-size: 17px;
        margin-top: 10px;
    }

    .hero-content .delivery-info {
        order: 6;
        justify-content: center;
        margin-top: 25px;
        width: 100%;
    }

    .hero-content .delivery-info h2 {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content .social-proof {
        order: 7;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .clients-badge {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        /* Show 1 card at a time on mobile */
    }

    .carousel-nav {
        display: none;
        /* Hide arrows on mobile, use touch scroll */
    }

    .testimonials-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        scroll-snap-align: center;
    }
}