/* =====================================================
   CLÍNICA DE ESTÉTICA AVANÇADA - ESTILOS COMPLETOS
   ===================================================== */

/* =====================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b28a7d;
    --primary-dark: #9a7268;
    --primary-light: #d4ad9d;
    --secondary: #faf9f7;
    --text-dark: #2c2c2c;
    --text-medium: #555;
    --text-light: #777;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--secondary);
    color: var(--text-dark);
    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/NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =====================================================
   BOTÕES
   ===================================================== */
.btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    padding: 14px 32px;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(178, 138, 125, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(178, 138, 125, 0.4);
}

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

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

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 10px;
}

/* =====================================================
   SEÇÃO HERO
   ===================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(178, 138, 125, 0.15), rgba(212, 173, 157, 0.1)),
        url('https://images.pexels.com/photos/3997991/pexels-photo-3997991.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 173, 157, 0.2), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(250, 245, 242, 0.92) 0%,
            rgba(250, 245, 242, 0.88) 50%,
            rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(5px);
}

.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 173, 157, 0.25), transparent 60%);
    top: 15%;
    right: 8%;
    animation: pulse 5s ease-in-out infinite;
}

.hero-circle-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(178, 138, 125, 0.2), transparent 60%);
    bottom: 20%;
    right: 25%;
    animation: pulse 6s ease-in-out infinite 1s;
}

.hero-circle-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 173, 157, 0.22), transparent 60%);
    top: 50%;
    right: 12%;
    animation: pulse 7s ease-in-out infinite 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(178, 138, 125, 0.15);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(178, 138, 125, 0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    margin-bottom: 32px;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* =====================================================
   SECTION UTILITIES
   ===================================================== */
section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* =====================================================
   DIFERENCIAIS
   ===================================================== */
.diferenciais {
    background: white;
    padding: 80px 0;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.diferencial-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================================================
   SOBRE
   ===================================================== */
.about {
    background: var(--secondary);
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-badge span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 1rem;
}

/* =====================================================
   TRATAMENTOS
   ===================================================== */
.tratamentos {
    background: white;
    padding: 100px 0;
}

.tratamentos-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f0f0f0;
}

.tratamentos-slider::-webkit-scrollbar {
    height: 10px;
}

.tratamentos-slider::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.tratamentos-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.tratamento-card {
    min-width: 350px;
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.tratamento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tratamento-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tratamento-card:hover img {
    transform: scale(1.05);
}

.tratamento-content {
    padding: 30px;
}

.tratamento-categoria {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(178, 138, 125, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tratamento-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tratamento-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tratamento-beneficios {
    list-style: none;
    margin: 20px 0;
}

.tratamento-beneficios li {
    padding: 5px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* =====================================================
   AGENDAMENTO
   ===================================================== */
.agendamento {
    background: var(--secondary);
    padding: 100px 20px;
}

.agendamento-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.agendamento-info {
    padding-right: 20px;
}

.agendamento-info h2 {
    margin-bottom: 16px;
}

.agendamento-info>p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.agendamento-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(178, 138, 125, 0.1);
}

.form-group select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    color: #999;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agendamento-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item strong {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .tratamento-card {
        min-width: 300px;
    }

    .agendamento-box {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 60px 0;
    }
}

/* =====================================================
   SMOOTH SCROLL
   ===================================================== */
html {
    scroll-behavior: smooth;
}