/* ============================================
   BARBEARIA LUXO SELVAGEM - CSS COMPLETO
   ============================================ */

:root {
    --gold: #D4AF37 !important;
    --gold-light: #FFD700 !important;
    --gold-dark: #B8860B !important;
    --black: #0A0A0A !important;
    --black-soft: #1A1A1A !important;
    --brown: #3D2817 !important;
    --terracotta: #C1440E !important;
    --cream: #F5E6D3 !important;
    --white: #FFFFFF !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background: var(--black) !important;
    color: var(--cream) !important;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 900 !important;
}

.text-gold { color: var(--gold) !important; }
.text-cream { color: var(--cream) !important; }
.bg-black-soft { background: var(--black-soft) !important; }

/* ============================================
   NAVBAR
   ============================================ */
.luxury-navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.luxury-navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98) !important;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
}

.brand-icon {
    color: var(--gold);
    font-size: 2rem;
    animation: pulse-gold 2s infinite;
}

.brand-text {
    font-family: 'Cinzel', serif !important;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.luxury-navbar .nav-link {
    color: var(--cream) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.luxury-navbar .nav-link:hover {
    color: var(--gold) !important;
}

.luxury-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.luxury-navbar .nav-link:hover::after {
    width: 80%;
}

.btn-gold-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--black) !important;
    border: none !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    color: var(--black) !important;
}

/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BOTÕES LUXUOSOS
   ============================================ */
.btn-luxury {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--black) !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6);
    color: var(--black) !important;
}

.btn-outline-luxury {
    background: transparent !important;
    color: var(--gold) !important;
    border: 3px solid var(--gold) !important;
    padding: 13px 40px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-outline-luxury:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* ============================================
   HERO SECTION - IMPACTANTE
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(61, 40, 23, 0.75)),
        url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.08'%3E%3Cpath d='M40 40c0-11.046-8.954-20-20-20S0 28.954 0 40s8.954 20 20 20 20-8.954 20-20zm40 0c0-11.046-8.954-20-20-20S40 28.954 40 40s8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: rotate-slow 120s linear infinite;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: pulse-gold 2s infinite;
}

.hero-title {
    font-size: 5rem !important;
    font-weight: 900 !important;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--cream) !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    font-family: 'Playfair Display', serif !important;
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif !important;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    margin: 20px auto 30px;
    border-radius: 2px;
}

/* ============================================
   SEÇÃO ESSÊNCIA
   ============================================ */
.essence-section {
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--brown) 100%);
    position: relative;
    overflow: hidden;
}

.essence-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--black);
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.feature-title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--gold) !important;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif !important;
}

.feature-text {
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================
   SERVIÇOS - CARDS 3D
   ============================================ */
.services-section {
    background: var(--black);
    position: relative;
}

.service-card-3d {
    perspective: 1000px;
    height: 450px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card-3d:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-card-front {
    background: linear-gradient(135deg, var(--black-soft), var(--brown));
    border: 3px solid var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.service-card-back {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    transform: rotateY(180deg);
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

.service-name {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: var(--gold) !important;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif !important;
}

.service-card-back .service-name {
    color: var(--black) !important;
}

.service-desc {
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card-back .service-desc {
    color: var(--black);
    opacity: 0.9;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.service-card-back .service-price {
    color: var(--black);
}

.service-duration {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.7;
}

.service-card-back .service-duration {
    color: var(--black);
    opacity: 0.8;
}

/* ============================================
   PROFISSIONAIS
   ============================================ */
.professionals-section {
    background: linear-gradient(135deg, var(--brown) 0%, var(--black-soft) 100%);
}

.professional-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.professional-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.professional-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gold), var(--terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.professional-image i {
    font-size: 5rem;
    color: var(--black);
    opacity: 0.3;
}

.professional-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}

.professional-name {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: var(--gold) !important;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif !important;
}

.professional-role {
    color: var(--cream);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials-section {
    background: var(--black);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
    padding-top: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}

.testimonial-info h5 {
    color: var(--gold) !important;
    font-weight: 800 !important;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif !important;
}

.testimonial-stars {
    color: var(--gold);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--terracotta), var(--brown));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: var(--white) !important;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif !important;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ============================================
   FOOTER
   ============================================ */
.luxury-footer {
    background: var(--black);
    padding: 0;
    border-top: 3px solid var(--gold);
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.border-gold {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: var(--cream);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links li:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateX(5px);
}

.luxury-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    color: var(--cream) !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
}

.luxury-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.luxury-modal {
    background: var(--black-soft) !important;
    border: 2px solid var(--gold);
    border-radius: 20px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem !important; }
    .section-title { font-size: 2.5rem !important; }
    .cta-title { font-size: 2.2rem !important; }
    .hero-stats { gap: 30px; }
    .stat-number { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2rem !important; }
    .service-card-3d { height: 400px; }
    .professional-image { height: 300px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-luxury, .btn-outline-luxury { width: 100%; max-width: 300px; }
}