/* ========================================
   RAÍZA STYLES - MOBILE-FIRST
   Design System: Estilo que Cuida
   ======================================== */

/* ===================================
   RAÍZA COLOR TOKENS
   =================================== */

:root {
    /* Raíza Accent (Verde Suave/Dourado) */
    --raiza-50: #f7f9f7;
    --raiza-100: #e8f0e8;
    --raiza-500: #8ba888; /* Base (verde suave) */
    --raiza-700: #6d8a6a; /* Hover */
    --raiza-900: #4a5e48; /* Dark */
    --raiza-gold: #d4af37; /* Dourado para destaques */
}

/* ===================================
   RESET & BASE
   =================================== */

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

body {
    font-family: "Inter", sans-serif;
    background: #faf8f5;
    color: #2d3436;
    overflow-x: hidden;
}

.font-serif {
    font-family: "Playfair Display", serif;
}

.font-cta {
    font-family: "Poppins", sans-serif;
}

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: 5rem 1.5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

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

h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    line-height: 1.1;
    color: #2c3829;
    margin-bottom: 1.5rem;
}

h1 .highlight {
    color: #8ba888;
    font-style: italic;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #2c3829;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }
}


/* ===================================
   RAÍZA CTA BUTTONS
   =================================== */

.raiza-cta {
    background: var(--raiza-500);
    color: white;
}

@media (hover: hover) {
    .raiza-cta:hover {
        background: var(--raiza-700);
    }
}

.raiza-cta:active {
    transform: scale(0.98);
}

.raiza-accent {
    color: var(--raiza-500);
}

/* ===================================
   RAÍZA HERO
   =================================== */

.hero {
    padding: 6rem 1rem 3rem; /* Mobile */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        #e8ddd3 0%,
        transparent 40%
    );
    opacity: 0.6;
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 4rem;
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: white;
    border: 1px solid #e8ddd3;
    border-radius: 50px;
    color: #c9a86a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #5a6f5c;
    margin-bottom: 2rem;
    max-width: 36rem;
}

@media (min-width: 1024px) {
    .hero-text {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 1023px) {
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-group {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .cta-group {
        justify-content: flex-start;
    }
}

.btn-primary {
    padding: 1rem 2rem;
    background: #8ba888;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    animation: pulse-soft 3s infinite;
    display: inline-block;
    text-align: center;
    min-height: 44px;
}

@media (hover: hover) {
    .btn-primary:hover {
        background: #5a6f5c;
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(139, 168, 136, 0.4);
    }
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(201, 168, 106, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 106, 0);
    }
}

.hero-note {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    border-left: 2px solid rgba(201, 168, 106, 0.5);
    font-size: 0.75rem;
    color: #6b7280;
    max-width: 180px;
}

@media (min-width: 640px) {
    .hero-note {
        display: flex;
    }
}

.hero-note strong {
    color: #c9a86a;
    font-weight: 700;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        justify-content: flex-end;
    }
}

.hero-image {
    position: relative;
    width: 300px;
    height: 375px;
    border-radius: 150px 150px 40px 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .hero-image {
        width: 400px;
        height: 500px;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s;
}

@media (hover: hover) {
    .hero-image:hover img {
        transform: scale(1.05);
    }
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(90, 111, 92, 0.2),
        transparent
    );
    pointer-events: none;
}

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 240px;
    border: 1px solid #e8ddd3;
    z-index: 20;
}

@media (min-width: 768px) {
    .floating-card {
        bottom: 2.5rem;
        left: -3rem;
    }
}

.avatars {
    display: flex;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #8ba888;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.floating-card p {
    font-size: 0.75rem;
    color: #5a6f5c;
    font-style: italic;
    line-height: 1.4;
}


/* ===================================
   RAÍZA HERO
   =================================== */

.hero {
    padding: 6rem 1rem 3rem; /* Mobile */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        #e8ddd3 0%,
        transparent 40%
    );
    opacity: 0.6;
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 4rem;
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(139, 168, 136, 0.1);
    border: 1px solid rgba(139, 168, 136, 0.3);
    border-radius: 50px;
    color: var(--raiza-700);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

/* Mobile: 1 coluna */
.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

/* Tablet: 2 colunas */
@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 colunas */
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e8ddd3;
    transition: all 0.3s;
}

@media (hover: hover) {
    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(139, 168, 136, 0.15);
    }
}

.benefit-card:active {
    transform: scale(0.98);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(139, 168, 136, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #636e72;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ===================================
   INGREDIENTS SECTION
   =================================== */

/* Mobile: 1 coluna */
.ingredients-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Tablet: 2 colunas */
@media (min-width: 640px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 4 colunas */
@media (min-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ingredient-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e8ddd3;
    text-align: center;
    transition: all 0.3s;
}

@media (hover: hover) {
    .ingredient-card:hover {
        transform: translateY(-4px);
        border-color: var(--raiza-500);
    }
}

.ingredient-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.ingredient-name {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.ingredient-benefit {
    font-size: 0.875rem;
    color: #636e72;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

/* Mobile: 1 coluna */
.steps-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

/* Desktop: 3 colunas */
@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--raiza-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-family: "Playfair Display", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #636e72;
    line-height: 1.6;
}

/* ===================================
   PRICING SECTION
   =================================== */

/* Mobile: 1 coluna */
.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

/* Desktop: 3 colunas */
@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e8ddd3;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

@media (hover: hover) {
    .pricing-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}

.pricing-card.featured {
    border: 2px solid var(--raiza-500);
    box-shadow: 0 10px 40px rgba(139,168,136,0.15);
    position: relative;
}

@media (min-width: 1024px) {
    .pricing-card.featured {
        transform: translateY(-1rem);
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--raiza-500);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card.dark {
    background: #2d3436;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: #636e72;
    font-weight: 400;
}

.pricing-card.dark .price-period {
    color: #b2bec3;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e8ddd3;
}

.pricing-card.dark .pricing-features {
    border-color: #4a5e48;
}

.pricing-features li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #636e72;
}

.pricing-card.dark .pricing-features li {
    color: #dfe6e9;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

/* Mobile: 1 coluna */
.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

/* Tablet: 2 colunas */
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 colunas */
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e8ddd3;
}

.testimonial-text {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(139, 168, 136, 0.2);
}

.testimonial-name {
    font-weight: 600;
    color: #2d3436;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #636e72;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--raiza-500) 0%, var(--raiza-700) 100%);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-white {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--raiza-700);
    border-radius: 0.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .btn-white:hover {
        box-shadow: 0 10px 40px rgba(255,255,255,0.3);
        transform: scale(1.05);
    }
}

.btn-outline-white {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .btn-outline-white:hover {
        background: rgba(255,255,255,0.1);
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-list {
    max-width: 48rem;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid #e8ddd3;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

@media (hover: hover) {
    .faq-item:hover {
        border-color: var(--raiza-500);
    }
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #2d3436;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px; /* Touch target */
}

.faq-icon {
    transition: transform 0.3s;
    color: #b2bec3;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--raiza-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 1.5rem;
    color: #636e72;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* ===================================
   MODALS
   =================================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    width: 100%;
    position: relative;
    z-index: 10;
    animation: modalIn 0.3s;
}

@keyframes modalIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
}

@media (hover: hover) {
    .modal-close:hover {
        color: #6b7280;
    }
}

/* ===================================
   COOKIE BANNER
   =================================== */

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e8ddd3;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 50;
    animation: slideUp 0.5s;
}

.cookie-banner.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cookie-text {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-text {
        text-align: left;
    }
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-height: 44px;
}

.btn-cookie-accept {
    background: #2c3829;
    color: white;
    border: none;
}

@media (hover: hover) {
    .btn-cookie-accept:hover {
        background: #8ba888;
    }
}

.btn-cookie-manage {
    background: transparent;
    color: #6b7280;
    border: 1px solid #e8ddd3;
}

@media (hover: hover) {
    .btn-cookie-manage:hover {
        background: #f9fafb;
    }
}

/* ===================================
   STICKY MOBILE CTA
   =================================== */

.sticky-mobile {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 40;
    animation: slideUp 0.5s;
}

.sticky-mobile.active {
    display: block;
}

@media (min-width: 768px) {
    .sticky-mobile {
        display: none !important;
    }
}

.btn-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #2c3829;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-height: 44px;
}

/* ===================================
   STORYTELLING SECTION
   =================================== */

.storytelling {
    background: rgba(232, 221, 211, 0.2);
    border-top: 1px solid rgba(232, 221, 211, 0.5);
    border-bottom: 1px solid rgba(232, 221, 211, 0.5);
}

.storytelling .container {
    max-width: 48rem;
}

.storytelling p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.storytelling .highlight {
    font-weight: 500;
    color: #5a6f5c;
}

.storytelling .quote {
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #2c3829;
    margin-top: 2rem;
}

.story-image {
    width: 100%;
    height: 300px;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .story-image {
        height: 400px;
    }
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* ===================================
   HOW IT WORKS - STEPS
   =================================== */

.steps {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.step-number {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

@media (hover: hover) {
    .step:hover .step-number {
        transform: scale(1.1) rotate(3deg);
    }
}

.step-number.primary {
    background: #8ba888;
    color: white;
}

.step-number.secondary {
    background: white;
    border: 4px solid #e8ddd3;
    color: #5a6f5c;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3829;
    margin-bottom: 0.75rem;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
    max-width: 20rem;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-image {
    height: 500px;
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .benefits-image {
        height: 700px;
    }
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s;
}

@media (hover: hover) {
    .benefits-image:hover img {
        transform: scale(1.05);
    }
}

.benefits-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 56, 41, 0.1);
}

.benefits-list {
    list-style: none;
    margin-top: 2.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

@media (hover: hover) {
    .benefits-list li:hover {
        background: #faf8f5;
        border-color: #e8ddd3;
    }
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #8ba888;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.benefits-list li span {
    color: #5a6f5c;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.4;
}

/* ===================================
   GIFT SECTION
   =================================== */

.gift {
    background: #2c3829;
    color: #faf8f5;
    position: relative;
}

.gift::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.05;
}

.gift-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .gift-container {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 768px) {
    .gift-text {
        text-align: left;
    }
}

.gift h2 {
    color: white;
}

.gift h2 .highlight {
    color: #8ba888;
}

.gift-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 1.5rem;
}

.gift-card {
    background: #faf8f5;
    color: #2c3829;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid #c9a86a;
    position: relative;
    transition: transform 0.3s;
    max-width: 28rem;
    margin: 0 auto;
}

@media (hover: hover) {
    .gift-card:hover {
        transform: scale(1.05);
    }
}

.gift-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #c9a86a;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 0.5rem;
}

.gift-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed #e8ddd3;
}

.gift-header small {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8ba888;
    font-weight: 700;
    font-size: 0.75rem;
}

.gift-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3829;
    margin: 0.5rem 0;
}

.gift-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #c9a86a;
    margin-top: 0.5rem;
}

.gift-price small {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 400;
    margin-top: 0.25rem;
}

.gift-list {
    list-style: none;
    margin-bottom: 2rem;
}

.gift-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.btn-gift {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #2c3829;
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
    min-height: 44px;
}

@media (hover: hover) {
    .btn-gift:hover {
        background: #8ba888;
    }
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: #2d3436;
    color: rgba(250, 248, 245, 0.8);
    padding: 4rem 1.5rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo img {
    height: 40px;
    opacity: 0.8;
    filter: grayscale(1);
    transition: all 0.3s;
}

@media (hover: hover) {
    .footer-logo:hover img {
        filter: grayscale(0);
    }
}

footer h4 {
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(250, 248, 245, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

@media (hover: hover) {
    .footer a:hover {
        color: white;
    }
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}
