/* src/styles/style.css */
@import url('header.css');
@import url('home.css');
@import url('about.css');
@import url('services.css');
@import url('gallery.css');
@import url('testimonials.css');
@import url('address.css');
@import url('footer.css');

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Tema Barbearia Clássica */
    --primary-color: #1a1a1a;          /* Preto sofisticado */
    --primary-dark: #000000;           /* Preto puro */
    --secondary-color: #d4af37;        /* Dourado clássico */
    --accent-color: #8b4513;           /* Marrom madeira */
    --accent-light: #a0522d;           /* Marrom claro */
    
    /* Cores Neutras */
    --dark-color: #2c2c2c;             /* Cinza escuro */
    --light-color: #f5f5f5;            /* Off-white */
    --cream-color: #f8f4e9;            /* Bege claro/creme */
    --gray-light: #e8e8e8;             /* Cinza muito claro */
    
    /* Cores de Texto */
    --text-color: #333333;             /* Preto suave */
    --text-light: #666666;             /* Cinza médio */
    --text-on-dark: #ffffff;           /* Branco para fundos escuros */
    
    /* Cores de Estado */
    --success-color: #27ae60;          /* Verde mais escuro */
    --warning-color: #e67e22;          /* Laranja terroso */
    --error-color: #c0392b;            /* Vermelho vinho */
    
    /* Sombras */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-dark: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7ef8a 100%);
    --gradient-wood: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    
    /* Bordas */
    --border-color: #d6d6d6;
    --border-dark: #444444;
    --border-gold: #d4af37;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Header Mobile */
    #nav_list, .instagram-btn {
        display: none;
    }

    #mobile_btn {
        display: block;
    }

    #mobile_menu.active {
        display: block;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        flex-wrap: wrap;
    }

    /* Testimonials Section */
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Address Section */
    .address-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .address-actions {
        flex-direction: column;
    }

    .btn-whatsapp-address, .btn-call {
        min-width: auto;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Floating WhatsApp */
    .whatsapp-text {
        display: inline;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }

    .services-info {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-4 { margin-bottom: 4rem; }

.hidden {
    display: none !important;
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}