/* VARIÁVEIS DE COR E PALETA */
:root {
    --color-gold-olive: #9C8D5C;
    --color-ice-white: #E8E8E8;
    --color-charcoal: #222222;
    --color-bg-dark: #121212;
    --color-text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-ice-white);
    overflow-x: hidden;
    position: relative;
}

/* ESTILO DO CANVAS DE PARTÍCULAS (#bg-particles) */
#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2;
}

/* LUZES AMBIENTAIS EM SEGUNDO PLANO */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
}

.orb-1 {
    top: -100px;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156, 141, 92, 0.8) 0%, rgba(0,0,0,0) 70%);
    animation: orbMove1 14s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: -150px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 141, 92, 0.6) 0%, rgba(0,0,0,0) 70%);
    animation: orbMove2 18s ease-in-out infinite alternate;
}

@keyframes orbMove1 {
    0% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-30%, 80px) scale(1.15); }
    100% { transform: translate(-60%, 40px) scale(0.9); }
}

@keyframes orbMove2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -60px) scale(1.2); }
    100% { transform: translate(40px, -100px) scale(0.85); }
}

/* KEYFRAMES DE ANIMAÇÕES DE INTERFACE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(156, 141, 92, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(156, 141, 92, 0.5);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loadingBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* INTRO / SPLASH SCREEN */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 18, 18, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#intro-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-content {
    text-align: center;
    animation: zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-ice-white);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(156, 141, 92, 0.4);
}

.intro-title span {
    color: var(--color-gold-olive);
}

.intro-loader {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold-olive), transparent);
    margin: 0 auto;
    animation: loadingBar 1.5s infinite ease-in-out;
    border-radius: 2px;
}

/* NAVBAR */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(232, 232, 232, 0.05);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-ice-white);
}

.logo span {
    color: var(--color-gold-olive);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--color-ice-white);
}

.btn-header {
    background: var(--color-gold-olive);
    color: var(--color-charcoal);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-header:hover {
    background: #b2a26d;
    box-shadow: 0 0 15px rgba(156, 141, 92, 0.4);
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.badge-google {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(156, 141, 92, 0.12);
    border: 1px solid rgba(156, 141, 92, 0.3);
    color: var(--color-gold-olive);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-ice-white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold-olive);
    color: var(--color-charcoal);
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both, pulseGlow 3s infinite 1.6s;
}

.btn-main:hover {
    background: #b2a26d;
    transform: translateY(-4px) scale(1.03);
}

.btn-main i {
    transition: transform 0.3s ease;
}

.btn-main:hover i {
    transform: translateX(5px);
}

/* EFEITOS DE SCROLL REVEAL */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* SEÇÕES GENÉRICAS */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--color-ice-white);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--color-text-muted);
}

/* GALERIA CONHEÇA NOSSO ESPAÇO */
.space-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.space-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100pxpx;
    border: 1px solid rgba(232, 232, 232, 0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.space-item:hover img {
    transform: scale(1.08);
}

.space-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95), transparent);
    display: flex;
    align-items: flex-end;
}

.space-overlay span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-gold-olive);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* CARDS DE DIFERENCIAIS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.cards-grid .card:nth-child(1) { transition-delay: 0.1s; }
.cards-grid .card:nth-child(2) { transition-delay: 0.2s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.3s; }
.cards-grid .card:nth-child(4) { transition-delay: 0.4s; }
.cards-grid .card:nth-child(5) { transition-delay: 0.5s; }
.cards-grid .card:nth-child(6) { transition-delay: 0.6s; }

.card {
    background: var(--color-charcoal);
    border: 1px solid rgba(232, 232, 232, 0.05);
    padding: 35px 25px;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(156, 141, 92, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(156, 141, 92, 0.15);
}

.card-icon {
    font-size: 2rem;
    color: var(--color-gold-olive);
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
    color: #b2a26d;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-ice-white);
}

.card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* GALERIA DE MODELOS DE CORTE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    border: 1px solid rgba(232, 232, 232, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95), transparent);
    display: flex;
    align-items: flex-end;
}

.gallery-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-ice-white);
}

/* TABELA DE PREÇOS */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-charcoal);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(232, 232, 232, 0.05);
    cursor: pointer;
    transition: 0.3s;
}

.price-item:hover {
    border-color: rgba(156, 141, 92, 0.4);
}

.price-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--color-gold-olive);
    cursor: pointer;
}

.price-info h4 {
    font-size: 1.1rem;
    color: var(--color-ice-white);
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold-olive);
}

.total-box {
    max-width: 700px;
    margin: 30px auto 0;
    background: rgba(156, 141, 92, 0.08);
    border: 1px solid rgba(156, 141, 92, 0.3);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-text span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.total-text h3 {
    font-size: 1.8rem;
    color: var(--color-ice-white);
}

.btn-main.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* LOCALIZAÇÃO & CONTATO */
.contact-card {
    background: var(--color-charcoal);
    border: 1px solid rgba(232, 232, 232, 0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--color-gold-olive);
}

.contact-item h4 {
    color: var(--color-ice-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--color-gold-olive);
    color: var(--color-gold-olive);
    padding: 16px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-location:hover {
    background: rgba(156, 141, 92, 0.12);
    transform: translateY(-2px);
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--color-charcoal);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(232, 232, 232, 0.05);
}

.stars {
    color: var(--color-gold-olive);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    color: var(--color-ice-white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info strong {
    display: block;
    color: var(--color-ice-white);
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.3rem; }
    .nav-links { display: none; }
    .intro-title { font-size: 2rem; }
    .contact-buttons { flex-direction: column; }
}