/*
Theme Name: Supra Odontologia
Description: Tema profissional para clínica odontológica com foco em conversão
Version: 1.0
Author: Supra Odontologia
*/

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

:root {
    /* Supra Odontologia Brand Colors */
    --background: hsl(43, 25%, 90%); /* #EAE7DF - bege claro */
    --foreground: hsl(27, 8%, 22%); /* #393633 - grafite sofisticado */
    --primary: hsl(42, 25%, 56%); /* #AA9B71 - dourado elegante */
    --primary-foreground: hsl(43, 25%, 95%);
    --secondary: hsl(43, 15%, 85%);
    --secondary-foreground: hsl(27, 8%, 22%);
    --muted: hsl(43, 15%, 85%);
    --muted-foreground: hsl(27, 8%, 45%);
    --border: hsl(43, 15%, 80%);
    --card: hsl(43, 25%, 95%);
    --card-foreground: hsl(27, 8%, 22%);
    --radius: 0.5rem;
    --gradient-primary: linear-gradient(135deg, hsl(42, 25%, 56%), hsl(42, 25%, 56%, 0.8));
    --shadow-elegant: 0 10px 30px -10px hsl(42, 25%, 56%, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-elegant);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px hsl(42, 25%, 56%, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

/* Layout */
.section {
    padding: 4rem 0;
}

.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-gallery {
    background-color: var(--card);
    padding: 6rem 0;
}

.section-cta {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    text-align: center;
    padding: 4rem 0;
}

.section-form {
    padding: 6rem 0;
}

.section-about {
    background-color: var(--card);
    padding: 6rem 0;
}

/* Interactive Question */
.interactive-question {
    text-align: center;
    padding: 2rem;
}

.question-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.question-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.question-buttons .btn {
    min-width: 150px;
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.result-message {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -10px hsl(42, 25%, 56%, 0.2);
}

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

.gallery-item-content {
    padding: 1.5rem;
    text-align: center;
}

/* Form */
.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(42, 25%, 56%, 0.1);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: var(--primary-foreground);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .question-title {
        font-size: 2rem;
    }
    
    .question-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .question-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .lead-form {
        margin: 0 1rem;
        padding: 2rem;
    }
}