/* ==========================================
   VARIABLES ET RESET
   ========================================== */
:root {
    --primary-pink: #FF69B4;
    --light-pink: #FFB6C1;
    --dark-pink: #FF1493;
    --soft-pink: #FFF0F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    --shadow-hover: 0 8px 25px rgba(255, 105, 180, 0.3);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 32px;
    color: var(--primary-pink);
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-pink);
}

.btn-header {
    background: var(--primary-pink);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--white) 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-content h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-pink);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary i {
    font-size: 24px;
}

.btn-large {
    padding: 22px 50px;
    font-size: 20px;
}

/* ==========================================
   SECTIONS
   ========================================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* ==========================================
   RESULTS SECTION
   ========================================== */
.results {
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.result-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.result-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.cta-box h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 30px;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary-pink);
}

.cta-box .btn-primary:hover {
    background: var(--soft-pink);
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products {
    background: var(--soft-pink);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-pink);
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 36px;
    color: var(--primary-pink);
    margin-bottom: 30px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.product-price .price {
    background: var(--primary-pink);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 22px;
    box-shadow: var(--shadow);
}

.product-price .currency {
    color: var(--text-light);
    font-weight: 600;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.feature i {
    color: var(--primary-pink);
    font-size: 24px;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits {
    background: var(--white);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    background: var(--soft-pink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--soft-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-author {
    color: var(--primary-pink);
    font-weight: 600;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--soft-pink);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.benefit-card h3 {
    font-size: 24px;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

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

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    padding: 100px 0;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 40px;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-pink);
}

.cta-content .btn-primary:hover {
    background: var(--soft-pink);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary-pink);
}

.footer-logo h3 {
    font-size: 24px;
    color: var(--white);
}

.footer-content p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-pink);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in {
    animation: slideIn 1s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .btn-large {
        padding: 18px 35px;
        font-size: 18px;
    }

    .product-actions {
        flex-direction: column;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-info h3 {
        font-size: 28px;
    }
}
