/* ==========================================================================
   Design System & Tokens
   ========================================================================== */
   :root {
    /* Color Palette */
    --gold: #D4AF37;
    --rose-gold: #B76E79;
    --beige: #EADCD3;
    --sand: #F4EBE8;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --dark-taupe: #4A403A;
    --black: #1A1A1A;
    --text-color: #333333;
    --text-light: #7A7A7A;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'Alex Brush', cursive;
    
    /* Animation Speeds */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease-out;
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Radii & Shadows */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(183, 110, 121, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-color);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography & Typography Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 600;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.text-center { text-align: center; }

.accent-text {
    font-family: var(--font-accent);
    font-size: 1.3em;
    font-weight: 400;
    color: var(--rose-gold);
    display: inline-block;
    line-height: 0.8;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--sand);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--rose-gold);
    color: var(--white);
    letter-spacing: 0.5px;
    border-color: var(--rose-gold);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.45); /* Glow rosa inicial */
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--rose-gold);
    border-color: var(--rose-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(183, 110, 121, 0.65); /* Glow intenso e vazado */
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
}

.btn-outline:hover {
    background-color: var(--rose-gold);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.45);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-taupe);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--rose-gold);
}

.nav-links a.btn-outline {
    color: var(--rose-gold);
}

.nav-links a.btn-outline:hover {
    color: var(--white);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
}

.lang-btn.active, .lang-btn:hover {
    color: var(--rose-gold);
}

.divider {
    width: 1px;
    height: 12px;
    background-color: var(--text-light);
    opacity: 0.5;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn .bar {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition-fast);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    padding: 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-color);
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav .language-switcher {
    padding-top: 16px;
    justify-content: center;
}

@media (max-width: 900px) {
    .nav-links, .language-switcher:not(.mobile) { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* ==========================================================================
   Hero Section (Split Layout)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background-color: var(--off-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.hero-left h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-taupe);
}

.hero-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 32px;
    margin-top: 40px;
}

.hero-stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.hero-stat-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
}

/* Hero Right Side - Image and Badges */
.hero-image-wrapper {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.hero-main-img {
    width: 100%;
    border-radius: 32px; 
    object-fit: cover;
    height: 600px;
    box-shadow: var(--shadow-soft);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    z-index: 10;
}

.badge-top-left {
    top: 60px;
    left: -80px;
    border-radius: 40px;
}

.badge-top-left-2 {
    top: 130px;
    left: -40px;
    border-radius: 40px;
}

.badge-bottom-left {
    bottom: 80px;
    left: -80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.badge-right-middle {
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .floating-badge {
        display: none; 
    }
    .hero-image-wrapper {
        margin-top: 40px;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 4px;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.abstract-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--sand);
    border-radius: var(--radius-lg);
    z-index: 1;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Services Section (Carousel)
   ========================================================================== */
.services {
    overflow: hidden; 
    position: relative;
    padding-bottom: 120px;
}

.carousel-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    margin-top: 60px;
}

.carousel-track {
    display: flex;
    gap: 32px;
    padding: 40px calc(50vw - 160px); /* Centering padding */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 320px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.4;
    filter: blur(5px);
    transform: scale(0.85);
    border: 1px solid transparent;
}

.carousel-card.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(183, 110, 121, 0.1);
    border-bottom: 3px solid var(--gold);
}

.card-img-wrapper {
    width: 100%;
    margin-bottom: 24px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 220px;
    border-radius: 0;
    object-fit: cover;
}

.carousel-card h3 {
    color: var(--dark-taupe);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    padding: 0 24px;
}

.carousel-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 24px 32px 24px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #D1D1D1;
    background: transparent;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--white);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* ==========================================================================
   Experience / Trust Section
   ========================================================================== */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-content {
    max-width: 550px;
}

.trust-list {
    list-style: none;
    margin-top: 32px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--rose-gold);
    flex-shrink: 0;
}

.image-wrapper-trust {
    position: relative;
    padding-bottom: 20px;
}

.interior-img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.trust-badge {
    position: absolute;
    bottom: 0;
    right: -30px;
    background-color: var(--white);
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .trust-badge {
        bottom: 0;
        right: 20px;
        left: 20px;
        justify-content: center;
    }
}

/* ==========================================================================
   Team Section (Gradient Mask)
   ========================================================================== */
.team-section {
    background-color: var(--white);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.team-container {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.team-content {
    flex: 0 0 50%;
    padding: 100px 40px 100px 80px;
    z-index: 2;
    background-color: var(--white);
}

.team-image-wrapper {
    flex: 0 0 50%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    min-height: 500px;
}

.team-gradient-mask {
    position: absolute;
    top: 0;
    left: -1px; /* offset to avoid pixel gaps */
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.team-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

@media(max-width: 900px) {
    .team-container {
        flex-direction: column-reverse;
    }
    .team-content {
        padding: 60px 24px;
        flex: 0 0 auto;
    }
    .team-image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        flex: 0 0 auto;
    }
    .team-gradient-mask {
        top: auto;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(to top, var(--white) 0%, rgba(255,255,255,0) 100%);
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details {
    list-style: none;
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.contact-details svg {
    color: var(--rose-gold);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--off-white);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--rose-gold);
    background-color: var(--white);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--dark-taupe);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .logo-text {
    color: var(--gold);
    font-size: 2rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-top: 8px;
    margin-bottom: 40px;
}

.footer-copy {
    opacity: 0.6;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    width: 100%;
}

/* ==========================================================================
   WhatsApp Floating
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--rose-gold);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(183, 110, 121, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible, .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ==========================================================================
   Image Hover Animations
   ========================================================================== */
.hero-main-img,
#about-img,
.team-img,
.interior-img,
.card-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-wrapper:hover .hero-main-img,
.image-wrapper:hover #about-img,
.team-image-wrapper:hover .team-img,
.image-wrapper-trust:hover .interior-img,
.carousel-card:hover .card-img-wrapper img {
    transform: scale(1.04);
}
