/* ==========================================================================
   SOFTLY THEME - DIGITAL LIVING ROOM
   ========================================================================== */

:root {
    --bg-main: #FDFCF8;
    --sage: #E8EFE8;
    --lavender: #EFEDF4;
    --coral: #FFB7B2;
    --coral-dark: #FF9B94;
    --text-dark: #292524;
    --text-muted: #78716C;
    --border-light: #E5E5E4;
}

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

html {
    scroll-behavior: smooth;
}

body.softly-theme {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Grain Overlay */
#grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 50;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.cursive-highlight {
    font-family: 'Reenie Beanie', cursive;
    color: var(--coral);
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: normal;
    display: inline-block;
    transform: rotate(-2deg);
}

/* Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 600px;
    z-index: 40;
}

.nav-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px -2px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background-color: var(--coral);
    border-radius: 50%;
    position: relative;
}
.logo-dot::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.btn-nav {
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease;
}
.btn-nav:hover {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}
.blob-1 {
    width: 400px;
    height: 400px;
    background: #FFE4E1;
    opacity: 0.6;
    top: 10%;
    left: -100px;
}
.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--lavender);
    opacity: 0.6;
    top: 20%;
    right: -50px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    margin-bottom: 24px;
}

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

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--coral);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 183, 178, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 178, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}
.btn-secondary:hover {
    transform: translateY(-2px);
}

.badge {
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    display: inline-block;
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   HORIZONTAL SCROLL (Vantagens)
   -------------------------------------------------------------------------- */
.horizontal-scroll-section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 50px;
}

.horizontal-track-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 24px 40px;
    scrollbar-width: none;
}
.horizontal-track-container::-webkit-scrollbar {
    display: none;
}

.horizontal-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.scroll-card {
    width: 288px;
    height: 160px;
    background: white;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px -2px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.scroll-card:hover {
    transform: translateY(-5px);
}

.scroll-card:hover .card-text {
    color: var(--coral-dark);
}

.timestamp {
    font-size: 14px;
    color: var(--text-muted);
}

.card-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

/* --------------------------------------------------------------------------
   APP EXPERIENCE PREVIEW (Cascading Mockups)
   -------------------------------------------------------------------------- */
.experience-preview {
    padding: 80px 0;
    background: white;
    border-radius: 4rem;
    margin: 0 16px;
}

.stack-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
    position: relative;
    margin-top: 40px;
}

.mockup {
    position: absolute;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-main);
}

.mockup img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.mockup-content {
    padding: 20px;
    text-align: center;
    height: 30%;
}

.mockup-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.mockup-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mockup-center {
    width: 300px;
    height: 620px;
    z-index: 3;
    background: var(--bg-main);
}
.mockup-left {
    width: 280px;
    height: 580px;
    z-index: 1;
    transform: translate(-180px, 48px);
    opacity: 0.8;
    background: var(--sage);
}
.mockup-right {
    width: 280px;
    height: 580px;
    z-index: 2;
    transform: translate(180px, 96px);
    opacity: 0.8;
    background: var(--lavender);
}

@media (max-width: 900px) {
    .mockup-left { transform: translate(-100px, 48px); }
    .mockup-right { transform: translate(100px, 96px); }
}

@media (max-width: 600px) {
    .experience-preview {
        border-radius: 2rem;
    }
    .mockup-left { transform: translate(-50px, 48px); opacity: 0.4; }
    .mockup-right { transform: translate(50px, 96px); opacity: 0.4; }
}

.btn-breathe {
    display: inline-block;
    background: var(--coral);
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 20px;
    margin-top: 15px;
    font-weight: 600;
}

.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Nav Buttons for Stack Layout */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-btn:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
    transform: translateY(-50%) scale(1.1);
}
.nav-prev { left: 0px; }
.nav-next { right: 0px; }

@media (max-width: 900px) {
    .nav-prev { left: -10px; }
    .nav-next { right: -10px; }
}

/* --------------------------------------------------------------------------
   CAROUSEL FEEDBACKS
   -------------------------------------------------------------------------- */
.testimonials-carousel {
    padding: 100px 0;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 40px;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

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

.carousel-item {
    width: 280px;
    height: 340px;
    margin-right: 20px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: white;
    padding: 8px; /* Polaroid feel */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.carousel-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); }
}

/* --------------------------------------------------------------------------
   ABOUT THE NUTRI
   -------------------------------------------------------------------------- */
.about-us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.nutri-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.blob-about {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--coral);
    top: -30px;
    right: -30px;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.4;
    animation: float 5s ease-in-out infinite;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-dark);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-text h2.section-title {
        text-align: center !important;
    }
    .stats-row {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   BONUSES
   -------------------------------------------------------------------------- */
.bonuses-section {
    padding: 80px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.bonus-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

.bonus-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bonus-card .value {
    color: var(--text-muted);
}
.bonus-card .value strike {
    color: #A8A29E;
    margin-right: 5px;
}
.bonus-card .value strong {
    color: var(--coral-dark);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-icon {
    transition: transform 0.5s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Plus to Cross */
}

.faq-content {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease;
    padding: 0 24px;
}

.faq-item.active .faq-content {
    max-height: 200px; 
    opacity: 1;
    padding: 0 24px 24px 24px;
}
.faq-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   WAITLIST CONVERSION (Final Offer)
   -------------------------------------------------------------------------- */
.conversion-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blob-3 {
    width: 600px;
    height: 600px;
    background: var(--sage);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: float 8s ease infinite;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
}

.conversion-box {
    position: relative;
    background: var(--text-dark);
    color: white;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.conversion-icon {
    width: 60px;
    height: 60px;
    background: #44403C;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.conversion-box h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.price-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    margin: 20px 0 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.installments {
    font-size: 1.5rem;
    margin: 10px 0;
}
.installments span {
    font-size: 3rem;
    color: var(--coral);
    font-weight: 700;
}

.cash-price {
    font-size: 0.9rem;
    color: #A8A29E;
}

.btn-submit {
    display: inline-block;
    background: white;
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-bottom: 20px;
}

.btn-submit:hover {
    transform: scale(1.05);
    background: var(--coral);
}

.guarantee-soft {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #A8A29E;
    font-size: 0.95rem;
}
.guarantee-soft i {
    color: var(--coral);
}
