:root {
    /* Colors */
    --c-coffee-dark: #1A130C;
    --c-sepia-dark: #2C1B10;
    --c-sepia-light: #5A3A22;
    --c-cream-bg: #FDFBF7;
    --c-cream-card: #FAF6ED;
    --c-gold: #D4AF37;
    --c-gold-hover: #F3CA45;
    --c-whatsapp: #25D366;
    --c-whatsapp-hover: #128C7E;
    
    --c-magical-glow: #60c5ff;
    
    --text-primary: #1A130C;
    --text-secondary: #4A3C31;
    --text-light: #FDFBF7;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Variables */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-sm: 0 4px 6px -1px rgba(44, 27, 16, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(44, 27, 16, 0.1);
    --shadow-glow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--c-sepia-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Utilities */
.w-100 { width: 100%; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--c-whatsapp) 0%, var(--c-whatsapp-hover) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 200%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--c-sepia-dark);
    border: 2px solid var(--c-sepia-dark);
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--c-sepia-dark);
    color: var(--c-cream-bg);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--c-whatsapp) 0%, var(--c-whatsapp-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--c-sepia-dark);
}

.brand-icon {
    color: var(--c-gold);
}

.brand strong {
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 0% 100%, rgba(44, 27, 16, 0.05) 0%, transparent 40%);
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--c-sepia-dark);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--c-coffee-dark);
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--c-gold);
    display: inline-block;
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    margin-bottom: 30px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--c-gold);
}

.star-filled {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.image-glass-card {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(44, 27, 16, 0.2);
    border: 1px solid rgba(255,255,255,0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.image-glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 35px 60px -15px rgba(44, 27, 16, 0.3);
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
}

.floating-badge {
    position: absolute;
    background: rgba(26, 19, 12, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.badge-before {
    top: 30px;
    left: 10px;
}

.badge-after {
    bottom: 30px;
    right: 10px;
    background: rgba(212, 175, 55, 0.9);
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--c-coffee-dark);
    color: var(--text-light);
    position: relative;
}

.process .section-title {
    color: var(--c-gold);
}

.process .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

/* Horizontal line between steps */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -25%;
    width: 50%;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--c-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    transition: var(--transition);
}

.step-icon svg {
    width: 36px;
    height: 36px;
}

.step-card:hover .step-icon {
    background: var(--c-gold);
    color: var(--c-coffee-dark);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(44, 27, 16, 0.05);
}

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

.pricing-card.popular {
    background: var(--c-cream-card);
    border: 2px solid var(--c-gold);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
    padding: 50px 40px;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-gold);
    color: var(--c-coffee-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--c-coffee-dark);
}

.card-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
    min-height: 45px;
}

.card-price {
    margin: 30px 0;
    color: var(--c-coffee-dark);
    display: flex;
    align-items: flex-start;
}

.card-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;
    margin-right: 4px;
}

.card-price .value {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.card-price .cents {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;
}

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

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

.features li svg {
    width: 20px;
    height: 20px;
    color: var(--c-gold);
    flex-shrink: 0;
}

.features li.disabled {
    color: #999;
    text-decoration: line-through;
}

.features li.disabled svg {
    color: #999;
}

/* Addons */
.addons {
    margin-top: 60px;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.addons h3 {
    color: var(--c-sepia-dark);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.addons-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.addon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--c-cream-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(44, 27, 16, 0.05);
    min-width: 200px;
    transition: var(--transition);
}

.addon-item:hover {
    border-color: var(--c-gold);
    transform: translateY(-3px);
}

.addon-item svg {
    color: var(--c-gold);
    width: 28px;
    height: 28px;
}

.addon-name {
    font-weight: 600;
    color: var(--c-coffee-dark);
}

.addon-price {
    color: #25D366;
    font-weight: 700;
}

/* Creation Services Section */
.creation-services {
    padding: 100px 0;
    background-color: var(--c-coffee-dark);
    color: var(--text-light);
}

.creation-services .section-title {
    color: var(--c-gold);
}

.creation-services .section-subtitle {
    color: rgba(255,255,255,0.8);
}

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

.creation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.creation-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--c-gold);
}

.card-image {
    width: 100%;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.creation-card:hover .card-image img {
    transform: scale(1.05);
}

.creation-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.creation-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--c-cream-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(44, 27, 16, 0.05);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: var(--c-gold);
    margin-bottom: 20px;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.avatar {
    width: 50px;
    height: 50px;
    background: var(--c-sepia-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer h4 {
    font-size: 1.1rem;
    color: var(--c-coffee-dark);
    margin-bottom: 4px;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
}

.accordion-item {
    background: white;
    border: 1px solid rgba(44, 27, 16, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-coffee-dark);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
}

.accordion-header svg {
    transition: transform 0.3s ease;
    color: var(--c-sepia-light);
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: var(--c-coffee-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-info .brand {
    color: white;
    margin-bottom: 20px;
}

.footer-info .brand-icon {
    color: var(--c-gold);
}

.badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--c-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* New Gallery Section */
.gallery {
    padding: 60px 0 40px;
    background: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px auto 0;
    max-width: 700px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.gallery-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover {
    border-color: var(--c-gold);
    transform: translateY(-5px);
}

.gallery-card:hover img {
    transform: scale(1.03);
}
