:root {
    --dark: #111;
    --light: #f6f6f6;
    --accent: #cfcfcf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: #222;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('images/PROJETO-6.jpeg') center/cover no-repeat;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.nav {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
}

.logo-img {
    height: 50px; /* altura do logo, ajuste conforme necessário */
    width: auto;
    display: block;
}

.menu {
    display: none;
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu-btn {
    font-size: 22px;
    cursor: pointer;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 600px;
    margin-top: 25vh;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
}

.section.dark {
    background: var(--dark);
    color: white;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

/* GRID LINE */
.grid {
    position: relative;
    padding-left: 30px;
}

.line {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #bbb;
}

/* SERVICES */
.services {
    display: grid;
    gap: 20px;
}

.services div {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* GALLERY */
.gallery {
    display: grid;
    gap: 20px;
}

.gallery-item {
    height: 70vh;
    background-size: cover;
    background-position: center;
}

/* CONTACT */
.contact span {
    display: block;
    margin-top: 10px;
}

/* FOOTER */
footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
    color: #888;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}


/* DESKTOP */
@media(min-width: 768px) {
    .menu {
        display: flex;
        gap: 30px;
    }

    .menu-btn {
        display: none;
    }

    .services {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 52px;
    }
}

/* SERVICES PREMIUM */
.services-premium h2 {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    gap: 50px;
}

.service-item {
    position: relative;
    padding-left: 60px;
    border-left: 1px solid rgba(255,255,255,0.25);
}

.service-number {
    position: absolute;
    left: -10px;
    top: 0;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--accent);
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-item p {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* DESKTOP */
@media(min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 100px;
    }
}

/* CONTATO PREMIUM */
.contato-premium h2 {
    margin-bottom: 20px;
}

.contato-texto {
    max-width: 420px;
    margin-bottom: 60px;
    color: rgba(255,255,255,0.8);
}

.contato-grid {
    display: grid;
    gap: 40px;
}

.contato-item {
    text-decoration: none;
    color: white;
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}

.contato-item:hover {
    border-left-color: white;
    transform: translateX(5px);
}

.contato-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.contato-valor {
    font-size: 18px;
}

/* DESKTOP */
@media(min-width: 768px) {
    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 80px;
    }
}

@media(min-width: 768px) {
    .logo-img {
        height: 70px; /* aumenta no desktop */
    }
}
