/* Variáveis de cores - Tema Dourado Elegante para Salão de Beleza */
:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e4b7;
    --soft-beige: #e8dfd6;
    --dark-beige: #d4c4b5;
    --cream: #f9f5f0;
    --dark-cream: #e8dfd6;
    --charcoal: #2a2a2a;
    --light-charcoal: #3a3a3a;
    --white: #ffffff;
    --accent-bronze: #cd7f32;
    --light-bronze: #e8b896;
    --gradient-gold: linear-gradient(135deg, #d4af37, #f4e4b7);
    --gradient-beige: linear-gradient(135deg, #e8dfd6, #f9f5f0);
    --gradient-bronze: linear-gradient(135deg, #cd7f32, #e8b896);
    --gradient-cream: linear-gradient(135deg, #f9f5f0, #ffffff);
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia Elegante */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.8rem;
}

h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: var(--dark-gold);
}

p {
    margin-bottom: 1.2rem;
    color: var(--light-charcoal);
    font-weight: 400;
    font-size: 1.1rem;
}

a {
    color: var(--dark-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

/* Botões Elegantes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    gap: 10px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--charcoal);
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: none;
    padding: 12px 28px;
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border-color: transparent;
}

/* Hero Section Elegante */
.hero {
    background: linear-gradient(135deg, rgba(244, 228, 183, 0.9), rgba(249, 245, 240, 0.9)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0.1;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.15; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--light-charcoal);
    font-weight: 300;
}

/* Seções comuns */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--light-charcoal);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Cards de serviços elegantes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gold);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.service-img {
    height: 240px;
    background: var(--gradient-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-img {
    background: var(--gradient-gold);
}

.service-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    color: var(--dark-gold);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--dark-gold);
    font-weight: 500;
    font-size: 1.1rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Depoimentos elegantes */
.testimonials {
    background: linear-gradient(135deg, var(--cream), var(--white));
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    color: var(--light-gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-left-color: var(--dark-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--light-charcoal);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
    color: var(--charcoal);
}

.testimonial-author p {
    color: var(--dark-gold);
    font-size: 0.9rem;
    margin: 0;
}

/* Horário de funcionamento elegante */
.hours {
    background: linear-gradient(135deg, rgba(244, 228, 183, 0.9), rgba(249, 245, 240, 0.9)), url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    text-align: center;
    position: relative;
}

.hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0.05;
    animation: shimmer 6s ease-in-out infinite;
}

.hours-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--light-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gold);
    color: var(--light-charcoal);
    font-size: 1.1rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--charcoal);
}

.hours-list li span:last-child {
    font-weight: 400;
    color: var(--dark-gold);
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .service-card, .testimonial-card {
        margin: 0 1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações elegantes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeitos de brilho adicionais */
.service-card:hover .service-img i {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias de performance */
.service-card, .testimonial-card {
    will-change: transform;
}

/* Efeitos dourados adicionais */
.service-card:hover::before {
    background: var(--gradient-bronze);
}

.testimonial-card:hover {
    border-left-color: var(--accent-bronze);
}

.btn:hover {
    background: var(--gradient-bronze);
}