:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-gradient: linear-gradient(135deg, #aa8a2e 0%, #d4af37 50%, #f9f295 100%);
    --dark-bg: #050505;
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f0;
    --text-muted: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Fundo Estrelado Animado */
.bg-fixed {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a0b2e, #000000);
    z-index: -2;
}
.stars {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.3;
    animation: twinkle 5s infinite alternate;
    z-index: -1;
    pointer-events: none;
}
@keyframes twinkle { 0% { opacity: 0.2; } 100% { opacity: 0.4; } }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1596701728286-9a258055b46e?q=80&w=1920&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    padding: 20px;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 15px;
        height: 100vh;
    }
    
    .hero-title {
        margin-bottom: 15px;
    }
    
    .hero-tagline {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-tagline::before,
    .hero-tagline::after {
        margin: 0 8px;
    }
    
    .hero-description {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-description p {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInDown 1.5s ease;
}

.hero-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(3.5rem, 12vw, 7rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: zoomIn 1.5s ease;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
    animation: fadeInUp 1.8s ease;
    position: relative;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    display: block;
}

.hero-tagline::before {
    content: '✦';
    color: var(--gold);
    margin-right: 15px;
    font-size: 0.8em;
    opacity: 0.6;
    display: inline-block;
    vertical-align: middle;
}

.hero-tagline::after {
    content: '✦';
    color: var(--gold);
    margin-left: 15px;
    font-size: 0.8em;
    opacity: 0.6;
    display: inline-block;
    vertical-align: middle;
}

.mobile-break {
    display: block;
}

.tagline-break {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-break {
        display: none;
    }
    
    .tagline-break {
        display: inline;
    }
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 40px auto;
    animation: fadeInUp 2s ease;
}

.hero-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.btn-hero {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--gold);
    z-index: -1;
    transition: 0.4s;
}

.btn-hero:hover {
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}
.btn-hero:hover::before { width: 100%; }

/* --- SEÇÕES PADRÃO --- */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.5rem;
    color: var(--gold);
}

.section-title p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 1px;
}

/* --- CARDS DE PRODUTO --- */
.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.card h3 {
    font-family: 'Cinzel', serif;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    display: block;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Botões dos Cards */
.btn-card {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: var(--gold-gradient);
    color: #2b0505;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.btn-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px var(--gold);
}

.btn-card-outline {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.btn-card-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- ETIQUETA --- */
.ribbon-wrapper {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.ribbon {
    background: var(--gold);
    color: #000;
    text-align: center;
    font-weight: 800;
    padding: 8px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    position: absolute;
    top: 25px;
    right: -30px;
    width: 150px;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    z-index: 10;
}

.card.featured {
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.08);
    transform: scale(1.05);
}
@media(max-width: 768px) {
    .card.featured { transform: scale(1); margin: 10px 0; }
}

/* --- DEMAIS SEÇÕES --- */
.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}
.step-item {
    flex: 1; min-width: 250px;
}
.step-icon {
    font-size: 3rem; color: var(--gold); margin-bottom: 20px; display: block;
}

.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.testimonial {
    background: rgba(255,255,255,0.03); padding: 30px; border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0;
}

.about-wrap {
    display: flex; align-items: center; gap: 50px; flex-wrap: wrap;
}
.about-img {
    flex: 1; min-width: 300px;
    border: 2px solid var(--gold); padding: 10px; border-radius: 10px;
}
.about-img img { width: 100%; display: block; filter: grayscale(20%); }

/* --- RODAPÉ --- */
footer {
    background-color: #080808;
    border-top: 1px solid #222;
    padding: 80px 20px 40px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}
.instagram-btn:hover { opacity: 0.8; transform: translateY(-2px); }

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* --- WHATSAPP FLUTUANTE COM EFEITO PULSAR --- */
.whats-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Animação adicionada */
    animation: pulse 2s infinite;
}

.whats-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animações */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }