/* css/style.css */
:root {
    --rosa: #E1306D;
    --rosa-escuro: #C11A5A;
    --rosa-claro: #FCE4EC;
    --dourado: #FFD700;
    --dourado-escuro: #E6C200;
    --branco: #FFFFFF;
    --cinza-50: #F8FAFC;
    --cinza-100: #F1F5F9;
    --cinza-200: #E2E8F0;
    --cinza-300: #CBD5E1;
    --cinza-400: #94A3B8;
    --cinza-500: #64748B;
    --cinza-600: #475569;
    --cinza-700: #334155;
    --cinza-800: #1E293B;
    --cinza-900: #0F172A;
    --sombra: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --sombra-grande: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--cinza-800);
    background: var(--branco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 🔐 BOTÃO ADMIN */
.admin-access {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

.admin-btn {
    background: var(--cinza-700);
    color: var(--branco);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--sombra);
}

.admin-btn:hover {
    background: var(--cinza-800);
    transform: translateY(-2px);
}

/* 🎯 HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-escuro) 100%);
    color: var(--branco);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: var(--dourado);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--dourado);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--dourado);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--dourado);
    color: var(--cinza-900);
}

.btn-primary:hover {
    background: var(--dourado-escuro);
    transform: translateY(-2px);
    box-shadow: var(--sombra-grande);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--branco);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* 🕒 HORÁRIOS DESTAQUE */
.horarios-destaque {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.horario-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.horario-item i {
    font-size: 1.5rem;
    color: var(--dourado);
}

.horario-item div {
    display: flex;
    flex-direction: column;
}

.horario-item strong {
    font-size: 0.9rem;
    opacity: 0.9;
}

.horario-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 💅 SEÇÕES GERAIS */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--cinza-900);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--cinza-600);
    margin-bottom: 3rem;
}

/* 🎴 SERVIÇOS */
.servicos {
    background: var(--cinza-50);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-grande);
    border-color: var(--rosa-claro);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: var(--rosa-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.servico-icon i {
    font-size: 2rem;
    color: var(--rosa);
}

.servico-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--cinza-900);
}

.servico-card p {
    color: var(--cinza-600);
    margin-bottom: 1.5rem;
}

.servico-preco {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rosa);
    margin-bottom: 0.5rem;
}

.servico-duracao {
    color: var(--cinza-500);
    font-size: 0.9rem;
}

/* 📸 PORTFÓLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-grande);
}

/* 📸 PORTFÓLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-grande);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: var(--cinza-200);
    overflow: hidden;
    flex-shrink: 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-info {
    padding: 1.5rem;
    background: var(--branco);
}

.portfolio-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cinza-900);
}

.portfolio-info p {
    color: var(--cinza-600);
    font-size: 0.9rem;
}
    

/*
.portfolio-image {
    width: 100%;
    height: 200px;
    background: var(--cinza-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cinza-500);
}

.portfolio-image i {
    font-size: 3rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cinza-900);
}

.portfolio-info p {
    color: var(--cinza-600);
    font-size: 0.9rem;
}
*/

/* 📅 AGENDAMENTO */
.agendamento {
    background: var(--cinza-100);
}

.agendamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.agendamento-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cinza-900);
}

.agendamento-info p {
    font-size: 1.125rem;
    color: var(--cinza-600);
    margin-bottom: 2rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--branco);
    border-radius: 8px;
    box-shadow: var(--sombra);
}

.contato-item i {
    color: var(--rosa);
    font-size: 1.25rem;
    width: 20px;
}

.agendamento-form {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--sombra-grande);
}

.agendamento-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--cinza-900);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--cinza-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cinza-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rosa);
    box-shadow: 0 0 0 3px rgba(225, 48, 109, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* 🦶 FOOTER */
.footer {
    background: var(--cinza-900);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links p,
.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--cinza-700);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* 🔐 MODAIS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    box-shadow: var(--sombra-grande);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cinza-900);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--cinza-500);
    cursor: pointer;
    padding: 0.5rem;
}

.close-btn:hover {
    color: var(--cinza-700);
}

.modal-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-icon i {
    font-size: 4rem;
}

.modal-icon.success {
    color: #10B981;
}

/* 🔐 LOGIN ACCESS */
.login-access {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

.login-btn {
    background: var(--rosa);
    color: var(--branco);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--sombra);
}

.login-btn:hover {
    background: var(--rosa-escuro);
    transform: translateY(-2px);
}

/* 👤 QUANDO LOGADO */
.user-logged .login-btn {
    background: var(--dourado);
    color: var(--cinza-900);
}

.user-logged .login-btn:hover {
    background: var(--dourado-escuro);
}



/* 📱 RESPONSIVO */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .agendamento-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .horarios-destaque {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
}