/* 
   THE BLOOM - PREMIUM LANDING PAGE STYLING
   Paleta: Off-white Orgânico (#FAF8F5), Preto Obsidiana (#111111), Dourado Champanhe Vibrante (#E0B853)
   Tipografia: Playfair Display & Inter
*/

/* ================= VARIABLES & CUSTOM PROPERTIES ================= */
:root {
    --bg-primary: #FAF8F5;
    --bg-alt: #F3EFE9;
    --text-primary: #111111;
    --text-muted: #555555;
    --text-light: #888888;
    --color-accent: #111111;
    --color-gold: #eaab0c;       /* Dourado Vibrante Metálico */
    --color-gold-hover: #bf8406; /* Hover do Dourado */
    --color-gold-light: #FAF4E5;
    --border-color: #E3DCD5;
    --white: #FFFFFF;
    
    /* Typography */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    
    /* Shadow */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 15px 40px rgba(17, 17, 17, 0.06);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
}

/* ================= RESET & BASE STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--color-gold);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

/* Base layouts */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5rem 0;
}

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

.hidden {
    display: none !important;
}

/* ================= ANNOUNCEMENT INFINITE MARQUEE ================= */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: #000000;
    color: #FFFFFF;
    z-index: 1000;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee-anim 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding-right: 3.5rem;
}

.marquee-content span {
    font-family: var(--font-body);
}

.marquee-content strong {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

@keyframes marquee-anim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= TYPOGRAPHY & TITLES ================= */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-tag.tag-white {
    color: var(--color-gold);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.text-white {
    color: var(--white) !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

/* ================= BUTTONS & SHIMMER ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--white);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    background-color: rgba(17, 17, 17, 0.02);
}

.btn-light {
    background-color: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-text {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px dashed var(--border-color);
}

.btn-text:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* Shimmer metallic shine effect */
.shimmer {
    position: relative;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shimmer-anim 4.5s infinite ease-in-out;
}

.btn-light.shimmer::after {
    background: linear-gradient(
        to right,
        rgba(17, 17, 17, 0) 0%,
        rgba(17, 17, 17, 0.08) 50%,
        rgba(17, 17, 17, 0) 100%
    );
}

@keyframes shimmer-anim {
    0% { left: -60%; }
    15% { left: 140%; }
    100% { left: 140%; }
}

/* Icons within buttons */
.icon-svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 1.5;
}

/* ================= NAVBAR & HEADER ================= */
.main-header {
    position: fixed;
    top: 35px;                     /* Offset by announcement bar height */
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 999;
    transition: var(--transition-smooth), top 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Nav scrolling style */
.main-header.scrolled {
    background-color: rgba(250, 248, 245, 0.96);
    height: 75px;
    top: 35px;                        /* Keep below announcement bar on scroll */
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

/* Bottom aligned navbar structure as requested */
.header-container {
    width: 90%;
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;         /* aligned bottom */
    justify-content: space-between;
    padding-bottom: 1.5rem;        /* spacious padding bottom */
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    padding-bottom: 1rem;
}

.logo-link {
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}

.logo-img-white, .logo-img-dark {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-img-dark {
    display: none;
}

.main-header.scrolled .logo-img-white {
    display: none;
}

.main-header.scrolled .logo-img-dark {
    display: block;
}

/* Nav Menu (Epicentralized and separated from logo/button) */
.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 2.5rem;
    min-width: 0;
}

.nav-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;                   /* Less spaced menu gaps for better margins */
    margin-bottom: -0.2rem;        /* align exactly with bottom edges */
}

.nav-menu ul li {
    text-align: center;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.main-header.scrolled .nav-link {
    color: var(--text-muted);
}

.main-header.scrolled .nav-link:hover {
    color: var(--text-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: flex-end;
    margin-bottom: -0.2rem;
    flex-shrink: 0;
}

.btn-nav-catalog {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-nav-catalog:hover {
    background-color: var(--white);
    color: var(--text-primary);
    border-color: var(--white);
}

.main-header.scrolled .btn-nav-catalog {
    border-color: var(--color-accent);
    color: var(--text-primary);
}

.main-header.scrolled .btn-nav-catalog:hover {
    background-color: var(--color-accent);
    color: var(--white);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.main-header.scrolled .mobile-menu-toggle .bar {
    background-color: var(--text-primary);
}

/* ================= HERO SECTION ================= */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    animation: zoom-out-bg 20s ease-out forwards;
}

@keyframes zoom-out-bg {
    from { transform: scale(1.07); }
    to { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.45) 0%,
        rgba(17, 17, 17, 0.5) 50%,
        rgba(17, 17, 17, 0.55) 100%
    );
    z-index: -1;
}

.hero-content {
    padding: 0 !important;
    text-align: center;
    max-width: 800px;
    margin-top: 3.5rem;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.hero-btns .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-btns .btn-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Mouse Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.8s infinite ease-in-out;
}

@keyframes scroll-wheel-anim {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

/* ================= QUICK BENEFITS ================= */
.quick-benefits {
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    padding: 3.5rem 0 !important;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.benefit-img-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 280px;
}

/* ================= BRAND MANIFESTO ================= */
.manifesto-section {
    background-color: var(--bg-primary);
    overflow: hidden;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

/* Manifesto Images Overlapping */
.manifesto-images {
    position: relative;
    padding-bottom: 60px;
}

.img-wrapper {
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.main-img {
    width: 82%;
    height: 480px;
}

.sub-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 280px;
    border: 6px solid var(--bg-primary);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background-color: var(--color-accent);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-num {
    font-family: var(--font-title);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--color-gold);
    margin-bottom: 0.2rem;
}

.badge-txt {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Manifesto Content */
.manifesto-text {
    padding-right: 2rem;
}

.manifesto-divider {
    width: 50px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 1.5rem 0;
}

.manifesto-paragraph {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.manifesto-paragraph.highlight {
    font-family: var(--font-title);
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
}

.manifesto-points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.point-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.point-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ================= FAMÍLIAS OLFATIVAS ================= */
.categories-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.category-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.category-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.15);
    transition: var(--transition-smooth);
}

.category-card:hover .category-img-container img {
    transform: scale(1.08);
}

.category-card:hover .category-overlay {
    background-color: rgba(17, 17, 17, 0.25);
}

.category-info {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.category-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.category-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: inline-block;
}

/* ================= SENSORY QUIZ ================= */
.quiz-section {
    background-color: var(--color-accent);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.quiz-bg-effect {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, rgba(0,0,0,0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.quiz-container {
    padding: 6.5rem 0 !important;
    max-width: 800px !important;
}

.quiz-intro {
    text-align: center;
}

.quiz-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.quiz-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    box-shadow: var(--shadow-glass);
}

.quiz-progress-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quiz-progress-bar {
    height: 2px;
    width: 33.3%;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.quiz-steps-count {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

.quiz-question {
    font-size: 1.8rem;
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.quiz-opt {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: left;
    color: var(--white);
}

.quiz-opt:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.04);
}

.quiz-opt.selected {
    border-color: var(--color-gold);
    background: rgba(197, 168, 128, 0.08);
    box-shadow: inset 0 0 0 1px var(--color-gold);
}

.opt-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.opt-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.opt-text strong {
    font-size: 0.95rem;
    font-weight: 500;
}

.opt-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.quiz-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.quiz-nav .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.quiz-nav .btn-secondary:hover {
    border-color: var(--white);
}

/* Quiz Outcome Section */
.outcome-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.outcome-visual {
    position: relative;
}

.outcome-img-frame {
    height: 280px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.outcome-img-frame img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.outcome-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.outcome-sparkles span {
    position: absolute;
    color: var(--color-gold);
    font-size: 1.2rem;
    animation: blink-sparkle 3s infinite ease-in-out;
}

.outcome-sparkles span:nth-child(1) { top: 10%; left: 10%; }
.outcome-sparkles span:nth-child(2) { bottom: 15%; right: 10%; animation-delay: 1s; }
.outcome-sparkles span:nth-child(3) { top: 50%; right: -5%; animation-delay: 2s; }

@keyframes blink-sparkle {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1.2); }
}

.outcome-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.outcome-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.2rem;
}

.outcome-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.outcome-info p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.8rem;
}

.outcome-aromas {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2.2rem;
}

.aroma-chip {
    font-size: 0.78rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.outcome-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
}

.outcome-actions .btn-primary {
    padding: 0.9rem 1.8rem;
    font-size: 0.82rem;
}

/* ================= CATÁLOGO DE PRODUTOS ================= */
.products-section {
    background-color: var(--bg-primary);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.products-header .header-left {
    max-width: 600px;
}

.products-header .section-subtitle {
    margin: 0;
    text-align: left;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.product-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.prod-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    background-color: var(--white);
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.badge-new { background-color: var(--color-gold); color: var(--white); }
.badge-exclusive { background-color: var(--text-primary); color: var(--white); }
.badge-premium { border: 1.5px solid var(--text-primary); }
.badge-aroma { background-color: var(--bg-alt); }
.badge-gift { background-color: #2F3E46; color: var(--white); }

/* Images transitions */
.prod-img-container {
    height: 330px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 6s ease;
}

.prod-img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .prod-img.default {
    opacity: 0;
}

.product-card:hover .prod-img.hover {
    opacity: 1;
    transform: scale(1.03);
}

/* Meta Data card */
.prod-meta {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.prod-title {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
}

.prod-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.prod-specs {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

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

.spec-label {
    color: var(--text-primary);
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.prod-price {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
}

.btn-buy-whatsapp {
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background-color: var(--color-accent);
    color: var(--white);
    border: 1px solid var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-buy-whatsapp:hover {
    background-color: transparent;
    color: var(--color-accent);
}

/* PDF Promo Card */
.catalog-promo-card {
    grid-column: span 1;
    background-color: var(--bg-alt) !important;
    border: 1px dashed var(--color-gold) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog-promo-content {
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.promo-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.catalog-promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.catalog-promo-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.p-feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.p-feat .icon-svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.catalog-promo-content .btn-primary {
    width: 100%;
    margin-top: auto;
}

/* ================= ART OF CANDLE MAKING ================= */
.process-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 4.5rem auto 0 auto;
    padding-left: 3rem;
    border-left: 1px solid var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Redesigned to sit perfectly on the left side of the dot */
.timeline-number {
    position: absolute;
    left: -5.8rem;                 /* shifted further left so it clears the line and dot! */
    top: -0.2rem;
    font-family: var(--font-title);
    font-size: 2rem;               /* slightly more elegant scale */
    color: var(--color-gold);
    line-height: 1;
    background-color: var(--bg-alt);
    padding: 0.1rem 0.4rem;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Bullet Dot on timeline (Epicentralized correction) */
.timeline-item::after {
    content: '';
    position: absolute;
    left: -3rem;                 /* aligns exactly on the border line */
    transform: translateX(-50%); /* perfectly centers regardless of diameter */
    top: 0.8rem;
    width: 12px;                 /* slightly thicker for visibility */
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: 2.5px solid var(--bg-alt);
}

/* Alquimia Grid, Brand Pillars and Candle Care */
.alquimia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.alquimia-column {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.alquimia-column:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.alquimia-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    border-bottom: 1.5px solid var(--color-gold);
    padding-bottom: 0.8rem;
    display: inline-block;
}

.pillar-item {
    margin-bottom: 1.8rem;
}

.pillar-item:last-child {
    margin-bottom: 0;
}

.pillar-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pillar-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pillars-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
}

.pillars-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.8rem;
}

.care-intro {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.care-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.care-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.care-number {
    color: var(--color-gold);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.care-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.care-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Alquimia Grid */
@media (max-width: 768px) {
    .alquimia-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3.5rem;
        padding-top: 3.5rem;
    }
    
    .alquimia-column {
        padding: 2rem;
    }
}

/* ================= TESTIMONIALS SLIDER ================= */
.testimonials-section {
    background-color: var(--bg-primary);
}

.testimonial-slider-container {
    max-width: 750px;
    margin: 4rem auto 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.rating-stars {
    color: var(--color-gold);
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.2em;
}

.testimonial-text {
    font-family: var(--font-title);
    font-size: 1.55rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2.2rem;
}

.testimonial-author {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3.5rem;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot:hover {
    background-color: var(--text-light);
}

.dot.active {
    background-color: var(--color-accent);
    transform: scale(1.5);
}

/* Customer Testimonial Suggestion Box */
.testimonial-suggestion-box {
    margin-top: 5.5rem;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--border-color);
    padding: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    backdrop-filter: blur(10px);
}

.testimonial-suggestion-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.testimonial-suggestion-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2.2rem;
}

.suggest-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}

.suggest-field {
    margin-bottom: 1.2rem;
}

.suggest-field input, .suggest-field textarea {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.suggest-field input:focus, .suggest-field textarea:focus {
    border-color: var(--color-gold);
}

.suggest-rating-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.rating-select {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.stars-select {
    display: flex;
    flex-direction: row-reverse;   /* Right-to-left hover triggers */
    gap: 0.2rem;
}

.star-item {
    font-size: 1.4rem;
    color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

/* Hover highlights right to left */
.star-item.active,
.star-item:hover,
.star-item:hover ~ .star-item {
    color: var(--color-gold);
}

/* ================= FAQ COLLAPSIBLE ================= */
.faq-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.faq-left p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
}

.faq-cta-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
}

.faq-cta-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.faq-cta-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.btn-faq-wa {
    width: 100%;
}

/* FAQ accordion list */
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.faq-question {
    width: 100%;
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-primary);
}

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

.faq-arrow {
    width: 18px;
    height: 18px;
    color: var(--text-light);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 2.2rem;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-bottom: 1.8rem;
}

/* FAQ Active state toggle */
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-gold);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

/* ================= FOOTER ================= */
.main-footer {
    background-color: #0A0A0A;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 4rem;
    padding-top: 5rem !important;
    padding-bottom: 4rem !important;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 35px;
}

.footer-logo span {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ================= TOAST NOTIFICATION STYLING ================= */
#toast-container {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast-msg {
    background-color: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.8rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    max-width: 420px;
    animation: slide-in-toast 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
    border-left: 4px solid var(--color-gold);
}

.toast-msg.closing {
    animation: slide-out-toast 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slide-in-toast {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-out-toast {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

.toast-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.toast-title {
    font-weight: 600;
    font-size: 0.88rem;
}

.toast-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.toast-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    color: var(--text-light);
    font-size: 1rem;
}

.toast-close:hover {
    color: var(--text-primary);
}

/* ================= BACK TO TOP ================= */
#back-to-top {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 998;
    transition: var(--transition-smooth);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: var(--color-accent);
    color: var(--white);
    border-color: var(--color-accent);
}

/* ================= SCROLL REVEAL ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    /* Safe container scales */
}

/* Tablet / Netbook (1024px) */
@media (max-width: 1024px) {
    html { font-size: 15px; }
    
    .nav-menu {
        margin: 0 1rem;
    }
    
    .nav-menu ul {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }
    
    .benefits-grid { gap: 2rem; }
    .manifesto-grid { gap: 3rem; }
    .categories-grid { gap: 1.5rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { gap: 3rem; }
}

/* Landscape Mobile / Mini Tablet (768px) */
@media (max-width: 768px) {
    html { font-size: 14px; }
    
    /* Header menu toggle */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-primary);
        z-index: 1000;
        display: flex;
        align-items: center;
        padding-left: 4rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
        color: var(--text-primary) !important;
    }
    
    /* Change toggle color on menu open */
    .nav-menu.active ~ .header-actions .mobile-menu-toggle .bar {
        background-color: var(--text-primary) !important;
    }
    
    .nav-menu.active ~ .header-actions .mobile-menu-toggle .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-menu.active ~ .header-actions .mobile-menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-menu.active ~ .header-actions .mobile-menu-toggle .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .btn-nav-catalog {
        display: none; /* Keep simple on mobile */
    }
    
    /* Hero */
    .hero-title { font-size: 3rem; }
    
    /* Grids to single cols */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .manifesto-images {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .outcome-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .outcome-info {
        align-items: center;
    }
    
    .outcome-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .outcome-actions .btn {
        width: 100%;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .timeline-wrapper {
        margin-left: 1.5rem;
        padding-left: 2rem;
    }
    
    .timeline-number {
        left: -4.5rem;               /* perfect positioning in mobile */
        font-size: 1.6rem;
    }
    
    .timeline-item::after {
        left: -2rem;                 /* perfectly centers in mobile too */
    }
    
    .testimonial-suggestion-box {
        padding: 2rem 1.5rem;
    }
    
    .suggest-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Portrait Mobile (480px and below) */
@media (max-width: 480px) {
    .container { padding: 4rem 0; }
    
    .hero-title { font-size: 2.6rem; }
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-btns .btn { width: 100%; }
    
    .quiz-card { padding: 2rem 1.5rem; }
    .quiz-question { font-size: 1.4rem; }
    .quiz-opt { padding: 1.2rem; gap: 0.8rem; }
    .opt-emoji { font-size: 1.5rem; }
    
    .prod-img-container { height: 280px; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
