:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --bg-card-hover: #27272a;
    --text-primary: #f8fafc;
    --text-secondary: #a1a1aa;
    --accent-emerald: #10b981;
    --accent-cyan: #06b6d4;
    --accent-purple: #8b5cf6;
    --accent-orange: #f97316;
    --border-color: rgba(255, 255, 255, 0.1);

    --gradient-primary: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-cyan) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(6, 182, 212, 0.4) 100%);
    --gradient-purple: linear-gradient(135deg, #c084fc 0%, #7e22ce 100%);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.5rem;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 1000px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    height: 55px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.nav {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    top: -20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(9, 9, 11, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.badge-wrapper {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-emerald);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.shipping-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.icon-small {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
}

.hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
}

@media (min-width: 1024px) {
    .container.hero-container.hero-centered {
        grid-template-columns: 1fr;
    }
}

.hero-centered .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-centered .hero-subtitle {
    margin: 0 auto 2.5rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.hero-main-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mt-4 {
    margin-top: 2.5rem;
}

.hero-description-card {
    position: relative;
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding: 2rem;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
}

.hero-description-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description-card .card-glow {
    background: radial-gradient(circle at 50% -20%, rgba(6, 182, 212, 0.1), transparent 70%);
}

.hero-description-card:hover .card-glow {
    opacity: 1;
}

.desc-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.desc-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-cyan);
    opacity: 0.9;
}

.hero-description-card .section-desc {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- Hero Highlights --- */
.hero-highlights-card {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.hero-highlights-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-highlights-card .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    background: radial-gradient(circle at 50% -20%, rgba(16, 185, 129, 0.1), transparent 70%);
}

.hero-highlights-card:hover .card-glow {
    opacity: 1;
}

.highlights-grid {
    position: relative;
    z-index: 2;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: left;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.highlight-text {
    flex-grow: 1;
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Timeline --- */
.timeline-section {
    background: #111116;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: var(--border-color);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }

    .timeline-item:nth-child(odd) {
        float: left;
        clear: both;
        padding-right: 3rem;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        float: right;
        clear: both;
        padding-left: 3rem;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        align-items: flex-end;
    }
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #111116, 0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: calc(100% + 1.5rem - 7px);
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -23px;
    }
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.timeline-content:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-title {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.timeline-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline::after {
    content: '';
    display: table;
    clear: both;
}

/* --- Products Details --- */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.card-levis .card-glow {
    background: radial-gradient(circle at 50% -20%, rgba(249, 115, 22, 0.15), transparent 70%);
}

.card-puriv .card-glow {
    background: radial-gradient(circle at 50% -20%, rgba(16, 185, 129, 0.15), transparent 70%);
}

.product-card:hover .card-glow {
    opacity: 1;
}

.product-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.icon-orange {
    color: var(--accent-orange);
}

.icon-green {
    color: var(--accent-emerald);
}

.product-title {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.product-tag {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.card-levis .product-tag {
    color: var(--accent-orange);
}

.card-puriv .product-tag {
    color: var(--accent-emerald);
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.card-levis .benefit-list i {
    color: var(--accent-orange);
}

.card-puriv .benefit-list i {
    color: var(--accent-emerald);
}

/* --- Pricing --- */
.pricing {
    background: #111116;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--accent-emerald);
    background: linear-gradient(to bottom, #18181b, #121e1a);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--accent-emerald);
}

@media (min-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1.05);
        z-index: 10;
    }
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.package-contents {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--accent-cyan);
}

.pricing-body {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.price-installment {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent-emerald);
    font-weight: 600;
    margin-top: 1.5rem;
}

.shipping-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px dashed rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
}

.shipping-banner i {
    width: 48px;
    height: 48px;
    color: var(--accent-emerald);
}

.banner-text {
    display: flex;
    flex-direction: column;
}

.banner-text strong {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.banner-text span {
    color: var(--text-secondary);
}

/* --- Bonus Banner --- */
.bonus-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 4rem auto 0;
    max-width: 900px;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9), rgba(17, 17, 22, 0.95));
    border: 1px solid rgba(245, 158, 11, 0.3);
    /* Amber/Gold border */
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15), inset 0 0 20px rgba(245, 158, 11, 0.05);
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.bonus-icon {
    margin-bottom: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.bonus-content {
    flex-grow: 1;
}

.bonus-price-tag {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: inline-block;
}

@media (min-width: 768px) {
    .bonus-banner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 3rem;
    }

    .bonus-icon {
        margin-bottom: 0;
        margin-right: 2rem;
    }

    .bonus-content {
        padding-top: 0.5rem;
    }
}

/* --- Impact Quote Section --- */
.impact-quote-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, #111116, var(--bg-card));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.quote-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(24, 24, 27, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.quote-wrapper::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: rgba(16, 185, 129, 0.1);
    line-height: 1;
    z-index: 0;
}

.impact-text {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 300;
}

@media (min-width: 768px) {
    .impact-text {
        font-size: 2rem;
        line-height: 1.5;
    }
}

.font-bold {
    font-weight: 700;
}

/* --- Testimonials --- */
.testimonials {
    background: linear-gradient(to bottom, #111116, var(--bg-dark));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.quote-icon i {
    width: 32px;
    height: 32px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.bg-gradient-purple {
    background: var(--gradient-purple);
}

.bg-gradient-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.bg-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.author-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.rating {
    display: flex;
    gap: 0.125rem;
}

.star-filled {
    width: 14px;
    height: 14px;
    color: #fbbf24;
    fill: #fbbf24;
}

/* --- FAQ Section --- */
.faq {
    background: var(--bg-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(16, 185, 129, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-emerald);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-emerald);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
    border-top-color: rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* --- Detailed Benefits Section --- */
.detailed-benefits {
    background: var(--bg-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-detail-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.benefit-detail-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.benefit-content {
    flex-grow: 1;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.benefit-content p:last-child {
    margin-bottom: 0;
}

.benefit-content strong {
    color: var(--text-primary);
}

/* --- Benefits Table --- */
.table-responsive {
    overflow-x: auto;
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.benefits-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 500px;
}

.benefits-table th,
.benefits-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.benefits-table td {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefits-table tbody tr:last-child td {
    border-bottom: none;
}

.benefits-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.03);
}

.badge-product {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.badge-product.levis {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.badge-product.puriv {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.badge-product.both {
    background: var(--gradient-purple);
}

@media (max-width: 768px) {
    .benefit-detail-item {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Certifications (ANVISA) --- */
.certifications {
    background: var(--bg-dark);
    padding: 40px 0 80px;
}

.certification-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .certification-card {
        flex-direction: row;
        text-align: left;
        padding: 3rem 4rem;
    }
}

.cert-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.cert-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: var(--bg-dark);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-desc {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.link-group h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.link-group a:hover {
    color: var(--accent-emerald);
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        justify-content: flex-end;
    }
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.security-seals-img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    margin-bottom: 0.5rem;
}

.cnpj-text,
.copyright-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.8;
    text-align: center;
}