
:root {
    --neon-yellow: #ccff00;    /* A cor amarela vibrante */
    --bg-deep: #000;        /* Fundo principal bem escuro */
    --surface-dark: #181b21;   /* Fundo dos cartões */
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000; /* Fundo fora do app */
    font-family: var(--font-main);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
}

/* --- Container Principal (Mobile Layout) --- */
.app-container {
    max-width: 28rem; 
    margin: 0 auto;
    min-height: 100vh;
    background-color: var(--bg-deep);
    position: relative;
    overflow-x: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* --- Tipografia Utilitária --- */
.badge-destaque {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
}

/* --- Header --- */
.app-header {
    padding: 2rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.img-logo {
    width: 100%;            
    height: 100%;           
    object-fit: cover;      
    filter: none;           
}


.logo-box, .logo-box-small {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}


.logo-box {
    width: 100%;            
    max-width: 350px;      
    height: 200px;          
    background-color: #ffffff; 
    border-radius: 1rem;    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;       
    
    /* Efeito de borda/brilho para destacar o box do fundo preto */
    border: 2px solid #ccff00; 
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.icon-logo {
    color: #000;
    font-size: 1.875rem;
    font-weight: 700;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--text-white);
}

.brand-subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--neon-yellow);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* --- Hero Section --- */
.section-hero {
    padding: 2rem 1.5rem;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.hero-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.625;
    margin-bottom: 2rem;
}

/* --- Botões --- */
.btn-primary {
    width: 100%;
    background-color: var(--neon-yellow);
    color: #000;
    font-weight: 800;
    padding: 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.2);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* --- Catálogo de Serviços --- */
.section-catalogo {
    padding: 0 1.5rem 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.marker {
    width: 0.375rem;
    height: 1.5rem;
    background-color: var(--neon-yellow);
    border-radius: 9999px;
    display: block;
}

.grid-servicos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.card-servico {
    background-color: var(--surface-dark);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
    cursor: default;
}

/* Efeito Hover no card para simular o "group" do Tailwind */
.card-servico:hover .icon-box {
    background-color: var(--neon-yellow);
    color: #000;
}

.card-top {
    margin-bottom: 0.75rem;
}

.card-servico .icon-box {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s, color 0.3s;
}

.card-servico h4 {
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.card-servico p {
    font-size: 9px;
    color: #6b7280;
    line-height: 1.25;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.price {
    font-size: 10px;
    font-weight: 700;
    color: var(--neon-yellow);
}

.btn-small {
    width: 100%;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    background-color: var(--neon-yellow);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    border: none;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* --- Agendamento Form --- */
.section-agendamento {
    padding: 0 1.5rem 3rem;
}

.form-container {
    background-color: var(--surface-dark);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.separator {
    width: 3rem;
    height: 0.25rem;
    background-color: var(--neon-yellow);
    border-radius: 9999px;
    margin-top: 0.75rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.625;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.input-group input, 
.input-group select {
    width: 100%;
    background-color: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: white;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--neon-yellow);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
}

.select-wrapper .chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

.mt-8 { margin-top: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* --- Localização --- */
.section-localizacao {
    padding: 0 1.5rem 4rem;
}

.map-card {
    background-color: var(--surface-dark);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-box {
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-marker {
    background-color: rgba(204, 255, 0, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
}

.icon-marker span {
    color: var(--neon-yellow);
    font-size: 1.25rem;
}

.address-box p {
    font-size: 0.75rem;
    color: #d1d5db;
    font-weight: 500;
    line-height: 1.25;
}

.address-box p span {
    color: #6b7280;
}

.map-image-box {
    width: 100%;
    height: 200px;           /* Defina a altura para o mini mapa */
    position: relative;
    border-radius: 12px;     /* Arredonda as bordas do mapa */
    overflow: hidden;        /* Garante que o mapa não saia das bordas */
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-image-box iframe {
    filter: grayscale(0.3) contrast(1.1) brightness(0.8);
    pointer-events: none;    /* Impede que o zoom do mapa atrapalhe a rolagem da página */
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222; /* Placeholder para o mapa */
    opacity: 0.5;
}


.btn-map {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 700;
    padding: 1.25rem;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-map:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-map span:first-child {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Footer --- */
.app-footer {
    background-color: #000;
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}


.footer-brand h2 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.footer-brand p {
    font-size: 9px;
    color: #4b5563;
    margin-top: 0.5rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--neon-yellow);
    color: black;
    border-color: var(--neon-yellow);
}

.credits p {
    font-size: 10px;
    color: #4b5563;
    font-weight: 500;
}

.credits span {
    color: var(--neon-yellow);
}

.copyright {
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 9px;
    color: #374151;
}

/* --- Floating Button --- */
.fab-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 50;
    background-color: var(--neon-yellow);
    color: black;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
}

.fab-whatsapp:active {
    transform: scale(0.95);
}

.fab-whatsapp span {
    font-size: 1.875rem;
    font-weight: 700;
}