/* style.css */
:root {
    /* Palette: Premium Dark Mocha & Warm Pink */
    --primary-color: #E79AA2;
    --primary-hover: #D8858D;
    --secondary-color: #FAF7F2;
    
    --dark-bg: #1B1516;        /* Fundo Principal Escuro */
    --light-bg: #241D1E;       /* Fundo Secundário/Alternado */
    --card-bg: #2E2527;        /* Fundo dos Cartões */
    --card-hover: #3A2E30;     /* Estado Hover dos Cartões */
    
    --text-main: #F5EBE6;      /* Texto Claro Principal */
    --text-muted: #BDB0AA;     /* Texto Secundário */
    --white: #ffffff;
    
    --font-heading: 'Parkinsans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Typography & Buttons */
.btn {
    display: inline-block;
    padding: 16px 35px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-hero-secondary {
    background-color: rgba(27, 21, 22, 0.6) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 16px 35px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background-color: var(--primary-color) !important;
    color: var(--dark-bg) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Header Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(27, 21, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    padding: 15px 0;
}

#navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.nav-links li a:not(.btn):hover {
    color: var(--primary-color);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.desktop-lang {
    margin-left: 15px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
    color: var(--primary-color);
}

.lang-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Mobile Nav Toggle Button */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-nav-toggle.open .hamburger {
    background-color: transparent;
}

.mobile-nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transform: scale(1.02);
    transition: transform 10s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(27, 21, 22, 0.95) 0%, rgba(27, 21, 22, 0.65) 50%, rgba(27, 21, 22, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 688px;
    padding-top: 100px;
}

.trust-markers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.trust-markers span {
    background: rgba(231, 154, 162, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(231, 154, 162, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.6);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Split Layouts (About & Contact) */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
}

.about-text, .contact-info {
    flex: 1;
}

.about-text h2, .contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.about-image, .contact-form {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    object-position: center bottom;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--white);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-top-color: var(--primary-color);
}

.service-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    background-color: var(--card-hover);
}

.stars {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-main);
}

.review-card strong {
    color: var(--white);
}

/* Contact */
.contact {
    background-color: var(--dark-bg);
}

.contact-details {
    list-style: none;
    margin-top: 30px;
}

.contact-details li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--light-bg);
    color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(231, 154, 162, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #120D0E;
    color: rgba(245, 235, 230, 0.5);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    margin-bottom: 10px;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile & Tablet Styles */
@media (min-width: 993px) {
    .slide-bg {
        background-position: center 10%;
    }
}

@media (max-width: 992px) {
    .mobile-controls {
        display: flex;
    }

    .desktop-lang {
        display: none;
    }

    nav#navMenu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease, visibility 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav#navMenu.active {
        max-height: 450px;
        padding: 20px 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .split-layout {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(27, 21, 22, 0.7) 0%, rgba(27, 21, 22, 0.95) 100%);
    }

    .hero-content {
        padding-top: 120px;
    }

    .slide-bg {
        background-position: center top;
    }

    .about-image img {
        height: 380px;
        object-position: center 85%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-markers {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-image img {
        height: 320px;
        object-position: center bottom;
    }

    .service-image-wrapper {
        height: 200px;
    }
}