/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #FAF6F0; /* Warm off-white / almond milk */
    --color-bg-card: #FFFFFF;
    --color-text-primary: #3C2A21; /* Deep espresso */
    --color-text-secondary: #5D4037; /* Warm earthy brown */
    --color-text-muted: #8D6E63; /* Soft taupe */
    --color-accent: #8B5E3C; /* Warm terracotta / hazelnut */
    --color-accent-hover: #70482B;
    --color-gold: #C5A880; /* Soft warm gold */
    --color-gold-light: #F4EFEA;
    --color-moda-accent: #C77966; /* Elegant rose terracotta */
    
    /* WhatsApp Colors */
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    --color-whatsapp-deep: #075E54;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Layout & Geometry */
    --border-radius-xl: 28px;
    --border-radius-lg: 20px;
    --border-radius-md: 14px;
    --border-radius-sm: 8px;
    --border-radius-pill: 50px;
    
    /* Animations & Shadows */
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-subtle: 0 10px 30px rgba(60, 42, 33, 0.05);
    --shadow-card: 0 20px 50px rgba(60, 42, 33, 0.08);
    --shadow-button: 0 8px 25px rgba(37, 211, 102, 0.28);
    --shadow-button-hover: 0 14px 35px rgba(37, 211, 102, 0.38);
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   LAYOUT CONTAINER
   ========================================================================== */
.container {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    max-width: 1150px;
    width: 100%;
    min-height: 720px;
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

/* ==========================================================================
   IMAGE SECTION (LEFT)
   ========================================================================== */
.image-section {
    position: relative;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FBF8F4 0%, #F5EDE4 100%);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(60, 42, 33, 0.12);
    background-color: #EFE7DE;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* Floating Badge on Image */
.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(60, 42, 33, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.85);
    z-index: 2;
    transition: var(--transition-smooth);
}

.badge-icon {
    color: var(--color-accent);
    font-size: 0.95rem;
}

.floating-badge span {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-primary);
}

/* ==========================================================================
   CONTENT SECTION (RIGHT)
   ========================================================================== */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 48px;
}

.content-wrapper {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 24px;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-gold);
    opacity: 0.45;
    max-width: 44px;
}

.divider-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--color-accent);
}

.tagline {
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Main Message */
.main-message {
    margin-bottom: 28px;
    text-align: center;
}

.slogan {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    color: var(--color-accent);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 12px;
}

.description {
    color: var(--color-text-secondary);
    font-size: 0.94rem;
    line-height: 1.65;
    font-weight: 400;
}

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

/* ==========================================================================
   CALL TO ACTION AREA (TWO BUTTONS)
   ========================================================================== */
.cta-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: #FFFFFF;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-button);
}

/* Background Gradients */
.cta-lar {
    background: linear-gradient(135deg, #25D366 0%, #1EAE54 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.cta-moda {
    background: linear-gradient(135deg, #20BA56 0%, #128C7E 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

/* Hover & Active states */
.cta-button:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-button-hover);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.99);
}

/* Button Left Content */
.btn-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.btn-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.btn-main-icon {
    font-size: 1.35rem;
    color: #FFFFFF;
}

.btn-badge-wa {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: #FFFFFF;
    color: #25D366;
    border-radius: 50%;
    font-size: 0.85rem;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.btn-category-pill {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.22);
    padding: 2px 8px;
    border-radius: var(--border-radius-pill);
    display: inline-block;
    align-self: flex-start;
    color: #FFFFFF;
}

.btn-heading {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    color: #FFFFFF;
}

.btn-detail {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Button Arrow */
.btn-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.btn-arrow i {
    font-size: 0.9rem;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.cta-button:hover .btn-arrow {
    background: #FFFFFF;
}

.cta-button:hover .btn-arrow i {
    color: var(--color-whatsapp-deep);
    transform: translateX(2px);
}

.btn-subtext {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.btn-subtext i {
    color: var(--color-accent);
}

/* ==========================================================================
   FEATURES LIST
   ========================================================================== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--color-bg-primary);
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(197, 168, 128, 0.18);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-2px);
    background-color: #F6F0E6;
    box-shadow: 0 4px 12px rgba(60, 42, 33, 0.04);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(139, 94, 60, 0.1);
    color: var(--color-accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.25);
    padding-top: 20px;
}

.footer-badge {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    color: var(--color-text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-accent {
    color: var(--color-accent);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.animate-fade-in {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 960px) {
    body {
        padding: 12px;
    }
    
    .container {
        grid-template-columns: 1fr;
        min-height: auto;
        max-width: 520px;
        border-radius: var(--border-radius-lg);
    }
    
    .image-section {
        padding: 20px 20px 0 20px;
        height: 440px;
    }

    .image-wrapper {
        min-height: 0;
        height: 100%;
    }
    
    .content-section {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .image-section {
        height: 370px;
        padding: 14px 14px 0 14px;
    }
    
    .brand-title {
        font-size: 2.7rem;
    }

    .slogan {
        font-size: 1.4rem;
    }
    
    .content-section {
        padding: 28px 16px;
    }

    .cta-button {
        padding: 14px 16px;
    }

    .btn-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .btn-main-icon {
        font-size: 1.15rem;
    }

    .btn-heading {
        font-size: 0.98rem;
    }

    .btn-detail {
        font-size: 0.74rem;
    }

    .floating-badge {
        padding: 8px 12px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .floating-badge span {
        font-size: 0.72rem;
    }
}
