@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* HERO */
.hero {
    background: url('https://images.fresha.com/lead-images/placeholders/beauty-salon-36.jpg?class=venue-gallery-large&dpr=2') center / cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.88);
    padding: 50px;
    text-align: center;
    max-width: 600px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 25px;
}

/* BOTÕES */
.btn {
    background: #c08a7a;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
}

.btn-light {
    background: #fff;
    color: #c08a7a;
}

/* SEÇÕES */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

/* SERVIÇOS */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    padding: 25px;
    border: 1px solid #eee;
    font-weight: 500;
}

/* GALERIA */
.gallery {
    background: #f9f9f9;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 20px;
}

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

/* CTA */
.cta {
    background: #c08a7a;
    color: white;
    text-align: center;
}

/* SOBRE */
.about {
    background: #faf7f5;
}

.about-box {
    max-width: 700px;
}

.about p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* SERVIÇOS */
.services-subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1rem;
    color: #777;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #c08a7a;
    transform: translateY(-4px);
}