/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary: #03302b;      /* Dark Teal */
    --secondary: #025146;    /* Slightly lighter Teal */
    --accent: #e2af40;       /* Gold */
    --accent-hover: #d4a038;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-warm: #fefbf8;
    --white: #ffffff;
    
    /* Spacing */
    --container-padding: 1.5rem;
    --max-width: 1200px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-back {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.nav-back:hover {
    transform: translateX(-3px);
}

/* Hero Section */
.hero-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem var(--container-padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(226, 175, 64, 0.15);
    color: #b48624;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(3, 48, 43, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(226, 175, 64, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 175, 64, 0.4);
}

.cta-button.secondary {
    background: var(--primary);
    color: #fff;
}

.cta-button.secondary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 48, 43, 0.2);
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
}

/* Benefits Section */
.benefits-section {
    background: #fff;
    padding: 4rem 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(3, 48, 43, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image {
    width: 100%;
    display: block;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.task-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.task-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Closing Section */
.closing-section {
    padding: 2rem 0 5rem;
}

.closing-card {
    background: radial-gradient(circle at top right, var(--secondary), var(--primary));
    color: white;
    border-radius: 24px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(3, 48, 43, 0.2);
}

.closing-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.closing-card p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.whatsapp-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.whatsapp-link:hover {
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-warm);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
        padding: 4rem var(--container-padding);
        text-align: left;
    }

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

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-container {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Swap image and text on desktop for story section */
    .story-image-wrapper {
        order: 2;
    }
    .story-content {
        order: 1;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}
