/* VARIÁVEIS DE COR RETIRADAS DIRETAMENTE DA IMAGEM DE REFERÊNCIA */
:root {
    --bg-header: #FAF5EE;             /* Bege Claro Superior */
    --bg-hero: #F7EFE5;               /* Bege do Bloco Café com Sensitivo */
    --bg-purple-section: #28022E;     /* Roxo Místico Profundo */
    --bg-purple-card: #3C0A46;        /* Cartão Interno do Roxo */
    --gold-accent: #C39A57;           /* Dourado dos Botões e Títulos */
    --gold-btn-bg: #BC8E42;          /* Fundo do Botão Agendar */
    --text-dark: #2C1D11;             /* Texto Marrom Escuro do Bloco Claro */
    --text-light: #FDFBF8;            /* Texto Branco/Creme nos Blocos Escuros */
    --bg-footer: #1F120B;             /* Tom de Madeira Escura no Rodapé */
    
    --font-heading: 'Cinzel', serif;
    --font-cursive: 'Alex Brush', cursive;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-hero);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. TOP NAVBAR */
.navbar {
    background-color: var(--bg-header);
    border-bottom: 1px solid rgba(195, 154, 87, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.btn-agendar {
    background-color: var(--gold-btn-bg);
    color: #FFF !important;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-agendar:hover {
    background-color: #96733B;
}

/* 2. HERO / CAFÉ COM O SENSITIVO (PARALLAX + GLOW) */
.hero-section {
    width: 100%;
    background: url('../../images/banner-cafe.jpg') center top / cover no-repeat;
    background-color: var(--bg-hero);
    position: relative;
    min-height: 85vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: background-position 0.05s ease-out;
}

/* Aura Dourada Mística Pulsante (Glow Pulse) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 22%;
    left: 12%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(195, 154, 87, 0.22) 0%, rgba(247, 239, 229, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 4s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes glowPulse {
    0% { transform: scale(0.95); opacity: 0.35; }
    100% { transform: scale(1.25); opacity: 0.75; }
}

/* BANNER DE TOPO NA PÁGINA DE SERVIÇOS (COM PARALLAX) */
.services-hero-section {
    width: 100%;
    background: url('../../images/banner-servicos.jpg') center center / cover no-repeat;
    background-color: var(--bg-hero);
    padding-top: 22%;
    min-height: 220px;
    overflow: hidden;
    transition: background-position 0.05s ease-out;
}

@media (max-width: 768px) {
    .services-hero-section {
        min-height: 150px;
        padding-top: 35%;
    }
}

/* 3. NOSSOS SERVIÇOS (ROXO COM EFEITO 3D ELEGANTE) */
.services-section {
    background-color: var(--bg-purple-section);
    padding: 80px 0;
    color: var(--text-light);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: #FFF;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(195, 154, 87, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.card-purple {
    background: linear-gradient(145deg, rgba(60, 10, 70, 0.95) 0%, rgba(35, 3, 40, 0.95) 100%);
    border: 1px solid rgba(195, 154, 87, 0.4);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        0 0 15px rgba(195, 154, 87, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
}

.card-purple:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--gold-accent);
    box-shadow: 
        0 20px 35px rgba(0, 0, 0, 0.7), 
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(195, 154, 87, 0.25);
}

.card-icon {
    margin-bottom: 20px;
    display: inline-block;
    padding: 12px;
    background: rgba(195, 154, 87, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(195, 154, 87, 0.2);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}

.card-purple h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: var(--gold-accent);
    margin-bottom: 14px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-purple p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #E2D3E8;
    margin-bottom: 30px;
}

.btn-card-action {
    background: linear-gradient(180deg, #C39A57 0%, #A37A37 100%);
    color: #FFF;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-card-action:hover {
    background: linear-gradient(180deg, #D4AB68 0%, #B48B48 100%);
    box-shadow: 0 6px 15px rgba(195, 154, 87, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.more-services-link-wrapper {
    text-align: center;
    margin-top: 40px;
}

.link-all-services {
    color: var(--gold-accent);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px dashed var(--gold-accent);
    padding-bottom: 4px;
    display: inline-block;
}

.link-all-services:hover {
    color: #FFF;
    border-bottom-color: #FFF;
    transform: translateY(-2px);
}

/* 4. SOBRE IGOR */
.about-section {
    background-color: var(--bg-hero);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    perspective: 1000px;
}

.about-photo {
    position: relative;
    display: inline-block;
    border-radius: 16px;
    padding: 5px;
    background: linear-gradient(135deg, rgba(195, 154, 87, 0.8) 0%, rgba(60, 10, 70, 0.4) 100%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12), 0 0 15px rgba(195, 154, 87, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.about-photo img {
    width: 270px;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.about-photo:hover {
    transform: translateY(-8px) rotate(-1deg) scale(1.02);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2), 0 0 25px rgba(195, 154, 87, 0.35);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}

.about-container:hover .about-text h2::after {
    width: 100%;
}

.about-text p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #4A3E37;
    margin-bottom: 16px;
}

/* 4.5 ENERGIA E CRISTAIS */
.crystal-section {
    background-color: var(--bg-header);
    padding: 70px 0;
    border-top: 1px solid rgba(195, 154, 87, 0.2);
}

.crystal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.crystal-text {
    flex: 1;
}

.crystal-text h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.crystal-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4A3E37;
    margin-bottom: 12px;
}

.crystal-photo {
    flex: 1;
    text-align: center;
    perspective: 1000px;
}

.crystal-photo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 15px 15px rgba(40, 2, 46, 0.2));
    animation: floatCrystal 4.5s ease-in-out infinite;
    transition: filter 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.crystal-photo img:hover {
    filter: drop-shadow(0 20px 25px rgba(195, 154, 87, 0.4)) drop-shadow(0 0 30px rgba(60, 10, 70, 0.5));
    transform: scale(1.06) rotate(2deg);
}

@keyframes floatCrystal {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-1.5deg); }
}

/* 5. PÁGINA SERVICOS.HTML (VITRINE MÁRMORE) */
.services-marble-section {
    background-color: #F8F5F0;
    background-image: radial-gradient(#E8E0D5 1px, transparent 1px), radial-gradient(#E8E0D5 1px, #F8F5F0 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    padding: 60px 0;
    color: #2C1D11;
}

.marble-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: #B88E4C;
    margin-bottom: 40px;
}

.marble-grid-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.marble-card {
    background-color: #FBF8F3;
    border: 1px solid #E6D9C8;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.marble-card-header {
    margin-bottom: 20px;
    border-bottom: 1px dashed #E0D3C1;
    padding-bottom: 15px;
}

.card-icon-symbol { font-size: 1.8rem; margin-bottom: 8px; }

.marble-card-header h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #1A1A1A;
}

.service-subitem {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #EFE6D8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-subitem:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-subitem h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #2C1D11;
    margin-bottom: 4px;
}

.service-subitem p {
    font-size: 0.8rem;
    color: #665A52;
    line-height: 1.4;
    margin-bottom: 10px;
    max-width: 250px;
}

.price-pill {
    background-color: #C0737C;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 22px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 3px 8px rgba(192, 115, 124, 0.25);
    display: inline-block;
}

.marble-grid-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.photo-card-box {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    max-height: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.photo-card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.questions-card {
    background-color: #FBF8F3;
    border: 1px solid #E6D9C8;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.questions-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #2C1D11;
    margin-bottom: 10px;
}

.q-qty { font-size: 0.85rem; color: #555; margin-bottom: 4px; }

.q-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #C0737C;
    margin-top: 6px;
    display: block;
}

.btn-cta-marble-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-cta-rose {
    background-color: #C0737C;
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 14px 40px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 6px 18px rgba(192, 115, 124, 0.35);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-cta-rose:hover {
    background-color: #A85D66;
    transform: translateY(-2px);
}

/* 6. DEPOIMENTOS (ROLAGEM VERTICAL INFINITA) */
.testimonials-vertical-section {
    background-color: #EFE6D8;
    padding: 60px 0;
    border-top: 1px solid rgba(195, 154, 87, 0.3);
    border-bottom: 1px solid rgba(195, 154, 87, 0.3);
}

.testimonials-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.vertical-marquee-wrapper {
    height: 380px;
    overflow: hidden;
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 12px;
}

.vertical-marquee-wrapper::before,
.vertical-marquee-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 2;
    pointer-events: none;
}

.vertical-marquee-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, #EFE6D8, transparent);
}

.vertical-marquee-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, #EFE6D8, transparent);
}

.vertical-marquee-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scrollVertical 18s linear infinite;
}

.vertical-marquee-wrapper:hover .vertical-marquee-content {
    animation-play-state: paused;
}

.testimonial-card-v {
    background-color: #FFF;
    border: 1px solid rgba(195, 154, 87, 0.3);
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.stars {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    display: block;
}

.drag-hint {
    text-align: center;
    font-size: 0.75rem;
    color: #726052;
    margin-top: 15px;
    letter-spacing: 1px;
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* 7. FAQ (PERGUNTAS FREQUENTES) */
.faq-section {
    background-color: var(--bg-hero);
    padding: 70px 0;
    border-top: 1px solid rgba(195, 154, 87, 0.2);
}

.section-title-dark {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFF;
    border: 1px solid rgba(195, 154, 87, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--gold-accent); }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold-accent);
    transition: transform 0.4s ease, color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    background-color: #FAF7F2;
}

.faq-answer p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #555;
    padding-bottom: 20px;
}

.faq-item.active {
    border-color: var(--gold-accent);
    box-shadow: 0 8px 25px rgba(195, 154, 87, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 8px;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    color: #C0737C;
}

/* 8. CONTATO CTA (WHATSAPP & TELEGRAM) */
.cta-contact-section {
    background: linear-gradient(135deg, var(--bg-purple-section) 0%, var(--bg-purple-card) 100%);
    border-top: 1px solid rgba(195, 154, 87, 0.4);
    border-bottom: 1px solid rgba(195, 154, 87, 0.4);
    padding: 50px 0;
    color: var(--text-light);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-accent);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-text p {
    font-size: 0.9rem;
    color: #E2D3E8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp { background-color: #25D366; color: #FFF; }
.btn-telegram { background-color: #0088CC; color: #FFF; }

.btn-cta:hover { transform: translateY(-3px); }

/* 9. FOOTER REFINADO E MODERNO */
.footer-section {
    background-color: var(--bg-footer);
    color: #A0938A;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(195, 154, 87, 0.25);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-eye-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(195, 154, 87, 0.4));
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 3px;
    color: var(--gold-accent);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #8C7E75;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #E2D3E8;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #A0938A;
    font-size: 0.88rem;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-accent);
    transform: translateX(4px);
}

.footer-social-wrapper {
    margin-bottom: 15px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-accent);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 18px;
    border: 1px solid rgba(195, 154, 87, 0.35);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(195, 154, 87, 0.05);
}

.instagram-link:hover {
    background-color: var(--gold-accent);
    color: #1F120B;
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 154, 87, 0.3);
}

.footer-hours {
    font-size: 0.8rem;
    color: #726052;
}

/*  9. LINHA DE BASE / COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.78rem;
    color: #665A52;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
}

.footer-bottom-links a {
    color: #8C7E75;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold-accent);
}

.footer-bottom-links span {
    color: #4A3E37;
}

/* RESPONSIVIDADE DO RODAPÉ */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* SCROLL REVEAL CLASS */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-section { min-height: 45vh; background-position: right center; }
    .services-hero-section { min-height: 150px; padding-top: 35%; }
    .about-container, .crystal-container, .cta-container, .marble-grid-top, .marble-grid-bottom { flex-direction: column; text-align: center; }
    .cta-buttons { justify-content: center; width: 100%; }
    .btn-cta { width: 100%; justify-content: center; }
}
/* ============================================================
   EFEITOS DINÂMICOS NA PÁGINA SERVICOS.HTML
   ============================================================ */

/* Transição e Relevo 3D nos Cards de Mármore */
.marble-card, 
.questions-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

.marble-card:hover, 
.questions-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: #C39A57;
    box-shadow: 
        0 15px 30px rgba(184, 142, 76, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Animação e Pulso nas Pílulas de Preço */
.price-pill {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-subitem:hover .price-pill {
    transform: scale(1.05);
    background-color: #A85D66;
    box-shadow: 0 5px 15px rgba(192, 115, 124, 0.4);
}

/* Moldura Interativa na Foto da Câmera/Oráculo */
.photo-card-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Efeito de Feixe de Luz (Shine) no Botão "ENVIAR PERGUNTAS" */
.btn-cta-rose {
    position: relative;
    overflow: hidden;
}

.btn-cta-rose::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shineSweep 4s infinite ease-in-out;
}