
:root {
    --bg: #fbf7ef;
    --accent: #7d1b1b; /* bordô da identidade */
    --gold: #caa04f;
    --muted: #8b7f71;
    --max-width: 1100px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
    color: #222;
    background: var(--bg);
    -webkit-font-smoothing: antialiased
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px
}

/* HERO */
.hero {
    gap: 20px;
    align-items: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('/imagens/bg-01.jpg');
    background-size: cover;
    background-position: 412px -202px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08)
}

.hero-inner {
    max-width: 720px
}

.logo-title {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 48px;
    letter-spacing: 2px;
    margin: 0
}

.subtitle {
    font-size: 18px;
    color: var(--muted);
    margin: 12px 0 20px
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    background: var(--accent);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none
}

.btn.secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid rgba(125, 27, 27, 0.12)
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns:1fr 420px;
    gap: 28px;
    align-items: center;
    padding: 44px 0
}

.about p {
    color: #3a3a3a;
    line-height: 1.6;
    margin: 0
}

.card-image {
    height: 320px;
    border-radius: 10px;
    background-image: url('/imagens/bg-02.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06)
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0
}

.service {
    background: white;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    text-align: center
}

.service h4 {
    margin: 8px 0;
    color: var(--accent)
}

.service p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px;
    margin: 24px 0
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(90deg, rgba(202, 160, 79, 0.08), rgba(202, 160, 79, 0.02));
    padding: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 24px 0
}

.cta-banner .txt {
    max-width: 720px
}

.cta-banner h3 {
    margin: 0;
    color: var(--accent);
    font-family: 'Playfair Display', serif
}

.cta-banner p {
    margin: 8px 0 0;
    color: var(--muted)
}

/* FOOTER */
footer {
    padding: 30px 0;
    color: var(--muted)
}

.contacts {
    display: flex;
    gap: 18px;
    align-items: center
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04)
}

/* Responsividade */
@media (max-width: 900px) {
    .about {
        grid-template-columns:1fr
    }

    .services {
        grid-template-columns:repeat(2, 1fr)
    }

    .gallery {
        grid-template-columns:repeat(2, 1fr)
    }

    .hero {
        padding: 40px
    }

    .logo-title {
        font-size: 36px
    }
}

@media (max-width: 560px) {
    .services {
        grid-template-columns:1fr
    }

    .hero{
        background-position: center ;
        background: none;
        border-bottom: 3px solid #7d1b1b;
    }

    .logo-top{
        width: 60%;
    }

    .subtitle{
        font-size: 14px;
    }
    .gallery {
        grid-template-columns:1fr
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start
    }
}

/* small decorative glitter top/bottom */
.glitter-top, .glitter-bottom {
    background-image: url('https://source.unsplash.com/1600x200/?gold,glitter');
    background-size: cover;
    height: 48px;
    border-radius: 8px;
    opacity: 0.9
}

.comments h3{
    font-family:'Playfair Display',serif;color:var(--accent);margin-bottom:12px
}

.comments blockquote {
    margin: 10px 0px;
    padding: 18px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    color: var(--muted)
}

.comments blockquote small{
    padding: 10px;
    color: #7d1b1b;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(125,27,27,0.8);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 2;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:hover {
    background: rgba(125,27,27,1);
}
