:root {
    --bg-gradient: linear-gradient(135deg, #2a164b 0%, #3e1b6a 100%);
    --text-light: #ffffff;
    --primary-color: #f03e3e; /* Red for fat burning text */
    --btn-color: #4ade80; /* Green button */
    --btn-hover: #22c55e;
    --shape-red: #ff3b30;
    --shape-purple: #8a2be2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.main-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

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

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--btn-color);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
    margin-bottom: 3rem;
    text-align: left;
    line-height: 1.2;
}

.cta-button i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.cta-button:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 222, 128, 0.5);
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.8;
}

.badge i {
    font-size: 1.2rem;
}

/* Visuals section */
.hero-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.visual-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.badge-mes-mulher {
    position: absolute;
    top: 50px;
    left: 0px;
    z-index: 3;
    text-align: right;
}

.mes-da {
    background: transparent;
    border: 1px solid #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
}

.mulher {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.8;
    display: block;
    margin-top: 5px;
}

.woman-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    z-index: 2;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border: 5px solid rgba(255,255,255,0.1);
}

.product-image {
    position: absolute;
    bottom: -50px;
    right: 20px;
    width: 250px;
    z-index: 4;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
    animation: float 4s ease-in-out infinite;
    background: radial-gradient(circle, #8a2be2 0%, #3e1b6a 100%);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Abstract Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--shape-red);
    top: -100px;
    right: -100px;
    opacity: 0.4;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--shape-purple);
    bottom: -200px;
    left: 30%;
    opacity: 0.5;
}

/* Floating tiny elements */
.floating-element {
    position: absolute;
    z-index: 5;
    animation: float-slow 6s ease-in-out infinite;
}

.heart-1 { top: 30%; left: 15%; color: #ff6b81; font-size: 2rem; filter: drop-shadow(0 0 10px rgba(255,107,129,0.8)); text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.heart-2 { top: 40%; right: 10%; color: #ff4757; font-size: 3rem; filter: drop-shadow(0 0 15px rgba(255,71,87,0.8)); animation-delay: 1s;}
.leaf-1 { bottom: 20%; right: -10%; color: #2ed573; font-size: 2.5rem; transform: rotate(45deg); filter: drop-shadow(0 0 10px rgba(46,213,115,0.5)); animation-delay: 2s;}
.leaf-2 { top: 10%; left: 40%; color: #7bed9f; font-size: 1.5rem; transform: rotate(-20deg); animation-delay: 0.5s;}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Cookie Consent Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Make sure it's on top of everything */
}

.cookie-modal {
    background: #1e1136;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: popup 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popup {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cookie-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cookie-modal p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-cookie {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background: var(--btn-color);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn-accept:hover {
    background: var(--btn-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        padding-top: 5rem;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .cta-button {
        justify-content: center;
        margin: 0 auto 2rem auto;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visuals {
        width: 100%;
        height: 500px;
    }
    
    .woman-image {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .woman-image {
        width: 250px;
        height: 250px;
    }
    
    .product-image {
        width: 180px;
        bottom: -20px;
        right: 10px;
    }
    
    .badge-mes-mulher {
        top: -30px;
    }
}
