/*
Theme Name: Clínica Botox Landing
Description: Tema elegante para clínica de botox com design premium e otimizado para conversão
Version: 1.0
Author: Seu Nome
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Base colors - Clean and elegant */
    --background: hsl(0, 0%, 99%);
    --foreground: hsl(30, 8%, 20%);
    
    /* Primary - Elegant gold/champagne */
    --primary: hsl(45, 60%, 70%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-muted: hsl(45, 40%, 85%);
    
    /* Secondary - Soft skin tones */
    --secondary: hsl(20, 20%, 95%);
    --secondary-foreground: hsl(30, 8%, 25%);
    
    /* Premium design elements */
    --luxury-gold: hsl(45, 65%, 68%);
    --luxury-gold-dark: hsl(45, 70%, 60%);
    --skin-tone-light: hsl(25, 25%, 92%);
    --warm-white: hsl(30, 10%, 98%);
    
    /* Typography */
    --font-family-display: 'Playfair Display', serif;
    --font-family-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-family-body);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-display);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    color: white;
    box-shadow: 0 10px 30px -10px hsla(45, 65%, 68%, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px hsla(45, 65%, 68%, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--skin-tone-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-text h1 {
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--warm-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

/* Before After Section */
.before-after-section {
    padding: 6rem 0;
    background: var(--background);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.before-after-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.15);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.before-after-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.before-after-content {
    padding: 1.5rem;
    text-align: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .benefits-grid,
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.section-title {
    color: var(--foreground);
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--foreground);
    opacity: 0.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}