/* ===================================
   PÁGINA CABELEIREIRO & BELEZA FEMININA
   Tema: Rosa/Dourado elegante
   =================================== */

/* Reset para remover gaps */
body {
    margin: 0;
    padding: 0;
}

section {
    margin: 0;
    padding: 0;
}

/* Cor principal feminina */
:root {
    --accent-color: #d4a574;
    --accent-hover: #c4956a;
}

/* Forçar header visível nesta página */
.main-header {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
}

.main-header .brand-name,
.main-header .brand-tagline {
    color: #1a1a1a !important;
}

.main-header .nav-link,
.main-header .nav-text {
    color: #1a1a1a !important;
}

.main-header .nav-link:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    border-radius: 8px;
}

.main-header .nav-link:hover .nav-text,
.main-header .nav-link:hover .nav-icon,
.main-header .nav-link:hover i {
    color: #fff !important;
}

/* ===================================
   HERO SLIDESHOW
   =================================== */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height));
    min-height: 500px;
    overflow: hidden;
    margin-top: var(--header-height);
    margin-bottom: 0;
}

.hero-slideshow + .services-section {
    margin-top: 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.4) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.slideshow-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slideshow-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slideshow-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Dots de navegação */
.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255,255,255,0.7);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* ===================================
   SECÇÃO SERVIÇOS - ESTILO FEMININO
   =================================== */
.services-section {
    background: #faf8f6;
    padding: 80px 40px;
    margin: 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    letter-spacing: 2px;
}

.services-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.services-divider {
    width: 120px;
    height: 3px;
    background: var(--accent-color);
    margin: 50px auto;
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Cards de Serviço - Estilo Feminino */
.service-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.15);
}

.service-card .service-icon {
    width: auto;
    height: auto;
    margin: 0 auto 25px;
    background: transparent;
    border-radius: 0;
    color: var(--accent-color);
    font-size: 3rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   BANNER SEPARADOR
   =================================== */
.banner-separator {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin: 0;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.banner-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 0;
    max-width: 800px;
    line-height: 1.6;
}

/* ===================================
   SECÇÃO EXPLORAR MAIS
   =================================== */
.explore-section {
    background: #faf8f6;
    padding: 80px 40px;
    text-align: center;
    margin: 0;
}

.explore-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.explore-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #888;
    margin: 0 0 50px 0;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.explore-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.explore-card:hover .explore-card-bg {
    transform: scale(1.1);
}

.explore-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    transition: background 0.3s ease;
}

.explore-card:hover .explore-card-overlay {
    background: linear-gradient(180deg, rgba(212, 165, 116, 0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.explore-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    text-align: left;
    z-index: 2;
}

.explore-card-content i:first-child {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.explore-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px 0;
}

.explore-card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.explore-card:hover .explore-link {
    gap: 12px;
}

/* Secção CTA */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: #faf8f6;
    margin: 0;
}

.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: #fff !important;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.35);
}

/* ===================================
   SERVIÇOS POR CATEGORIA - VERSÃO FEMININA
   =================================== */
.services-categories-section.themed {
    background: #faf8f6 !important;
    padding: 60px 40px !important;
    border-top: 1px solid rgba(0,0,0,0.06) !important;
    margin: 0 !important;
}

.services-categories-section.themed .services-categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-categories-section.themed .category-title {
    color: var(--accent-color) !important;
}

.services-categories-section.themed .category-services li a {
    color: #666 !important;
}

.services-categories-section.themed .category-services li a:hover {
    color: #1a1a1a !important;
}

/* Override do footer margin para esta página */
.main-footer {
    margin-top: 0 !important;
}

/* Responsividade */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slideshow {
        height: 60vh;
        min-height: 400px;
    }
    
    .slideshow-content h1 {
        font-size: 2rem;
    }
    
    .slideshow-content p {
        font-size: 1rem;
    }
    
    .services-section {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 40px 25px;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .banner-separator {
        height: 250px;
    }
    
    .explore-section {
        padding: 60px 20px;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-card {
        height: 280px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .services-categories-section.themed {
        padding: 40px 20px !important;
    }
}
