/* ===================================
   CSS PROFISSIONAL - MARTA SEICEIRA
   Design Moderno e Elegante
   =================================== */

/* Reset Global Melhorado */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Variáveis globais para facilitar ajustes de layout */
:root {
    --header-height: 95px; /* altura total do header fixo */
}

/* Tipografia Profissional */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #2F2F2F;
}

body, p, span {
    font-family: 'Inter', sans-serif;
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Links com cores específicas para evitar conflitos */
a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #555555;
}

/* Regras específicas para botões - devem sempre ter precedência */
a.category-btn,
a.cta-button,
a.hero-cta-primary,
a.hero-cta-secondary,
a.nav-link {
    color: white !important;
}

a.nav-link {
    color: #4A4A4A !important;
}

a.nav-link:hover,
a.nav-link:hover *,
a.nav-link:hover span,
a.nav-link:hover i {
    color: #ffffff !important;
}

p {
    margin: 0;
}

/* Classe para texto apenas para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   HEADER/NAVEGAÇÃO PROFISSIONAL
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: 900;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transform: translateY(-100%); /* Escondido inicialmente */
    opacity: 0;
    pointer-events: none;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 4px 30px rgba(26, 26, 26, 0.12);
    transform: translateY(0); /* Visível ao fazer scroll */
    opacity: 1;
    pointer-events: auto;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    transition: padding 0.3s ease;
    height: 100%;
}

.main-header.scrolled .main-nav {
    padding: 15px 40px;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.1);
}

.header-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* Navigation Menu */
.nav-menu-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
}

.nav-link:hover .nav-icon,
.nav-link:hover .nav-text,
.nav-link:hover .nav-icon i,
.nav-link:hover i,
.nav-link:hover span {
    color: #ffffff !important;
}

.nav-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: inherit;
}

.nav-icon i {
    color: inherit;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.nav-link:hover .nav-icon,
.nav-link:hover .nav-icon i {
    color: #ffffff !important;
}

.nav-text {
    font-weight: 500;
}

/* CTA Button in Navigation */
.nav-cta {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

.nav-cta::before {
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.nav-cta:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 26, 26, 0.25);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1A1A1A;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO BANNER IMERSIVO COM KEN BURNS
   =================================== */
.hero-banner {
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Header comportamento com hero banner - já definido na classe principal */

/* Slideshow container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Cada slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Imagem de fundo com Ken Burns */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
    animation: kenBurnsZoom 8s ease-out forwards;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Overlay escuro */
.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

/* Container do conteúdo */
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

/* Slides de texto */
.hero-text-slide {
    position: absolute;
    top: 38%;
    left: 10%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    max-width: 550px;
}

.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Label (CABELEIREIRO, BARBEIRO, etc) */
.hero-label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

/* Título principal */
.hero-main-title {
    margin: 0 0 30px 0;
}

.hero-main-title .title-line {
    display: block;
    color: #ffffff;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(40px);
    animation: none;
}

.hero-text-slide.active .title-line {
    animation: titleReveal 0.8s ease forwards;
}

.hero-text-slide.active .title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-text-slide.active .title-line:nth-child(2) { animation-delay: 0.25s; }
.hero-text-slide.active .title-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Descrição */
.hero-text-slide .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 0 40px 0;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.hero-text-slide.active .hero-description {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão CTA */
.hero-cta-btn {
    position: absolute;
    bottom: 18%;
    left: 10%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 18px 35px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    z-index: 10;
    line-height: 1;
}

.hero-cta-btn span {
    color: #ffffff !important;
    line-height: 1;
}

.hero-cta-btn i {
    color: #ffffff !important;
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.3s ease;
    position: relative;
    top: 1px;
}

.hero-cta-btn:hover {
    background: #ffffff;
    color: #1a1a1a !important;
    transform: translateX(5px);
}

.hero-cta-btn:hover span,
.hero-cta-btn:hover i {
    color: #1a1a1a !important;
}

.hero-cta-btn:hover i {
    transform: translateX(5px);
}

/* Indicadores */
.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 10%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-indicator.active {
    background: #ffffff;
    width: 50px;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Redes sociais */
.hero-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 10;
}

.hero-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-social a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    animation: bounceDown 2s infinite;
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-scroll:hover {
    color: rgba(255, 255, 255, 1);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(8px);
    }
    60% {
        transform: translateX(-50%) translateY(4px);
    }
}

/* Responsividade Hero */
@media (max-width: 992px) {
    .hero-social {
        display: none;
    }
    
    .hero-text-slide {
        left: 5%;
    }
    
    .hero-cta-btn {
        left: 5%;
    }
    
    .hero-indicators {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 0 5%;
    }
    
    .hero-text-slide {
        left: 5%;
        right: 5%;
    }
    
    .hero-main-title .title-line {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
    .hero-text-slide .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-btn {
        left: 5%;
        bottom: 12%;
        padding: 14px 28px;
        font-size: 0.8rem;
    }
    
    .hero-indicators {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-scroll {
        right: 50%;
        transform: translateX(50%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(26, 26, 26, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-content {
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.hero-banner-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 25px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
}

.hero-banner-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: white !important;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.3);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.hero-cta-primary:hover {
    background: transparent;
    border-color: white;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.4);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white !important;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   MAIN CONTENT & SPACING
   =================================== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   HERO SECTION (Apresentação) PROFISSIONAL
   =================================== */
.hero-section {
    padding: 60px 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        #FAFAFA 0%, 
        #FFFFFF 25%, 
        #F8F9FA 75%, 
        #F5F5F5 100%);
    margin: 0 -40px 60px -40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 26, 26, 0.02) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
}

.section-label span {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #1A1A1A;
    margin: 0 0 10px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 70%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-style: italic;
    color: #666;
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}

.hero-tagline em {
    color: #1A1A1A;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #1A1A1A;
    margin: 0 0 20px 0;
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    margin-bottom: 20px;
}

.hero-description p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.highlight-item i {
    width: 20px;
    height: 20px;
    color: #1A1A1A;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: white !important;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin-top: 15px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.3);
    color: white !important;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Hero Image Section */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(26, 26, 26, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(26, 26, 26, 0.2);
}

.salon-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* ===================================
   CHAT BUTTON STYLES
   =================================== */
.chat-button-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Botão principal com logotipo */
.chat-logo-button {
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #ffffff;
}

.chat-logo-button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.chat-button-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Popup do chat */
.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Seta do popup apontando para o botão */
.chat-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #666;
    font-size: 12px;
}

.chat-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.chat-popup-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    padding-right: 20px;
}

.chat-popup-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Responsivo */
@media (max-width: 480px) {
    .chat-button-container {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-logo-button {
        width: 55px;
        height: 55px;
    }
    
    .chat-popup {
        right: -10px;
        min-width: 200px;
    }
}

/* ===================================
   SEÇÃO DE MARCAÇÕES CRIATIVA
   =================================== */
.booking-section {
    margin-top: 40px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 32px;
    padding: 70px clamp(1.5rem,3vw,3.5rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px -6px rgba(26,26,26,0.07),0 2px 6px rgba(26,26,26,0.04);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* Subtitle para a seção */
.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 400;
}

/* Hero CTA da seção marcações */
.booking-cta-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #495057 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin: 40px auto 60px;
    max-width: 800px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-cta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.booking-hero-content h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-hero-content p {
    color: #e9ecef;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.booking-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.booking-btn.primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.booking-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

.booking-btn.secondary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.booking-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Ícones dos itens de marcação */
.booking-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 44, 44, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2.2rem,4vw,3rem);
    color: #1A1A1A;
    margin: 0 0 18px 0;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    line-height: 1.15;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2c2c2c, #495057);
    border-radius: 2px;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.2rem,3.5vw,3.5rem);
    position: relative;
    z-index: 2;
    align-items: start;
    max-width: 980px;
    margin-inline: auto;
}

/* Telefone destaque criativo */
.booking-info h3 {
    background: linear-gradient(135deg,#1F1F1F 0%,#272829 60%,#2F3132 100%);
    color: #fff;
    padding: 26px clamp(1.8rem,3.2vw,3.2rem);
    border-radius: 32px;
    font-size: clamp(1.35rem,2.1vw,1.75rem);
    text-align: center;
    margin: 0 auto 52px;
    box-shadow: 0 10px 32px -12px rgba(0,0,0,0.55),0 3px 6px -1px rgba(0,0,0,0.35);
    transition: all .55s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: .5px;
    width: min(100%,840px);
}

.booking-info h3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg,rgba(255,255,255,0.08) 0%,rgba(255,255,255,0) 60%),
        radial-gradient(circle at 25% 35%,rgba(255,255,255,0.18),transparent 70%);
    mix-blend-mode: overlay;
    opacity: .85;
    pointer-events: none;
    transition: transform .9s ease, opacity .6s ease;
    transform: scale(1.2);
}

.booking-info h3:hover::before {
    transform: scale(1.3);
    opacity: 1;
}

.booking-info h3:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px -14px rgba(0,0,0,0.55),0 4px 10px -2px rgba(0,0,0,0.35);
}

.booking-info h3 i {
    margin-right: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Cards informativos criativos */
.booking-details {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    align-items: stretch;
}

/* Forçar sempre 3 colunas em ecrãs médios/grandes */
@media (min-width: 820px) {
    .booking-details {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Ajuste para tablets médios onde a largura ainda não comporta 3 colunas confortáveis */
@media (min-width: 640px) and (max-width: 819.98px) {
    .booking-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.booking-item {
    background: linear-gradient(145deg,#FFFFFF 0%,#F7F8F9 100%);
    padding: 30px clamp(1.6rem,2.2vw,2.4rem);
    border-radius: 28px;
    border: 1px solid rgba(26,26,26,0.05);
    box-shadow: 0 6px 18px -6px rgba(0,0,0,0.10),0 2px 4px -1px rgba(0,0,0,0.06);
    transition: all .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.booking-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%,rgba(0,0,0,0.06),transparent 70%),
        linear-gradient(120deg,rgba(0,0,0,0.04),rgba(0,0,0,0));
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.booking-item:hover::before {
    opacity: 1;
}

.booking-item:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 22px 48px -18px rgba(0,0,0,0.28),0 8px 16px -4px rgba(0,0,0,0.10);
    background: linear-gradient(155deg,#FFFFFF 0%,#F1F2F3 100%);
}

.booking-item h4 {
    color: #151515;
    font-size: 1.12rem;
    margin: 0 0 18px 0;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: .25px;
}

.booking-item h4::before {
    content: '✨';
    margin-right: 10px;
    font-size: 1.2em;
}

.booking-item:nth-child(2) h4::before {
    content: '⏰';
}

.booking-item:nth-child(3) h4::before {
    content: '💡';
}

.booking-item p {
    color: #3D3F42;
    line-height: 1.58;
    margin: 0;
    font-size: 0.85rem;
}

/* Seção de contactos criativa */
.contact-info-booking {
    background: linear-gradient(140deg,#1E1E1E 0%,#2F3235 100%);
    color: #fff;
    padding: 56px clamp(1.25rem,2.5vw,2.7rem) 54px;
    border-radius: 36px;
    box-shadow: 0 10px 34px -10px rgba(0,0,0,0.55),0 2px 4px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-info-booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%,rgba(255,255,255,.08),transparent 60%),
        radial-gradient(circle at 20% 80%,rgba(255,255,255,.06),transparent 65%);
    animation: none;
    pointer-events: none;
}

.contact-info-booking h3 {
    color: #fff;
    font-size: clamp(1.8rem,3vw,2.2rem);
    margin: 0 0 34px 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 2;
    letter-spacing: .5px;
}

.contact-details {
    position: relative;
    z-index: 2;
}

.contact-details p {
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
}

.contact-details strong {
    color: #fff;
    min-width: 82px;
    font-weight: 500;
    letter-spacing: .3px;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    transition: color .35s ease, text-shadow .4s ease;
}

.contact-details a:hover {
    color: #25D366;
    text-shadow: 0 0 6px rgba(37,211,102,0.6);
}

.address-booking,
.hours-booking {
    margin: 26px 0;
    padding: 22px 24px 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 22px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}

.social-booking {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
    gap: 16px;
    margin-top: 40px;
}

.social-link-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: all .4s ease;
    font-weight: 500;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: .9rem;
}

.social-link-booking:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px -4px rgba(0,0,0,0.35);
}

.social-link-booking.facebook:hover {
    background: #1877f2;
}

.social-link-booking.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-booking.whatsapp:hover {
    background: #25D366;
}

/* ===================================
   SEÇÃO SOBRE NÓS
   =================================== */
section {
    margin-bottom: 80px;
}

/* ===================================
   SEÇÃO SOBRE NÓS - REDESIGN MODERNO
   =================================== */
.about-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 60px 0;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
}

.about-section .section-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.about-section .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0;
}

.about-section .section-header h2::after {
    margin-top: 10px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text {
    padding-right: 20px;
}

.about-text h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
}

.about-text p {
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-size: 1rem;
    text-align: justify;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

/* Estatísticas / Destaques */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Equipa Redesign */
.team-preview {
    padding-left: 20px;
}

.team-preview h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin: 0 0 25px 0;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0;
}

.team-preview h3::after {
    display: none;
}

.team-member {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a 0%, #4a4a4a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-member:last-child {
    margin-bottom: 0;
}

.team-photo {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    object-fit: cover;
    float: none;
    margin: 0;
    border: 2px solid #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #ffffff;
}

.member-info {
    flex: 1;
}

.member-info h4 {
    color: #1a1a1a;
    font-size: 1.15rem;
    margin: 0 0 4px 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.member-role {
    color: #888;
    font-style: italic;
    font-weight: 500;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.member-description {
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-size: 0.8rem;
}

/* Responsividade Sobre Nós */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .about-text,
    .team-preview {
        padding: 0;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .section-header {
        padding: 0 20px;
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .about-text h3,
    .team-preview h3 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
}

/* ===================================
   SEÇÃO SERVIÇOS
   =================================== */
/* Grid de serviços refinado */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.4rem,2.2vw,2.2rem);
    margin: 3.2rem 0 3.4rem;
    align-items: stretch;
}

/* Cartão de serviço premium */
.service-item {
    position: relative;
    background: linear-gradient(145deg,#FFFFFF 0%,#F7F8F9 100%);
    padding: 2.4rem 2rem 2.6rem;
    border-radius: 28px;
    text-align: center;
    transition: all .55s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(26,26,26,0.06);
    box-shadow: 0 6px 18px -8px rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.05);
    overflow: hidden;
    isolation: isolate;
}

/* Layer decorativa suave */
.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 20%,rgba(0,0,0,0.05),transparent 60%),
        radial-gradient(circle at 80% 75%,rgba(0,0,0,0.04),transparent 70%);
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.service-item:hover,
.service-item:focus-within {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 24px 48px -18px rgba(0,0,0,0.28),0 8px 18px -6px rgba(0,0,0,0.10);
    background: linear-gradient(155deg,#FFFFFF 0%,#F1F2F3 100%);
}

.service-item:hover::before,
.service-item:focus-within::before {
    opacity: 1;
}

/* Animação de entrada progressiva (aplicada via JS opcional ou simplesmente pelo atraso nth-child) */
.service-item { opacity: 0; animation: serviceFade .9s ease forwards; }
.service-item:nth-child(1){animation-delay:.05s}
.service-item:nth-child(2){animation-delay:.15s}
.service-item:nth-child(3){animation-delay:.25s}
.service-item:nth-child(4){animation-delay:.35s}
.service-item:nth-child(5){animation-delay:.45s}
.service-item:nth-child(6){animation-delay:.55s}

@keyframes serviceFade { from {opacity:0; transform: translateY(25px);} to {opacity:1; transform: translateY(0);} }

/* Título do serviço */
.service-item h4 {
    color: #151515;
    font-size: clamp(1.15rem,1.4rem,1.4rem);
    margin: 0 0 .85rem 0;
    font-weight: 600;
    letter-spacing: .4px;
    position: relative;
}

.service-item h4::after {
    content: '';
    display: block;
    width: 42px;
    height: 3px;
    margin: .65rem auto 0;
    background: linear-gradient(90deg,#1A1A1A,#3A3D40);
    border-radius: 2px;
    opacity: .15;
    transition: opacity .45s ease, transform .6s ease;
    transform: translateY(4px);
}

.service-item:hover h4::after,
.service-item:focus-within h4::after {
    opacity: .45;
    transform: translateY(0);
}

/* Preço / destaque */
.service-price {
    color: #222;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    letter-spacing: .3px;
    background: linear-gradient(120deg,#1E1E1E,#3C3F41);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Descrição */
.service-description {
    color: #474C52;
    line-height: 1.55;
    margin: 0;
    font-size: .92rem;
}

/* Nota final */
.services-note {
    text-align: center;
    color: #4B4F54;
    font-style: italic;
    line-height: 1.55;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    font-size: .95rem;
}

/* ===================================
   SERVIÇOS POR CATEGORIA (MEGA MENU STYLE)
   =================================== */
.services-categories-section {
    background: #fff;
    padding: 60px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
}

.services-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.services-category {
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.category-title-link {
    text-decoration: none;
    display: block;
}

.category-title-link:hover .category-title {
    color: #8B6914;
    text-decoration: underline;
}

.category-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #B8860B;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.category-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-services li {
    margin-bottom: 12px;
}

.category-services li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-services li a:hover {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .services-categories-container {
        flex-wrap: wrap;
    }
    
    .services-category {
        flex: 0 0 calc(50% - 20px);
        min-width: 140px;
    }
}

@media (max-width: 576px) {
    .services-categories-section {
        padding: 40px 20px;
    }
    
    .services-categories-container {
        gap: 25px;
    }
    
    .category-title {
        font-size: 0.9rem;
    }
    
    .category-services li a {
        font-size: 0.85rem;
    }
}

/* ===================================
   PARCEIROS / PATROCINADORES
   =================================== */
.partners-section {
    padding: 60px 40px;
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0 -40px;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 20px;
    }
    
    .partners-logos {
        gap: 40px;
    }
    
    .partner-logo img {
        max-height: 50px;
        max-width: 140px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background: #2a2a2a;
    color: #ffffff;
    padding: 60px 0 0 0;
    margin-top: 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px 50px 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin: 0 0 25px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: none;
    padding-bottom: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0;
    color: #ffffff !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #ffffff;
    width: 18px;
    text-align: center;
    margin-top: 3px;
}

.footer-contact-item span {
    color: #ffffff;
}

.footer-schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

.schedule-item .day {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.schedule-item .hours {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.footer-social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-email {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-location-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-location-link:hover .footer-contact-item {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link::before {
    content: "›";
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::before {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-left,
.footer-bottom-right {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-right {
    text-align: right;
}

.made-by-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.made-by-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 768px) {
    .main-nav {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
    }

    .hero-banner {
        height: 400px;
        padding-top: 60px;
    }
    
    .hero-banner-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner-content p {
        font-size: 1.1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 40px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        text-align: center;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1101px) and (max-width: 1300px) {
    .footer-content {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        padding: 0 30px 50px 30px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.8em;
        padding: 5px 8px;
    }

    .hero-banner {
        height: 350px;
        padding-top: 50px;
    }
    
    .hero-banner-content h1 {
        font-size: 2rem;
    }
    
    .hero-banner-content p {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .booking-section {
        padding: 40px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .social-booking {
        grid-template-columns: 1fr;
    }
}

/* Efeito máquina de escrever */
#typewriter-title::after {
    content: '|';
    animation: blink 1s infinite;
    color: #2c2c2c;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ===============================
     CATEGORIAS DE SERVIÇOS (Mulheres / Homens)
     =============================== */
.services-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
    align-items: stretch;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg,#FFFFFF 0%,#F6F7F8 100%);
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 34px;
    padding: 2.6rem 2.2rem 2.4rem;
    box-shadow: 0 8px 18px -10px rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all .65s cubic-bezier(.4,0,.2,1);
    isolation: isolate;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%,rgba(0,0,0,0.05),transparent 65%),
        radial-gradient(circle at 85% 80%,rgba(0,0,0,0.04),transparent 70%);
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}

.category-card:hover,
.category-card:focus-within {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 32px 56px -28px rgba(0,0,0,0.35),0 10px 24px -10px rgba(0,0,0,0.18);
    background: linear-gradient(155deg,#FFFFFF 0%,#EFF0F2 100%);
}

.category-card:hover::before,
.category-card:focus-within::before { opacity: 1; }

.category-card-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin: 0 0 1rem;
}

.category-card-header h3 {
    margin: 0;
    font-size: clamp(1.25rem,1.5rem,1.55rem);
    font-weight: 600;
    letter-spacing: .5px;
    color: #151515;
    position: relative;
}

.category-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg,#1F1F1F,#2E3032);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 6px 18px -6px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.category-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%,rgba(255,255,255,0.18),transparent 70%);
    mix-blend-mode: overlay;
    opacity: .85;
    pointer-events: none;
}

.category-card.female .category-icon { background: linear-gradient(135deg,#7F4BFF,#4D2ECF); }
.category-card.male .category-icon { background: linear-gradient(135deg,#1E88E5,#0D47A1); }

.category-description {
    color: #41464B;
    line-height: 1.55;
    font-size: .92rem;
    margin: 0 0 1.9rem;
}

.category-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: #1A1A1A;
    color: #fff !important;
    padding: .95rem 1.35rem .95rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    transition: all .55s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 6px 16px -8px rgba(0,0,0,0.45),0 2px 4px -1px rgba(0,0,0,0.35);
}

.category-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.22) 50%,rgba(255,255,255,0) 100%);
    transform: translateX(-120%);
    transition: transform .85s cubic-bezier(.65,.05,.36,1);
}

.category-btn:hover::before,
.category-btn:focus-visible::before { transform: translateX(120%); }

.category-btn:hover,
.category-btn:focus-visible {
    background: #000;
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 18px 34px -14px rgba(0,0,0,0.6),0 6px 14px -6px rgba(0,0,0,0.4);
}

.category-btn i { transition: transform .55s cubic-bezier(.4,0,.2,1); }
.category-btn:hover i { transform: translateX(4px); }

/* Responsividade para grid de categorias 2x2 */
@media (max-width: 900px) {
    .services-categories {
        gap: 0.8rem;
    }
    
    .category-card-with-bg {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .services-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .category-card-with-bg {
        min-height: 150px;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .services-categories {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .category-card-with-bg {
        min-height: 180px;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 640px) {
    .category-card { padding: 2.1rem 1.6rem 2rem; }
    .category-description { font-size: .9rem; margin-bottom: 1.6rem; }
    .category-icon { width: 50px; height: 50px; font-size: 1.25rem; }
}

/* ===============================
     SEÇÃO DE TRANSIÇÃO ENTRE SERVIÇOS E VÍDEO
     =============================== */
.transition-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.transition-content {
    max-width: 800px;
    margin: 0 auto;
}

.transition-content h2 {
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.transition-content p {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ===============================
     EMBED FACEBOOK VÍDEO
     =============================== */
.social-media-highlight {
    max-width: 1200px;
    margin: 40px auto 90px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.fb-video-wrapper { width: 100%; }

.fb-video-responsive {
    position: relative; 
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 55px -18px rgba(0,0,0,0.35), 0 8px 24px -8px rgba(0,0,0,0.25);
    background: transparent;
}

.fb-embed-frame {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.video-disclaimer {
    text-align: center;
    font-size: .65rem;
    color: #666;
    margin-top: 12px;
    letter-spacing: .5px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 820px) {
    .social-media-highlight { padding: 0 24px; }
    .fb-video-responsive { border-radius: 22px; }
}

@media (max-width: 520px) {
    .fb-video-responsive { border-radius: 18px; }
    .video-disclaimer { font-size: .58rem; }
}

/* ===============================
   COOKIE BANNER
   =============================== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    display: none;
    transition: opacity 0.4s ease;
}

.cookie-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(92vw, 440px);
    height: auto;
    max-height: min(90vh, 520px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 246, 0.99) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(212, 165, 116, 0.25);
    padding: 2.5rem 2rem;
    z-index: 1001;
    transform: translate(-50%, -50%) scale(0.92);
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.25), 
                0 10px 30px -10px rgba(212, 165, 116, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.45s ease, 
                visibility 0.45s ease;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cookie-banner.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.4) 0%, rgba(184, 134, 11, 0.3) 50%, rgba(212, 165, 116, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.cookie-banner.show::before {
    opacity: 1;
}

.cookie-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cookie-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cookie-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 12px 30px -10px rgba(212, 165, 116, 0.35);
}

.cookie-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 600;
}

.cookie-lead {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.cookie-legal {
    margin: 0;
    color: #666;
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-link {
    color: #B8860B;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #d4a574;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cookie-btn {
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #d4a574 0%, #B8860B 100%);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(212, 165, 116, 0.5);
}

.cookie-btn.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -10px rgba(212, 165, 116, 0.6);
    background: linear-gradient(135deg, #e0b48a 0%, #c4956a 100%);
}

.cookie-btn.accept:focus-visible {
    outline: 2px solid rgba(212, 165, 116, 0.6);
    outline-offset: 3px;
}

.cookie-btn.decline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cookie-btn.decline:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.decline:focus-visible {
    outline: 2px solid rgba(26, 26, 26, 0.4);
    outline-offset: 3px;
}

.cookie-warning {
    min-height: 1.2rem;
    font-size: 0.85rem;
    color: #c75050;
    letter-spacing: 0.2px;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-width: 90%;
    font-weight: 500;
}

.cookie-warning.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner.shake {
    animation: cookieShake 0.6s cubic-bezier(.36,.07,.19,.97);
}

@keyframes cookieShake {
    10%, 90% { transform: translate(-50%, -50%) translateX(-1px) scale(1); }
    20%, 80% { transform: translate(-50%, -50%) translateX(2px) scale(1); }
    30%, 50%, 70% { transform: translate(-50%, -50%) translateX(-4px) scale(1); }
    40%, 60% { transform: translate(-50%, -50%) translateX(4px) scale(1); }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .cookie-banner {
        width: min(95vw, 360px);
        height: auto;
        max-height: min(95vh, 520px);
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .cookie-content {
        gap: 1.1rem;
    }

    .cookie-logo {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }

    .cookie-brand-name {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .cookie-lead {
        font-size: 0.92rem;
    }

    .cookie-legal {
        font-size: 0.84rem;
    }

    .cookie-buttons {
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
}

html.cookie-lock-scroll,
body.cookie-lock-scroll {
    overflow: hidden;
    height: 100%;
    touch-action: none;
}

/* ===================================
   NOVOS ESTILOS PARA MARCAÇÕES
   =================================== */
.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.booking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.booking-item:hover::before {
    transform: scaleX(1);
}

.booking-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.booking-item h4 {
    color: #2c2c2c !important;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.booking-item p {
    color: #6c757d !important;
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Estilo para imagem do barbeiro no card */
.category-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Card com imagem de fundo */
.category-card-with-bg {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    min-height: 220px;
    aspect-ratio: 16/10;
    max-width: none;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    
    /* Estado inicial - invisível e deslocado */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Quando a classe animate-card é adicionada */
.category-card-with-bg.animate-card {
    opacity: 1;
    transform: translateY(0);
}

/* Delay diferente para cada card quando animado */
.category-card-with-bg.animate-card:nth-child(1) {
    transition-delay: 0.1s;
}

.category-card-with-bg.animate-card:nth-child(2) {
    transition-delay: 0.3s;
}

.category-card-with-bg.animate-card:nth-child(3) {
    transition-delay: 0.5s;
}

.category-card-with-bg.animate-card:nth-child(4) {
    transition-delay: 0.7s;
}

.category-card-with-bg:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.category-card-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.category-card-with-bg:hover::before {
    opacity: 0.8;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: inherit;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card-with-bg:hover .category-overlay {
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.category-card-with-bg .category-card-header {
    position: relative;
}

.category-card-with-bg .category-card-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card-with-bg:hover .category-card-header::before {
    transform: scaleX(1);
}

.category-card-with-bg .category-card-header h3 {
    color: white !important;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 0.4rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card-with-bg:hover .category-card-header h3 {
    transform: translateY(-5px);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
}

.category-card-with-bg .category-description {
    color: rgba(255, 255, 255, 1) !important;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.8rem;
    font-weight: 500;
    transform: translateY(0);
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card-with-bg:hover .category-description {
    transform: translateY(-3px);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}

/* Tornar todo o card clicável */
.category-card-with-bg {
    cursor: pointer;
}

.category-card-with-bg .category-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Botão circular com apenas ícone */
.category-card-with-bg .category-btn.category-btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: white !important;
}

.category-card-with-bg .category-btn.category-btn-icon i {
    font-size: 1rem;
    color: white !important;
    transition: transform 0.3s ease;
}

.category-card-with-bg .category-btn.category-btn-icon:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.category-card-with-bg .category-btn.category-btn-icon:hover i {
    transform: translateX(3px);
}

.category-card-with-bg .category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.category-card-with-bg .category-btn:hover::before {
    left: 100%;
}

.category-card-with-bg .category-btn:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Imagens específicas para cada card */
.category-card.female.category-card-with-bg {
    background-image: url('/imagens/servico_cabeleireiro.jpg');
}

.category-card.male.category-card-with-bg {
    background-image: url('/imagens/corte_homem.jpg');
}

/* Gradiente personalizado para o card feminino - sem overlay */
.category-card.female .category-overlay {
    background: transparent;
}

.category-card.female:hover .category-overlay {
    background: transparent;
}

/* Linha decorativa específica para mulheres */
.category-card.female .category-card-header::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Gradiente personalizado para o card masculino */
.category-card.male .category-overlay {
    background: transparent;
}

.category-card.male:hover .category-overlay {
    background: transparent;
}

/* Linha decorativa específica para homens */
.category-card.male .category-card-header::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Estilos para Serviços Especiais/Eventos */
.category-card.events.category-card-with-bg {
    background-image: url('/imagens/eventos.jpg');
}

/* Slideshow para card de eventos */
.category-card-slider {
    position: relative;
}

.category-card-slider.category-card-with-bg {
    background-image: none !important;
}

.category-card-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.category-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.category-slide.active {
    opacity: 1;
}

.category-card-slider .category-overlay {
    z-index: 1;
}

.category-card.events .category-overlay {
    background: transparent;
}

.category-card.events:hover .category-overlay {
    background: transparent;
}

.category-card.events .category-card-header::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Estilos para Estética */
.category-card.aesthetics.category-card-with-bg {
    background-image: url('/imagens/salao_estetica.jpg');
}

.category-card.aesthetics .category-overlay {
    background: transparent;
}

.category-card.aesthetics:hover .category-overlay {
    background: transparent;
}

.category-card.aesthetics .category-card-header::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

.category-card-with-bg .category-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}