/* 
  Estilo Natural e Premium para 365 Receitas
  Foco em Tons Quentes, Gastronomia e Acessibilidade
*/

:root {
    --bg-main: #FFF8EE;
    --bg-secondary: #F6ECDD;
    --bg-card: #FFFCF7;
    --terracotta: #C85F3D;
    --cta-main: #E86F45;
    --cta-hover: #D85B34;
    --text-main: #30251F;
    --text-muted: #66554A;
    --border-color: #E8D8C7;
    --olive: #687A4A;
    
    --cta-text: #FFFFFF;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-soft: 0 4px 20px rgba(48, 37, 31, 0.05);
    --shadow-strong: 0 8px 30px rgba(200, 95, 61, 0.15);
    --cta-glow: rgba(232, 111, 69, 0.3);
}

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

html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Spacing & Alignment Helpers */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.subtitle { color: var(--text-muted); font-size: 1.1rem; }
.gap-20 { gap: 20px; }
.flex-wrap { flex-wrap: wrap; }

/* Typography Utilities */
.gradient-text {
    background: linear-gradient(to right, var(--terracotta), var(--cta-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    text-shadow: none;
}

.highlight-green, .glow-text-green {
    color: var(--terracotta);
    text-shadow: none;
}

.glow-text-orange {
    color: var(--cta-main);
    text-shadow: none;
}

.text-green { color: var(--terracotta); }
.text-orange { color: var(--cta-main); }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    color: var(--text-main);
}

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

/* Glassmorphism -> Natural Cards */
.glass-effect {
    background: rgba(255, 252, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.glass-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    /* border-radius removed */
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

/* Interactive Hover Utilities */
.hover-float:hover {
    transform: translateY(-5px);
}

.hover-glow:hover {
    border-color: var(--terracotta);
    box-shadow: var(--shadow-strong);
}

/* Header */
.top-bar {
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #4A3326;
    color: #FFF8EE;
}

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: var(--cta-main);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    background: radial-gradient(circle at top center, var(--bg-secondary) 0%, transparent 50%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image-wrapper {
    max-width: 700px;
    margin: 0 auto 40px;
    /* border-radius removed */
    /* overflow removed */
    position: relative;
    box-shadow: var(--shadow-strong);
}

/* hero wrapper after removed */

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

/* CTAs */
.cta-button {
    display: inline-block;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cta-text);
    background: var(--cta-main);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 18px 40px;
        font-size: 1.15rem;
        letter-spacing: 1px;
        border-radius: 12px;
    }
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    background: var(--cta-hover);
    box-shadow: 0 10px 25px var(--cta-glow);
}

.outline-cta {
    background: transparent;
    color: var(--cta-main);
    border: 2px solid var(--cta-main);
}

.outline-cta:hover {
    background: var(--bg-secondary);
    box-shadow: none;
    color: var(--cta-hover);
    border-color: var(--cta-hover);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Benefits Grid */


.benefit-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-card .icon {
    font-size: 2rem;
    background: var(--bg-secondary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.benefit-card p {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Testimonials Carousel */
.carousel-container {
    /* overflow removed */
    position: relative;
    padding: 20px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.carousel-item {
    width: 300px;
    flex-shrink: 0;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.carousel-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--terracotta);
    animation: pulse 2s infinite;
}

/* Gallery / Recipes */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.recipe-card {
    /* overflow removed */
    display: flex;
    flex-direction: column;
}

.recipe-card .img-wrap {
    /* overflow removed */
    height: 200px;
    border-bottom: 1px solid var(--border-color);
}

.recipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover img {
    transform: scale(1.1);
}

.recipe-card .card-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

.recipe-card h3 {
    color: var(--terracotta);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.recipe-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.category-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.category-card .icon {
    font-size: 2rem;
}

.category-card h4 {
    color: var(--terracotta);
    font-size: 1.1rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.audience-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    color: var(--olive);
    font-weight: bold;
    font-size: 1.2rem;
}

.audience-card p {
    font-weight: 600;
}

/* Bonus Section */
.badge-eyebrow {
    background: var(--terracotta);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
}

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

.bonus-card {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bonus-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--terracotta);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px 0 20px 0;
}

.bonus-content h3 {
    color: var(--olive);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.bonus-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.bonus-value {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.bonus-value .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.bonus-value .free-badge {
    background: var(--bg-secondary);
    color: var(--olive);
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.bonus-banner {
    text-align: center;
    background: var(--olive);
    color: white;
    border: none;
}

.bonus-banner h3 {
    color: white; /* Force white text */
}

/* Pricing / Offer */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pricing-card.border-orange { border-top: 4px solid var(--border-color); }
.pricing-card.border-green { border-top: 4px solid var(--terracotta); }

.premium-glow {
    box-shadow: var(--shadow-strong);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-orange { background: var(--bg-secondary); color: var(--text-main); border: 1px solid var(--border-color); }
.badge-green { background: var(--cta-main); color: var(--cta-text); }
.badge-red { background: #D14D4D; color: #fff; top: -35px; }

.price-title {
    font-size: 1.8rem;
    text-align: center;
    margin: 20px 0;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.features-list .check {
    color: var(--olive);
    font-weight: bold;
}

.small-list {
    margin-bottom: 0;
}

.small-list li {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.bonus-included h4 {
    color: var(--terracotta);
    margin-bottom: 10px;
    font-size: 1rem;
    text-transform: uppercase;
}

.offer-footer-note {
    color: var(--text-muted);
    font-weight: 600;
}

.price-box {
    text-align: center;
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #D14D4D;
    font-size: 0.9rem;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 5px;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
}

/* Reviews / Social Proof */
.reviews-summary {
    max-width: 600px;
    margin: 0 auto 40px;
    justify-content: space-around;
}

.summary-score {
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--terracotta);
    line-height: 1;
}

.stars {
    color: var(--cta-main);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.score-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.summary-bars {
    flex: 1;
    min-width: 250px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bar-row span { width: 60px; }

.bar-bg {
    flex: 1;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    /* overflow removed */
}

.bar-fill {
    height: 100%;
    background: var(--cta-main);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    padding: 25px;
}

.review-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.review-header .stars {
    font-size: 1rem;
    margin-bottom: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.user-name {
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-style: italic;
}

.review-actions {
    display: flex;
    gap: 10px;
}

.review-actions button {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.review-actions button:hover {
    background: var(--bg-card);
    color: var(--text-main);
}

/* Guarantee */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 40px;
    flex-wrap: wrap;
    border-color: var(--olive);
}

.guarantee-img {
    width: 120px;
    height: 120px;
}

.drop-shadow-glow {
    filter: drop-shadow(0 4px 10px rgba(104, 122, 74, 0.2));
}

.guarantee-text {
    flex: 1;
    min-width: 250px;
}

.guarantee-text h2 {
    color: var(--olive);
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.guarantee-text p {
    color: var(--text-muted);
}

.guarantee-text .badge-green {
    background: var(--olive);
    color: white;
}

/* Delivery Section */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.delivery-card {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.delivery-card .icon {
    font-size: 2.5rem;
    background: var(--bg-secondary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 10px;
}

.delivery-card h3 {
    color: var(--terracotta);
    font-size: 1.1rem;
}

.delivery-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-question .arrow {
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: var(--terracotta);
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s;
    color: var(--text-muted);
}

.faq-answer p {
    padding-bottom: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer p {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-main);
}

.footer .small {
    font-weight: normal;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 111, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(232, 111, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 111, 69, 0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse-anim {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 var(--cta-glow); }
    70% { box-shadow: 0 0 0 15px rgba(232, 111, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 111, 69, 0); }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .guarantee-box {
        text-align: center;
        flex-direction: column;
    }
    
    .guarantee-text .badge {
        position: static;
        display: inline-block;
        transform: none;
        margin-bottom: 10px;
    }
}


/* Visual Carousel (Recipes) */
.visual-carousel-container {
    /* overflow removed */
    position: relative;
    padding: 20px 0;
    margin-bottom: 40px;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.visual-carousel-track {
    display: flex;
    gap: 15px;
    cursor: grab;
    /* removed old track width */
}
.visual-carousel-item {
    /* removed old item dimensions */
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    user-select: none;
    -webkit-user-drag: none;
}

/* Bonus Horizontal Layout */
.bonus-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.bonus-card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 20px;
    text-align: left;
    gap: 20px;
}
.bonus-mockup {
    position: relative;
    width: 150px;
    flex-shrink: 0;
}
.bonus-mockup img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}
.bonus-tag-horizontal {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--terracotta);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
}
.bonus-content-horizontal {
    flex-grow: 1;
}
.bonus-content-horizontal h3 {
    color: var(--olive);
    margin-bottom: 5px;
    font-size: 1.2rem;
}
.bonus-content-horizontal p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.bonus-value-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
}
.bonus-value-horizontal .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.bonus-value-horizontal .free-badge {
    background: var(--bg-secondary);
    color: var(--olive);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}
@media (max-width: 600px) {
    .bonus-card-horizontal {
        flex-direction: column;
        text-align: center;
    }
    .bonus-value-horizontal {
        justify-content: center;
    }
}

/* Review Photos */
.review-recipe-img {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    border-radius: 12px;
    /* overflow removed */
}
.review-recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fix Benefits Grid 4x2 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


/* Small Review Photos */
.review-recipe-img-small {
    width: 140px;
    height: 100px;
    margin: 15px 0;
    border-radius: 8px;
    /* overflow removed */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.review-recipe-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mockup Floating Effect */
.mockup-floating {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

/* --- Modern Carousel System --- */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.visual-carousel-track, .carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 10px;
}
.visual-carousel-track::-webkit-scrollbar, .carousel-track::-webkit-scrollbar {
    display: none;
}
.is-draggable {
    cursor: grab;
}
.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
}
.visual-carousel-item, .carousel-item {
    scroll-snap-align: center;
    flex: 0 0 calc(90% - 15px);
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
@media (min-width: 768px) {
    .visual-carousel-item, .carousel-item {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (min-width: 1024px) {
    .visual-carousel-item, .carousel-item {
        flex: 0 0 calc(33.333% - 15px);
    }
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFCF7;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--terracotta);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}
.carousel-arrow:hover {
    background: var(--terracotta);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.carousel-arrow.prev { left: 5px; }
.carousel-arrow.next { right: 5px; }
@media (min-width: 768px) {
    .carousel-arrow.prev { left: -20px; }
    .carousel-arrow.next { right: -20px; }
}
.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #fff;
    color: var(--text-muted);
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--terracotta);
}


/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {
    /* Global Padding Reductions */
    .section {
        padding: 50px 0;
    }
    .hero.section {
        padding-top: 120px; /* Compensa a barra dupla no mobile */
    }
    .glass-box {
        padding: 20px;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px;
    }
    .hero-title {
        font-size: 2rem !important;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Guarantee Box */
    .guarantee-box {
        padding: 25px 15px;
    }
    .guarantee-text h2 {
        font-size: 1.4rem;
    }
    .guarantee-img {
        width: 80px;
        height: 80px;
    }
    
    /* Buttons */
    .cta-button {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        width: 100% !important; /* Make buttons full width on mobile for better tap area */
        box-sizing: border-box;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 25px 20px;
    }
    .price-value {
        font-size: 3rem;
    }
    
    /* Stats/Badges */
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
}

/* Estilo para mockups solidos */
.mockup-solid-style {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
