/* ============================================
   VALORATIVOS - CONSULTA ONLINE
   Layout Profissional - Gestão Empresarial
   ============================================ */

/* VARIÁVEIS GLOBAIS */
:root {
    --bg: #0e1a24;
    --box: #152433;
    --gold: #d4af37;
    --text: #f1f1f1;
    --muted: #9aa6b2;
    --radius: 10px;
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

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

/* HEADER */
header {
    background: var(--box);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-block {
    text-align: center;
    margin-bottom: 12px;
}

.interbiz {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 400;
    margin-top: 4px;
}

/* NAVEGAÇÃO */
.nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s, transform 0.2s;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #152433 0%, #0e1a24 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* SECTIONS */
section {
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 600;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--box);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

.card h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 25px;
}

.card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* FORMULÁRIOS */
form {
    max-width: 600px;
    margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    background: var(--box);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(21, 36, 51, 0.8);
}

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

input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

label {
    display: block;
    color: var(--text);
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: 500;
}

/* BOTÕES */
button,
.btn,
a button {
    width: 100%;
    padding: 14px 28px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 15px;
}

button:hover,
.btn:hover,
a button:hover {
    background: #b99626;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

button:active,
.btn:active {
    transform: translateY(0);
}

/* FOOTER */
.site-footer {
    background: var(--box);
    text-align: center;
    padding: 25px 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 40px;
}

.site-footer p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* PÁGINAS ESPECÍFICAS */

/* Agenda */
.agenda-container {
    max-width: 700px;
    margin: 30px auto;
    background: var(--box);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.agenda-container h2 {
    color: var(--gold);
    margin-bottom: 15px;
}

.date-select,
.time-select {
    width: 100%;
    padding: 14px;
    background: #0f1b26;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Confirmação */
.confirm-container {
    max-width: 750px;
    margin: 30px auto;
    background: var(--box);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.28);
}

.confirm-container h2 {
    color: var(--gold);
    margin-bottom: 15px;
}

.resumo-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.resumo-box p {
    margin: 8px 0;
    color: var(--text);
}

.resumo-box strong {
    color: var(--gold);
}

/* Página de Obrigado */
.thank-you-container {
    background: var(--box);
    padding: 40px 35px;
    border-radius: var(--radius);
    max-width: 520px;
    margin: 80px auto;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.thank-you-container h1 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.thank-you-container p {
    margin-bottom: 25px;
    line-height: 1.7;
}

/* UTILIDADES */
.price-small {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 6px;
    display: block;
}

.confid {
    font-size: 0.78rem;
    opacity: 0.7;
    margin-top: 10px;
    color: var(--muted);
}

.btn-enviar {
    background: var(--gold);
    margin-top: 10px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .interbiz {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    section {
        padding: 35px 15px;
    }
    
    .card {
        padding: 20px;
    }
}
