:root {
    --nude: #E3D8D1;
    --bege: #F5F2EF;
    --offwhite: #FAF9F7;
    --rose: #E8D5D2;
    --dark-rose: #B85C70;
    --champagne: #E2D0B6;
    --gold: #D2B582;
    --black: #1A1A1A;
    --text: #4A4542;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s ease;
}

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

html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-sans);
    background-color: var(--offwhite);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--black);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--dark-rose);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 92, 112, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bege);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--dark-rose);
    opacity: 0;
    letter-spacing: 2px;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-medium);
    background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 100%);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: inline-flex;
    align-items: center;
}
.logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-medium);
}
.header.scrolled .logo img {
    height: 80px;
}
.logo:hover img {
    transform: scale(1.05);
}
.nav-menu {
    display: flex;
    gap: 2rem;
}
.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    color: var(--black);
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dark-rose);
    transition: var(--transition-medium);
}
.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-medium);
}
.btn-primary {
    background-color: var(--black);
    color: var(--offwhite);
    border: 1px solid var(--black);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--black);
}
.btn-outline {
    border: 1px solid var(--dark-rose);
    color: var(--black);
}
.btn-outline:hover {
    background-color: var(--dark-rose);
    color: var(--offwhite);
}
.btn-text {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--text);
}
.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--dark-rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}
.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* for parallax */
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(250, 249, 247, 0.9) 0%, rgba(250, 249, 247, 0.4) 50%, rgba(250, 249, 247, 0) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-text-wrapper {
    max-width: 900px;
}
.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
    text-shadow: 0 4px 25px rgba(255, 255, 255, 0.7);
}
.hero-subtitle-wrapper {
    margin-bottom: 40px;
}
.hero-subtitle {
    font-size: 1.05rem;
    font-family: var(--font-sans);
    color: #444;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 55px;
    font-weight: 500;
}
.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--dark-rose);
}
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Sobre Section */
.sobre {
    padding: 120px 0;
    background-color: var(--offwhite);
}
.sobre-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.sobre-image-wrapper {
    flex: 1;
    position: relative;
}
.image-mask {
    border-radius: 20px 200px 20px 200px;
    overflow: hidden;
    height: 600px;
}
.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.image-mask:hover img {
    transform: scale(1.05);
}
.floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card-2 {
    bottom: auto;
    top: 60px;
    left: auto;
    right: -20px;
}
.floating-card .number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--black);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 5px;
}
.floating-card .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
    font-weight: 600;
}
.sobre-content {
    flex: 1;
}
.section-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-rose);
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
}
.sobre-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #666;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background-color: var(--bege);
    text-align: center;
}
.quote-text {
    font-size: 3rem;
    line-height: 1.3;
    color: var(--black);
}
.quote-text span {
    font-style: italic;
    color: var(--dark-rose);
}

/* Serviços */
.servicos {
    padding: 120px 0;
    background-color: var(--offwhite);
}
.services-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
}
.service-row.reverse {
    flex-direction: row-reverse;
}
.service-row-img {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.service-row-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}
.service-row:hover .service-row-img img {
    transform: scale(1.05);
}
.service-row-content {
    flex: 1;
    padding: 20px;
}
.service-row-content h3 {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--black);
    margin-bottom: 25px;
}
.service-row-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

/* Galeria Masonry */
.galeria {
    padding: 100px 0;
    background-color: var(--bege);
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:nth-child(1) { grid-column: span 8; height: 500px; }
.gallery-item:nth-child(2) { grid-column: span 4; height: 500px; }
.gallery-item:nth-child(3) { grid-column: span 12; height: 400px; }
.gallery-item:nth-child(4) { grid-column: span 6; height: 450px; }
.gallery-item:nth-child(5) { grid-column: span 6; height: 450px; }

/* Produtos */
.produtos {
    padding: 120px 0;
}
.produtos-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.produtos-content { flex: 1; }
.produtos-image {
    flex: 1;
    position: relative;
}
.produtos-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--dark-rose) 0%, transparent 70%);
    opacity: 0.15;
    z-index: -1;
    filter: blur(40px);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--bege);
}
.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}
.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}
.accordion-header h3 {
    font-size: 1.2rem;
    font-family: var(--font-sans);
}
.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--dark-rose);
    transition: transform var(--transition-fast);
}
.accordion-item.active .icon {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-content p {
    padding-bottom: 25px;
    color: #555;
}

/* CTA Final */
.cta-final {
    position: relative;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26,26,26,0.6), rgba(26,26,26,0.8));
}
.cta-content h2 {
    color: var(--offwhite);
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.2;
}

/* Footer */
.footer {
    background-color: var(--nude);
    padding: 80px 0 20px;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #555;
}
.footer-col a:hover {
    color: var(--dark-rose);
}
.footer-bottom {
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #FFF;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-medium);
    animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #1EBE5D;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .sobre-container, .produtos-container, .service-row, .service-row.reverse { flex-direction: column; gap: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .cta-content h2 { font-size: 2.5rem; }
    .nav-menu { display: none; } /* Mobile menu needed */
    .service-row-img img { height: 400px; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .footer-container { grid-template-columns: 1fr; }
    .gallery-item {
        grid-column: span 12 !important;
        height: 380px !important;
    }
    .service-row-content h3 { font-size: 2rem; }
    .service-row-img img { height: 300px; }
}
