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

:root {
    --primary-gold: #d4af37;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --hover-bg: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --success: #28a745;
    --danger: #dc3545;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-icon {
    width: 70px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-gold);
}

.btn-agendar {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.186), rgba(0, 0, 0, 0.214)), url('../img/leo_loja.png') no-repeat center center/cover;
    margin-top: 80px;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Serviços Showcase */
.servicos-showcase {
    padding: 100px 0;
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-secondary);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.servico-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.servico-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.servico-info {
    padding: 30px;
}

.servico-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.servico-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.servico-preco {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Agendamento Moderno */
.agendamento-moderno {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #151515 100%);
    min-height: 100vh;
}

.promo-banner-top {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
    color: var(--dark-bg);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin: 30px auto;
    max-width: 900px;
    animation: pulse 2s infinite;
}

.promo-icon {
    font-size: 24px;
    margin-right: 10px;
}

/* Progress Steps */
.booking-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 50px auto;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.progress-step.active .step-label {
    color: var(--primary-gold);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--hover-bg);
    margin: 0 20px;
    position: relative;
    top: -30px;
}

/* Booking Container */
.booking-container {
    max-width: 1000px;
    margin: 60px auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.step-title {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 40px;
    text-align: center;
}

/* Step 1: Serviços */
.categoria-section {
    margin-bottom: 30px;
}

.categoria-title {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding: 20px;
    background: var(--hover-bg);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.categoria-title:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.categoria-titulo-texto {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.categoria-icone {
    font-size: 24px;
    color: var(--primary-gold);
    min-width: 28px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.categoria-title:hover .categoria-icone {
    color: #f4d03f;
    text-shadow: 0 4px 12px rgba(212, 175, 55, 0.6);
    transform: scale(1.15) rotate(5deg);
}

.categoria-toggle {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 15px;
    color: var(--primary-gold);
}

.categoria-title.collapsed .categoria-toggle {
    transform: rotate(-180deg);
}

.servicos-categoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    max-height: 2000px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.servicos-categoria-grid.collapsed {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.servicos-grid-booking {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.servico-card-booking {
    background: var(--hover-bg);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.servico-card-booking:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.servico-card-booking.selected {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--hover-bg) 100%);
}

.servico-card-booking.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.servico-card-booking h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.servico-card-booking p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

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

.servico-preco-booking {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.servico-duracao {
    font-size: 14px;
    color: var(--text-secondary);
}

.booking-summary {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.summary-item span {
    color: var(--text-secondary);
    font-size: 14px;
}

.summary-item strong {
    font-size: 28px;
    color: var(--primary-gold);
}

/* Step 2: Data e Horário */
.date-time-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.date-selector {
    text-align: center;
}

.date-selector label {
    display: block;
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.date-input {
    width: 100%;
    max-width: 400px;
    padding: 15px 25px;
    font-size: 18px;
    background: var(--hover-bg);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.date-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.horarios-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.horario-slot {
    background: var(--hover-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.horario-slot:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.horario-slot.selected {
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 700;
}

.horario-slot.promocional {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--hover-bg) 100%);
}

.horario-slot.promocional::after {
    content: '-20%';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.horario-time {
    font-size: 20px;
    font-weight: 700;
}

.horario-status {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Step 3: Dados */
.booking-review {
    margin-bottom: 40px;
}

.review-card {
    background: var(--hover-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.review-card h4 {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item.highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 10px;
}

.review-label {
    color: var(--text-secondary);
}

.review-value {
    font-weight: 600;
    color: var(--text-primary);
}

.promo-text {
    color: var(--success) !important;
}

/* Form Moderno */
.form-dados-modern {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    font-size: 14px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group-modern input {
    padding: 15px 20px;
    background: var(--hover-bg);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.form-group-modern input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group-modern input::placeholder {
    color: var(--text-secondary);
}

/* Botões */
.btn-next,
.btn-confirmar {
    width: 100%;
    padding: 18px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-next:hover:not(:disabled),
.btn-confirmar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-next:disabled {
    background: var(--hover-bg);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.btn-back {
    background: transparent;
    border: 2px solid var(--hover-bg);
    color: var(--text-primary);
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-back:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Modal Moderno */
.modal-modern {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content-modern {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: min(600px, calc(100% - 40px));
    margin: 20px auto;
    border: 2px solid var(--primary-gold);
    animation: modalSlideIn 0.4s ease;
}

.modal-open {
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon-success {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-header h2 {
    color: var(--primary-gold);
    font-size: 28px;
}

.modal-body {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.codigo-box {
    background: var(--hover-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.codigo-box strong {
    color: var(--primary-gold);
    font-size: 18px;
}

.codigo-box .codigo-value {
    font-size: 32px;
    letter-spacing: 4px;
    color: var(--text-primary);
    font-weight: 700;
    display: block;
    margin: 15px 0;
}

.btn-modal-close {
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mensagem vazia */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Melhorias para Touch/Mobile */
.btn-trocar-barbeiro {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
    min-height: 44px; /* Tamanho mínimo recomendado para touch targets */
    min-width: 44px;
    position: relative;
    z-index: 10;
}

.btn-trocar-barbeiro:active {
    transform: scale(0.95);
    background: rgba(212, 175, 55, 0.3) !important;
}

.opcao-barbeiro {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 5;
}

.opcao-barbeiro:active {
    transform: scale(0.98);
    background: rgba(212, 175, 55, 0.15) !important;
}

/* Garantir que elementos filhos não interceptem cliques */
.opcao-barbeiro img,
.opcao-barbeiro div {
    pointer-events: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .servicos-grid,
    .servicos-grid-booking {
        grid-template-columns: 1fr;
    }

    .booking-container {
        padding: 30px 20px;
    }

    .booking-progress {
        flex-direction: column;
        gap: 20px;
    }

    .progress-line {
        width: 3px;
        height: 40px;
        margin: 0;
        top: 0;
    }

    .horarios-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .step-title {
        font-size: 22px;
    }

    .booking-summary {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        display: none;
    }

    .header-content {
        justify-content: space-between;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .modal-content-modern {
        padding: 30px 20px;
        margin: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Aumentar área de toque para botões no mobile */
    .btn-trocar-barbeiro {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .opcao-barbeiro {
        min-height: 60px;
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .btn-hero {
        padding: 15px 35px;
        font-size: 16px;
    }

    .categoria-title {
        font-size: 20px;
        padding: 15px;
    }

    .servico-card-booking h4 {
        font-size: 18px;
    }

    .servico-preco-booking {
        font-size: 20px;
    }

    .horario-time {
        font-size: 16px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-label {
        font-size: 12px;
    }
}

/* Utilidades */
.hidden {
    display: none !important;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

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

::-webkit-scrollbar-thumb:hover {
    background: #c4a137;
}

/* ===== NOVAS SEÇÕES ===== */

/* Galeria */
.galeria {
    padding: 100px 0;
    background: var(--dark-bg);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

/* Equipe */
.equipe {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #151515 100%);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.membro-equipe {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.membro-equipe:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.membro-foto {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.membro-info {
    padding: 30px 20px;
}

.membro-nome {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.membro-cargo {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 15px;
}

.membro-desc {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background: var(--dark-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-gold);
}

.review-info h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.review-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

.rating {
    color: var(--primary-gold);
    font-size: 18px;
    margin-top: 5px;
}

.review-text {
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 48px;
    color: var(--dark-bg);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    color: var(--dark-bg);
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: var(--dark-bg);
    color: var(--primary-gold);
    padding: 20px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid var(--dark-bg);
}

.btn-cta:hover {
    background: transparent;
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Social Media */
.social-section {
    padding: 80px 0;
    background: var(--card-bg);
    text-align: center;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.social-item:hover {
    transform: translateY(-5px);
    color: var(--primary-gold);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: var(--hover-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.social-item:hover .social-icon {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.social-name {
    font-weight: 600;
    font-size: 16px;
}

/* Stats Counter */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #151515 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
}

/* Atualize estas regras no style.css */

/* Social Media Icons */
.social-icon {
    width: 80px;
    height: 80px;
    background: var(--hover-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px; /* Ajustado para ícones Font Awesome */
    margin-bottom: 15px;
    transition: all 0.3s;
    color: var(--text-primary);
}

.social-item:hover .social-icon {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

/* WhatsApp Float com ícone profissional */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px; /* Tamanho do ícone */
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

/* Social Links no Footer */
.social-link {
    width: 45px;
    height: 45px;
    background: var(--hover-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px) scale(1.1);
}

/* Ícones com cores oficiais das redes sociais */
.social-link.facebook:hover { background: #1877F2; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.twitter:hover { background: #1DA1F2; }
.social-link.linkedin:hover { background: #0077B5; }

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Melhorias de Responsividade */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 36px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .social-grid {
        gap: 20px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .btn-cta {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}


/* Menu Desktop (sempre visível) */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-gold);
}

/* Menu Hamburger (apenas mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animações do Hamburger */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Menu Mobile */
@media (max-width: 768px) {
    /* Esconder menu desktop no mobile */
    nav ul {
        display: none;
    }
    
    /* Mostrar hamburger no mobile */
    .menu-toggle {
        display: flex;
        order: 2;
    }
    
    /* Estilos do menu mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-bg);
        transition: 0.3s ease-in-out;
        z-index: 999;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        background: var(--dark-bg);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 20px;
        font-size: 18px;
        text-align: center;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.3s;
        background: transparent;
    }
    
    .nav-menu a:hover {
        background: var(--hover-bg);
        color: var(--primary-gold);
    }
    
    /* Ajustes do header no mobile */
    .header-content {
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    .btn-agendar {
        order: 3;
        padding: 10px 20px;
        font-size: 14px;
        margin-left: 10px;
    }
}

/* Prevenir scroll quando menu está aberto */
body.menu-open {
    overflow: hidden;
}

/* Garantir que o botão agendar seja visível */
.btn-agendar {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Splash Screen Animation */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    transform: scale(0.8);
    animation: splashScaleIn 1.2s ease-out forwards;
}

@keyframes splashScaleIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-animation {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.logo-circle .logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: logoImageAppear 1.5s ease-in-out 0.3s forwards;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

@keyframes logoImageAppear {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
        filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    }
    50% {
        transform: scale(1.2) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    }
    70% {
        transform: scale(0.9) rotate(10deg);
    }
    85% {
        transform: scale(1.05) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: logoTextAppear 1s ease-in-out 1.5s forwards;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoTextAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: loadingProgress 2.5s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    20% {
        width: 30%;
    }
    50% {
        width: 60%;
    }
    80% {
        width: 90%;
    }
    100% {
        width: 100%;
    }
}

/* Efeito de partículas opcional */
.splash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
}

/* Versão minimalista alternativa */
.splash-minimal {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.splash-minimal .logo-circle {
    border: 3px solid var(--primary-gold);
    animation: minimalRotate 2s ease-in-out;
}

@keyframes minimalRotate {
    0% {
        transform: rotate(0deg) scale(0.8);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .logo-text {
        font-size: 24px;
    }

    .loading-bar {
        width: 150px;
    }
}
