/*
Theme Name: Kika Hair Boutique
Theme URI: https://kikahairboutique.com
Author: Kika Hair Boutique
Author URI: https://kikahairboutique.com
Description: Tema premium para boutique de perucas de cabelo 100% humano virgem. Design elegante com foco em conversões.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kika-hair
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   KIKA HAIR BOUTIQUE - WORDPRESS THEME
   Cores estratégicas baseadas em psicologia das vendas
   ======================================== */

/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #FAF8F5;
    color: #1A1A1A;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   VARIÁVEIS DE CORES
   ======================================== */
:root {
    --luxury-black: #1A1A1A;
    --luxury-gold: #C9A962;
    --luxury-gold-light: #D4BC7E;
    --luxury-gold-dark: #A68B4B;
    --beauty-pink: #E8B4B8;
    --beauty-pink-light: #F5D5D8;
    --cream: #FAF8F5;
    --cream-dark: #F5F0E8;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ========================================
   TIPOGRAFIA
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;500;600;700&display=swap');

.section-title {
    font-size: 2.5rem;
    color: var(--luxury-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 50%, var(--luxury-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BOTÕES
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--luxury-gold-dark) 0%, var(--luxury-gold) 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--luxury-black);
    padding: 1rem 2rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--luxury-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--luxury-black);
    color: var(--white);
}

.btn-secondary-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary-white:hover {
    background: var(--white);
    color: var(--luxury-black);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    padding: 1.5rem 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.site-logo .kika {
    color: var(--white);
    transition: color 0.3s ease;
}

.site-header.scrolled .site-logo .kika {
    color: var(--luxury-black);
}

.site-logo .hair {
    color: var(--luxury-gold);
}

/* Navegação */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    transition: color 0.3s ease;
}

.site-header.scrolled .main-nav a {
    color: var(--luxury-black);
}

.main-nav a:hover {
    color: var(--luxury-gold);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.site-header.scrolled .header-phone {
    color: var(--luxury-black);
}

.header-phone svg {
    width: 1rem;
    height: 1rem;
    color: var(--luxury-gold);
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--white);
}

.site-header.scrolled .mobile-menu-btn svg {
    color: var(--luxury-black);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-tag {
    display: inline-block;
    color: var(--luxury-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.hero-benefit svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--luxury-gold);
}

/* Hero Product Card */
.hero-product-card {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-product-card {
        display: block;
    }
}

.hero-product-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 1rem;
    filter: blur(20px);
}

.hero-product-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-product-inner img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.hero-product-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
}

.hero-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-product-name {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-product-type {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--luxury-black);
}

.hero-product-price {
    text-align: right;
}

.hero-product-price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

.hero-product-price-sub {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.25rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   PRODUTOS SECTION
   ======================================== */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--luxury-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--luxury-gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-action-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-action-btn:hover {
    background: var(--luxury-gold);
}

.product-action-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--luxury-black);
}

.product-action-btn:hover svg {
    color: var(--white);
}

.product-action-btn.favorited {
    background: #EF4444;
}

.product-action-btn.favorited svg {
    color: var(--white);
}

.product-discount {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #EF4444;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.875rem;
    color: var(--luxury-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--luxury-black);
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-stars {
    display: flex;
    gap: 0.125rem;
}

.product-stars svg {
    width: 1rem;
    height: 1rem;
}

.product-stars .filled {
    color: #FACC15;
    fill: #FACC15;
}

.product-stars .empty {
    color: var(--gray-300);
}

.product-reviews {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

.product-price-original {
    font-size: 1rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-btn {
    width: 100%;
}

/* ========================================
   QUALIDADE SECTION
   ======================================== */
.quality-section {
    background: var(--luxury-black);
    color: var(--white);
}

.quality-section .section-title {
    color: var(--white);
}

.quality-section .section-subtitle {
    color: var(--gray-400);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 640px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quality-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quality-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.quality-card:hover {
    border-color: rgba(201, 169, 98, 0.5);
}

.quality-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--luxury-gold);
}

.quality-card:hover .quality-icon {
    background: rgba(201, 169, 98, 0.3);
}

.quality-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.quality-description {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Quality Two Column */
.quality-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .quality-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.quality-image-wrapper {
    position: relative;
}

.quality-image-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 1rem;
    filter: blur(20px);
}

.quality-image {
    position: relative;
}

.quality-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
}

.quality-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--luxury-gold);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.quality-badge svg {
    width: 3rem;
    height: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.quality-badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.quality-badge-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.quality-content h3 {
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.quality-content > p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .quality-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quality-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--luxury-gold);
}

.quality-feature-text {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.quality-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ========================================
   DEPOIMENTOS SECTION
   ======================================== */
.testimonials-carousel {
    position: relative;
}

.testimonials-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
}

.testimonial-card {
    max-width: 56rem;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    color: rgba(201, 169, 98, 0.2);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-content {
        flex-direction: row;
        text-align: left;
    }
}

.testimonial-avatar img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(201, 169, 98, 0.2);
}

.testimonial-body {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-body {
        text-align: left;
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .testimonial-stars {
        justify-content: flex-start;
    }
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #FACC15;
    fill: #FACC15;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--luxury-black);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-product {
    font-size: 0.875rem;
    color: var(--luxury-gold);
    margin-top: 0.25rem;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--luxury-gold);
}

.carousel-btn:hover svg {
    color: var(--white);
}

.carousel-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--luxury-black);
}

.carousel-btn.prev {
    left: -1rem;
}

.carousel-btn.next {
    right: -1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--luxury-gold);
}

.carousel-dot:hover {
    background: var(--gray-400);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: var(--gray-600);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(201, 169, 98, 0.5);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--luxury-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--luxury-gold);
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   CONTATO SECTION
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--luxury-black);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:hover .contact-item-text {
    color: var(--luxury-gold);
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--luxury-gold);
}

.contact-item-title {
    font-weight: 600;
    color: var(--luxury-black);
    margin-bottom: 0.25rem;
}

.contact-item-text {
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.contact-social h4 {
    font-weight: 600;
    color: var(--luxury-black);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--luxury-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--luxury-gold);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--luxury-black);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--luxury-black);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--luxury-black);
    color: var(--white);
}

.footer-benefits {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--luxury-gold);
}

.footer-benefit-title {
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-benefit-desc {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand .footer-logo {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand .footer-logo .kika {
    color: var(--white);
}

.footer-brand .footer-logo .hair {
    color: var(--luxury-gold);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--luxury-gold);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--luxury-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--luxury-gold);
}

/* ========================================
   UTILITÁRIOS
   ======================================== */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
    }
    
    .header-cta .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .carousel-btn {
        display: none;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

/* Intersection Observer Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
