/* Marcenaria PREMIUM - Dark Luxury Theme */
:root {
    --bg-dark: #0A0A0A;
    --bg-card: #141414;
    --text-primary: #F0F0F0;
    --text-secondary: #CCCCCC;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #B59328;
    --border-color: #333333;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-gold {
    color: var(--accent-gold);
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b89225);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c55d, #cfa52e);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Hero Section */
.hero {
    position: relative;
    /* DESKTOP CUTOFF FIX: Use min-height + padding instead of fixed height */
    min-height: 100vh;
    height: auto;
    padding-top: 140px;
    /* Space for header/content */
    padding-bottom: 40px;
    /* Reduced from 100px */
    background: url('assets/hero-bg.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-logo {
    max-width: 600px;
    /* Larger mockup on desktop */
    width: 90%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* Glow effect */
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.hero-center-box {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    /* Removing gap completely */
}

.hero-guarantee {
    color: #4CAF50;
    /* Green color like reference */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.guarantee-icon-small {
    font-size: 1.1rem;
}

/* Reviews Alignment */
.reviews-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
    flex-wrap: wrap;
    /* Allows wrap on very small screens to prevent cutting */
}

.reviews-img {
    height: 60px;
    /* Original size refined */
    width: auto;
    object-fit: contain;
    margin: 0;
    /* Remove negative margins */
    display: block;
}

.reviews-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0 !important;
    white-space: nowrap;
    /* Keep text on one line */
}

/* Mobile tweak for reviews */
@media (max-width: 480px) {
    .reviews-row {
        gap: 8px;
    }

    .reviews-text {
        font-size: 1rem;
    }

    .reviews-img {
        height: 50px;
        /* Smaller on mobile */
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Section */
.comparison {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
}

.col-amadora,
.col-premium {
    padding: 20px;
}

.col-amadora h3 {
    color: #ff4d4d;
    border-bottom: 1px solid #ff4d4d;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.col-premium h3 {
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.comparison-list li {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.col-amadora li::before {
    content: '✖';
    color: #ff4d4d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.col-premium li::before {
    content: '✔';
    color: #4CAF50 !important;
    /* Green for Premium Contrast */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Showcase Grid */
.showcase {
    padding: 60px 0;
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, black);
    padding: 20px;
    color: white;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0f0f0f);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.card.premium {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.card.premium:hover {
    transform: scale(1.07);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: black;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
}

.text-secondary {
    color: var(--text-secondary);
}

/* Trust Badges Area */
.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.security-strip {
    max-width: 320px;
    /* Increased to accommodate the 3-icon vector */
    width: 100%;
    opacity: 1;
    /* Remove transparency */
}

.guarantee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.guarantee-seal-img {
    max-width: 100px;
    /* Constrain size! */
}

.guarantee-text {
    font-size: 0.85rem;
    color: #bbb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

.price small {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.features-list li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 5px;
    font-size: 1.2rem;
    line-height: 1;
}

.features-list li.bonus {
    color: white;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 60px 0;
    background: black;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.guarantee {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}


/* Deliverables Section */
.deliverables {
    padding: 60px 0;
    background-color: #050505;
    /* Slightly darker than base */
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.deliverable-card {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.deliverable-card:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
    /* Green highlight like checked icon */
}

.deliverable-icon {
    font-size: 2rem;
    color: #4CAF50;
    /* Green checkmark */
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
    margin-bottom: 0px;
}

.deliverable-card h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.deliverable-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}


/* Carousel Section (Swiper) */
.carousel-section {
    padding: 60px 0;
    overflow: hidden;
    background: #000;
}

.carousel-container {
    margin-top: 40px;
    width: 100%;
    position: relative;
    /* Swiper handles overflow */
}

/* Gradient Fade Edges */
.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

/* Swiper Slide Styling */
.swiper-slide {
    width: auto;
    /* Variable width based on image content */
    height: 300px;
    /* Increased fixed height for impact */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
    background: #000;
    /* Black background for any potential letterboxing */
}

.swiper-slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
    /* Ensures full image is visible without cropping */
    display: block;
    transition: transform 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.02);
    /* Slight scale */
}

/* Swiper Wrapper Transition Info: Swiper inline styles handle transition speed */


/* Mobile Responsive */
@media (max-width: 768px) {

    /* UNIVERSAL MOBILE HERO FIX - "REDO" */
    .hero {
        background-attachment: scroll;
        min-height: 100dvh;
        /* Minimum full screen */
        height: auto !important;
        /* Allow growing infinitely */
        padding-top: 140px;
        /* AGGRESSIVE top padding to clear headline */
        padding-bottom: 80px;
        /* Safety bottom */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top, don't center vertically */
        align-items: center;
        gap: 20px;
        /* Consistent spacing */
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        /* Safe side padding */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        /* Fluid font */
        margin-top: 0;
        /* Padding handles spacing */
        line-height: 1.2;
        padding: 0 10px;
        color: #fff;
        /* Ensure visibility */
    }

    .hero-logo {
        max-width: 90% !important;
        width: 450px;
        height: auto;
        max-height: 35vh;
        /* Cap vertical height */
        margin: 20px auto;
        /* Clean spacing */
        order: 0;
        /* Natural flow */
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .reviews-img {
        margin-top: -5px;
        /* Keep tight */
        margin-bottom: 20px;
        height: 65px;
        /* Increased back up slightly (50 -> 65) per user request */
        max-width: 200px;
        width: auto;
    }

    /* Comparison Table Fixes */
    .comparison-table {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px 10px;
        overflow: visible;
        /* Prevent cut-off */
    }

    .col-amadora,
    .col-premium {
        width: 100%;
        padding: 10px;
    }

    /* Pricing Cards Mobile */
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .card {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .card.premium {
        transform: none;
        /* order: -1; REMOVED to keep Basic first, Premium second */
    }

    /* Force Basic Plan Red Border & Contrast */
    .card.basic-plan {
        border: 4px solid #ff0000 !important;
        /* Borda vermelha grossa */
        background-color: #fff5f5;
        /* Fundo levemente vermelho para contraste */
        box-shadow: 0 4px 25px rgba(255, 0, 0, 0.25);
        position: relative;
    }

    /* Ensure red text is visible */
    .basic-footer,
    .old-price span {
        color: #ff0000 !important;
        font-weight: 800;
    }
}

/* Deliverables Header Alignment */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0px;
    /* Reduced from default gaps */
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    /* Placeholder color */
    background-image: url('assets/logo.png');
    /* Fallback/Placeholder */
    background-size: cover;
    background-position: center;
    border: 2px solid var(--accent-gold);
}

.human-avatar {
    /* Since we don't have men photos, using a generic user icon logic or gradient */
    background-image: linear-gradient(135deg, #444, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed ::after content to avoid overlay on photos */
}

.testimonial-info h4 {
    font-size: 1rem;
    margin: 0;
    color: white;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #ddd;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #FFD700;
    letter-spacing: 3px;
}

/* WhatsApp Card Styling */
.whatsapp-card {
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    /* Subtle pattern styling optional */
    background-color: #111b21;
    /* WhatsApp Dark BG */
    border: 1px solid #333;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.whatsapp-info h4 {
    font-size: 1rem;
    margin: 0;
}

.status {
    font-size: 0.75rem;
    color: #4CAF50;
}

.whatsapp-bubble {
    background-color: #005c4b;
    /* WhatsApp Sent Bubble Green */
    padding: 10px 15px 5px;
    /* Bottom padding less for timestamp */
    border-radius: 8px 0px 8px 8px;
    /* Bubble shape */
    position: relative;
    max-width: 100%;
    margin-left: auto;
    /* Aligns right like sent message */
}

.whatsapp-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent transparent #005c4b;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-button {
    background: none;
    border: none;
    color: #aebac1;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.audio-waveform-visual {
    display: flex;
    gap: 2px;
    align-items: center;
    height: 20px;
    flex-grow: 1;
}

.audio-waveform-visual span {
    width: 3px;
    background-color: #aebac1;
    border-radius: 2px;
    /* Animation removed */
}

/* Specific heights handled by inline styles or left as defaults */
.audio-waveform-visual span:nth-child(odd) {
    height: 10px;
}

.audio-waveform-visual span:nth-child(even) {
    height: 16px;
}

.audio-waveform-visual span:nth-child(3n) {
    height: 8px;
}

/* Playing state - No animation */
.playing .audio-waveform-visual span {
    /* No animation */
}

.audio-time {
    font-size: 0.8rem;
    color: #aebac1;
    min-width: 35px;
}

.whatsapp-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    font-size: 0.7rem;
    color: #aebac1;
}

.checkmark {
    color: #53bdeb;
    /* Blue ticks */
    font-size: 0.8rem;
}

.whatsapp-caption {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    text-align: right;
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Global Mobile Alignment Fixes */
    h1,
    h2,
    h3,
    h4,
    p {
        text-align: center;
    }

    .hero-content,
    .deliverables-grid,
    .faq-grid {
        text-align: center;
        align-items: center;
    }

    /* Force center alignment for strictly flex/grid items if needed */
    .card-header,
    .testimonial-header,
    .whatsapp-header {
        justify-content: center;
        /* Centers the icon/avatar + title group */
        text-align: left;
        /* Keeps text inside the header aligned naturally */
    }

    .deliverable-card,
    .testimonial-card,
    .faq-item {
        text-align: center;
    }

    /* Deliverable card header - keep icon left of text but center the whole group */
    .deliverable-card .card-header {
        justify-content: center;
    }

    /* Ensure list items in CTA are legible but likely left aligned looks better for lists, 
       but user asked for center perfection. Lists usually look bad centered. 
       I will center the container but keep list text left for readability OR follow user instruction strictly.
       "muita coisa alinhada a esquerda... deve estar perfeito".
       I'll center-align the card content but keep the list items with a nice layout.
    */
    .features-list li {
        justify-content: flex-start;
        /* Keep ticks aligned */
    }
}

/* New CTA Features List Styling */
/* New CTA Features List Styling */
/* New CTA Features List Styling */
.features-list {
    list-style: none !important;
    /* Force remove bullets */
    list-style-type: none !important;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    /* Default desktop */
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #f0f0f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle separator */
    padding-bottom: 10px;
}

/* Remove default bullets if any pseudo elements were adding them */
.features-list li::before {
    content: none !important;
    display: none !important;
}

.features-list li:last-child {
    border-bottom: none;
}

.icon-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    filter: drop_shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

/* CTA Refinement: Light Cards & White Design */
.pricing {
    padding: 120px 0 100px;
    /* Increased top padding for spacing */
    background-color: #000;
    /* Dark background remains for section */
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align top */
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    color: #111;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.card.basic-plan {
    max-width: 350px;
}

.card.premium {
    max-width: 450px;
}

/* Headers */
.plan-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    /* Reduced from 25px */
    text-transform: uppercase;
    color: #000;
}

/* Lists */
.features-list {
    list-style: none !important;
    padding: 0;
    margin: 10px 0;
    /* Reduced from 20px 0 */
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    /* Reduced from 15px */
    font-size: 0.95rem;
    color: #333;
    /* Dark text for white card */
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    /* Reduced from 10px */
}

.features-list li:last-child {
    border-bottom: none;
}

/* Icons */
.icon-check {
    width: 18px;
    height: 18px;
}

.icon-check circle {
    fill: #4CAF50;
}

/* Images */
.cta-logo-premium {
    max-width: 320px;
    /* Increased further */
    width: 100%;
    display: block;
    margin: 0 auto 10px auto;
    /* Reduced bottom margin from 30px to 10px */
}

/* Recommended Badge - "More Beautiful" */
.recommended-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffcc00 0%, #ffaa00 100%);
    /* Gold/Orange Gradient */
    color: #000;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.4);
    border: 2px solid #fff;
    /* White border to pop against dark bg */
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 20;
}

/* Pricing Section */
.price-container {
    margin: 30px 0 20px 0;
    /* Adjusted spacing for bottom position */
}

.old-price {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.price-green {
    font-size: 4rem;
    font-weight: 900;
    color: #00c853;
    /* Strong Green */
    line-height: 1;
}

.installments {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
}

.savings {
    font-size: 0.85rem;
    color: #00c853;
    margin-top: 10px;
}

/* Buttons */
.btn-green {
    display: block;
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #ccff00 0%, #a4f608 100%);
    /* Neon Lime Green */
    color: #000;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(164, 246, 8, 0.4);
    transition: transform 0.3s;
    text-align: center;
    white-space: normal;
    height: auto;
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(164, 246, 8, 0.6);
}

/* Bonus Section */
.bonuses {
    padding: 80px 0;
    background-color: var(--bg-dark);
    /* Same as body */
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: #EAEAEA;
    /* Light gray/whiteish like reference */
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #333;
    /* Dark text for light card */
}

.bonus-img {
    flex: 0 0 45%;
    /* Image takes 45% */
}

.bonus-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.bonus-content {
    flex: 1;
    text-align: left;
}

.bonus-title {
    font-size: 1.8rem;
    font-weight: 800;
    /* Extra bold */
    margin-bottom: 15px;
    color: #000;
    line-height: 1.2;
}

.bonus-title.text-blue {
    color: #3b82f6;
    /* Optional highlight color from reference */
}

.bonus-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bonus-value {
    font-weight: bold;
    font-size: 1.1rem;
}

.old-val {
    color: #ff4444;
    text-decoration: line-through;
    margin-right: 10px;
}

.free-val {
    color: #000;
    font-weight: 900;
}

/* Mobile Bonus Styles */
@media (max-width: 768px) {
    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
        width: 100%;
        /* Full width */
        margin-left: auto;
        margin-right: auto;
    }

    .bonus-img {
        width: 100%;
    }

    .bonus-content {
        text-align: center;
    }

    .bonus-title {
        font-size: 1.5rem;
    }
}

/* Footer Notes */
.basic-footer {
    margin-top: 25px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ff3333;
    /* Alert Red */
    font-weight: bold;
}

.premium-footer {
    margin-top: 25px;
}

.footer-note {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    /* Global Padding to prevent edge touching & Reduce Section Distance */
    .pricing,
    .hero,
    .testimonials,
    .benefits,
    .gallery,
    section {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        /* Reduced vertical spacing (was 100px+) */
        padding-bottom: 40px;
        /* Closer folds */
    }

    /* CTA Specifics - Nuclear Centering */
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        /* Full width */
        margin: 0 auto;
        /* Centered container */
    }

    .card {
        padding: 15px 15px 25px;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        /* Force Center */
        margin-right: auto;
        /* Force Center */
    }

    .plan-title {
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 2px;
        line-height: 1.2;
        width: 100%;
        /* Full width */
        text-align: center;
        /* Explicit center */
    }

    .cta-logo-premium {
        max-width: 220px;
        margin-bottom: 5px;
        display: block;
        /* Ensure block */
        margin-left: auto;
        /* Force center */
        margin-right: auto;
        /* Force center */
    }

    .price-green {
        font-size: 3rem;
        text-align: center;
        width: 100%;
    }

    .recommended-badge {
        font-size: 0.75rem;
        padding: 5px 15px;
        width: auto;
        max-width: 90%;
        white-space: nowrap;
        text-align: center;
        transform: translateX(-50%);
        /* Ensure standard transform centering works if left: 50% */
        left: 50%;
    }

    /* Button fix: prevent orphan arrow */
    .btn-green {
        white-space: normal;
        /* Allow text to wrap */
        font-size: 0.9rem;
        padding: 15px 10px;
        height: auto;
        /* Allow height to grow */
        line-height: 1.3;
        /* Better spacing for multi-line */
        display: block;
        margin: 0 auto;
        text-align: center;
        /* Ensure text is centered */
    }

    /* Trust badges centering */
    .trust-badges {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Flex align center */
        width: 100%;
    }

    /* Center Feature Lists - The Fix */
    .features-list {
        display: table;
        /* Shrink to fit content */
        margin: 5px auto;
        /* Center the table */
        width: auto;
        /* Let it shrink */
        max-width: 100%;
        /* Prevent overflow */
        text-align: left;
        /* Keep text left aligned */
        padding-left: 0;
        /* Remove default padding */
    }

    /* Force Center Headers & Hero */
    .hero-content,
    .section-header,
    .section-title,
    .section-subtitle,
    h2,
    h3 {
        text-align: center !important;
        align-items: center !important;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* Ensure Hero text is centered specifically if flex container */
    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

/* Narrative Section */
/* Pain Points Section */
.pain-points-section {
    padding: 80px 0;
    background-color: #080808;
    /* Deep dark contrast */
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    color: #fff;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.pain-point-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    /* Subtle card bg */
    border-radius: 12px;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.pain-point-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.pain-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1;
    /* Attempt to tint emojis gold, or good backup for text icons */
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.pain-point-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.pain-point-item p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.pain-points-closing {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pain-points-closing strong {
    color: var(--primary-gold);
    display: block;
    margin-top: 10px;
    font-size: 1.3rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 30px;
    }

    .pain-point-item {
        padding: 25px;
        /* More hit area */
    }
}

/* --- NEW Pain Cards Section (Dark Mode / Red Label) --- */
.pain-cards-section {
    padding: 20px 0 60px 0;
    /* Reduced top padding from 60px to 20px */
    background-color: #0a0a0a;
    /* Dark background */
    color: #fff;
    border-bottom: 1px solid #222;
}

.pain-cards-section .section-title {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pain-card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 10px;
    /* OVERFLOW VISIBLE TO ALLOW LABEL TO POP OUT */
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: #B8860B;
    /* Gold tint on hover */
}

/* New Wrapper for Image Zoom */
.pain-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Clips the zoomed image */
    border-radius: 10px 10px 0 0;
    /* Maintain top rounded corners */
}

.pain-card-image {
    position: relative;
    width: 100%;
    height: 350px;
    /* Taller format for vertical cards */
    /* OVERFLOW VISIBLE FOR LABEL */
    overflow: visible;
    z-index: 1;
}

.pain-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Darken image as requested (Dark Mode vibe) */
    transition: filter 0.3s ease, transform 0.5s ease;
}

.pain-card:hover .pain-img {
    filter: brightness(0.8);
    transform: scale(1.05);
}

.pain-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    /* Centered and overlapping bottom edge */
    background-color: #cc0000;
    /* Red label */
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 25px;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    border-radius: 4px;
}

.pain-card-content {
    padding: 45px 25px 35px;
    /* Top padding ensures space from the overlapping label */
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-card-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 500;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 900px) {
    .pain-cards-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .pain-card-image {
        height: 300px;
    }
}