/* Variáveis de Cores */
:root {
    --primary: #1a1a1a;       /* Preto fosco */
    --secondary: #d4af37;     /* Dourado */
    --accent: #8B4513;        /* Marrom envelhecido */
    --light: #f5f5f5;         /* Branco suave */
    --dark: #121212;          /* Preto mais escuro */
    --gray: #333333;          /* Cinza escuro */
    --light-gray: #e0e0e0;    /* Cinza claro */
}

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light);
    background-color: var(--primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.section-header h2 span {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.section-header p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 45%,
        rgba(255,255,255,0.3) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -50%; opacity: 0; }
    50% { opacity: 0.5; }
    100% { left: 150%; opacity: 0; }
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline-gold:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.hidden {
    display: none;
}

/* Efeitos de Animação */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Bolhas Flutuantes */
.bolhas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bolha {
    position: absolute;
    width: calc(var(--s) * 150px);
    height: calc(var(--s) * 150px);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    animation: float calc(var(--d) * 1s) infinite linear;
    opacity: 0.8;
    top: calc(var(--y) * 1%);
    left: calc(var(--x) * 1%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
}

.bolha:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

.bolha img {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.bolha:hover img {
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8), transparent 70%);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px -5px var(--secondary);
    }
    to {
        box-shadow: 0 0 20px 5px var(--secondary);
    }
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text h1 span {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: -5px;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.nav-link {
    color: var(--light);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.imgur.com/WzH7d9c.jpeg') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(139, 69, 19, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-content h2 span {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--light-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Configuração base das navalhas */
.navalha-effect {
    position: absolute;
    bottom: 50px;       /* Posiciona na parte inferior */
    z-index: 2;
    animation: swing 5s infinite ease-in-out;
    transform-origin: top center;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    transition: all 0.5s ease;
}

/* Navalha DIREITA */
.navalha-right {
    right: 50px;
}

/* Navalha ESQUERDA (sua adição) */
.navalha-left {
    left: 50px;
    animation-delay: 2.5s; /* Faz a animação começar atrasada (movimento alternado) */
}

/* Tamanho das navalhas */
.navalha {
    width: 120px;
    height: auto;
}

/* Animação de balanço */
@keyframes swing {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}
/* Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: var(--dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    padding: 20px;
    text-align: center;
    perspective: 1000px;
}

.servico-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.servico-bolha {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    position: relative;
    transition: all 0.5s ease;
}

.servico-bolha:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.servico-bolha img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico-card:hover .servico-bolha img {
    transform: scale(1.1);
}

.servico-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.servico-info p {
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
/* Animação para os cards de SERVIÇOS */
.servico-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.servico-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

/* Animação para os itens da GALERIA */
.galeria-item {
    transition: all 0.5s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Efeito extra para as imagens dentro dos cards */
.servico-bolha img, 
.galeria-bolha img {
    transition: transform 0.5s ease;
}

.servico-card:hover .servico-bolha img,
.galeria-item:hover .galeria-bolha img {
    transform: scale(1.1);
}

}

/* Galeria */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.galeria-bolha {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 3px solid transparent;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.galeria-item:hover .galeria-bolha {
    border-color: var(--secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    transform: scale(1.05);
}

.galeria-bolha img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover .galeria-bolha img {
    transform: scale(1.1);
}

/* Agendamento */
.agendamento-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    min-height: 120px;
    padding: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.agendamento-info {
    background-color: var(--dark);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.agendamento-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.agendamento-info p {
    margin-bottom: 20px;
    color: var(--light-gray);
}

.agendamento-info i {
    color: var(--secondary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mapa-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mapa-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.note {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(139, 69, 19, 0.2);
    border-left: 3px solid var(--secondary);
}

/* Contato */
.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contato-item {
    background-color: var(--dark);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contato-item:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 45%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.contato-item:hover:before {
    animation: shine 1.5s;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

.contato-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contato-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.contato-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contato-item p {
    margin-bottom: 20px;
    color: var(--light-gray);
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 60px 0 20px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    color: var(--light-gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-col ul li a:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--secondary);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 20px;
}

.footer-col ul li a:hover:before {
    opacity: 1;
}

.horarios li {
    color: var(--light-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.horarios li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-gray);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px 0 0 4px;
    background-color: var(--dark);
    color: var(--light);
}

.newsletter-form button {
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-bottom i {
    color: #e74c3c;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

/* Text Rotate */
.text-rotate {
    display: inline-block;
    position: relative;
}

.text-rotate:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.text-rotate:hover:after {
    width: 100%;
}

/* ========== PARTÍCULAS ========== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Fica ATRÁS de todo conteúdo */
    background-color: var(--primary); /* Cor de fundo */
}

/* ========== ANIMAÇÕES DE TEXTO ========== */
.animate-title {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.text-rotate {
    display: inline-block;
    margin-left: 10px; /* Espaço entre as palavras */
    color: var(--secondary); /* Cor dourada */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
/* ... todo seu CSS existente ... */

/* ========== PÁGINA DE SUCESSO ========== */
.confirmation-container {
    /* seus estilos */
}

@media (max-width: 768px) {
    /* regras responsivas */
}
}

/* Responsivo */
@media (max-width: 992px) {
    .agendamento-form {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark);
        padding: 80px 30px;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
        z-index: 1000;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .servicos-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Efeitos Adicionais */
.wave {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: wave 1s ease-out;
    pointer-events: none;
    z-index: 10;
}

@keyframes wave {
    to {
        transform: scale(1.5);
        opacity: 0;
    }
/* Efeito de brilho atrás do texto */
.text-glow {
    position: relative;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    padding: 0 10px; /* Espaço para o brilho */
}

.text-glow::before {
    content: "BARBEARIA";
    position: absolute;
    top: 0;
    left: 10px;
    color: transparent;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(212, 175, 55, 0.8) 50%, 
        rgba(212, 175, 55, 0.3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: -1;
    animation: glow-effect 2.5s infinite ease-in-out;
}

/* Animação do brilho */
@keyframes glow-effect {
    0%, 100% {
        filter: blur(5px);
        opacity: 0.7;
    }
    50% {
        filter: blur(8px);
        opacity: 1;
    }
}
