:root {
    --bg-color: #0c0c0c;
    --text-color: #ffffff;
    --main-red: #e61e2a;
    --dark-red: #bd1822;
    --gray-text: #a0a0a0;
    --card-bg: #1a1a1a;
    --container-max: 480px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Header */
.header {
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(230, 30, 42, 0.1), transparent);
}

.logo {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(230, 30, 42, 0.5));
}

/* Hero Section */
.hero {
    padding: 40px 0;
}

.hero-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.headline {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, var(--main-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.sub-headline {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-button,
.ig-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--main-red);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(230, 30, 42, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.drive-icon {
    width: 24px;
    height: 24px;
}

.cta-button:hover,
.ig-button:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(230, 30, 42, 0.6);
}

.ig-icon {
    width: 24px;
    height: 24px;
}

/* Gallery Section */
.gallery {
    padding: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(230, 30, 42, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 50px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffffff;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--main-red);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.benefit-desc {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 50px 0;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.photo-gallery-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(230, 30, 42, 0.2);
}

/* Social Proof */
.social-proof {
    padding: 40px 0;
    background: linear-gradient(to top, rgba(230, 30, 42, 0.05), transparent);
}

.proof-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.highlight {
    color: var(--main-red);
}

/* Footer */
.footer {
    padding: 40px 0 100px;
    /* Space for sticky button */
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* WhatsApp sticky CTA */
.whatsapp-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 440px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.whatsapp-cta:active {
    transform: translateX(-50%) scale(0.95);
}

.wa-icon {
    width: 24px;
    height: 24px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}