:root {
    --primary: #ff4905;
    --primary-dark: #e03d00;
    --secondary: #000000;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Roboto Slab', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.btn-primary { display: inline-block; background: var(--primary); color: var(--white); padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: background 0.2s; }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }

/* ===== HEADER ===== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 20px 40px;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img { max-height: 60px; width: auto; }
.header-whatsapp { display: flex; align-items: center; gap: 10px; }
.header-whatsapp a { display: flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 700; font-style: italic; font-size: 1.1rem; text-shadow: none; background: var(--white); padding: 6px 16px 6px 10px; border-radius: 50px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.header-whatsapp .whatsapp-icon { width: 40px; height: 40px; flex-shrink: 0; }

/* ===== HERO ===== */
.hero-section {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    min-height: 100vh;
    align-items: center;
}

.hero-content-col {
    width: 45%;
    padding: 120px 40px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-block {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}
.hero-block:last-child { margin-bottom: 0; }

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.66667rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.hero-title-contato { font-size: 1.3rem; margin-bottom: 16px; }
.hero-desc {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.btn-reserva-qf { font-size: 0.9rem; padding: 10px 24px; }

/* ===== FORMULÁRIO DE CONTATO ===== */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-dark);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255,73,5,0.15);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; text-align: center; padding: 14px; font-size: 1rem; border-radius: 6px; }

/* ===== LOCALIZAÇÃO ===== */
.location-section { background: var(--bg-light); padding: 60px 25px; text-align: center; }
.location-inner { max-width: 800px; margin: 0 auto 30px; }
.section-title {
    font-family: var(--font-heading);
    font-size: 1.66667rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.location-address { font-size: 1.05rem; color: var(--text-dark); font-weight: 600; }
.location-map { max-width: 1000px; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.location-map iframe { display: block; width: 100%; height: 350px; border: 0; }

/* ===== FOOTER ===== */
.site-footer { background: #EBEBEB; color: #4b4f58; padding: 30px 25px; text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-copyright { font-size: 0.85rem; margin-bottom: 8px; color: #4b4f58; }
.footer-credits { font-size: 0.8rem; margin-bottom: 8px; line-height: 1.6; color: #4b4f58; }
.footer-credits .footer-logo { display: inline-block; height: 50px; width: auto; vertical-align: middle; margin-top: 6px; }
.footer-links { font-size: 0.8rem; margin-top: 8px; }
.footer-links a { color: #4b4f58; }
.footer-links a:hover { color: var(--primary); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 120px 25px 60px; background: var(--white); }
.legal-inner { max-width: 860px; margin: 0 auto; }
.legal-inner h1 { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); margin-bottom: 30px; border-bottom: 2px solid var(--primary); padding-bottom: 10px; }
.legal-content { font-size: 1rem; color: var(--text-gray); line-height: 1.8; }
.legal-content h2 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-dark); margin: 28px 0 12px; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 4px; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { list-style: none; padding: 0; margin: 10px 0 20px; }
.legal-content li { padding: 4px 0 4px 22px; position: relative; }
.legal-content li::before { content: '\2013'; color: var(--primary); position: absolute; left: 0; font-weight: 600; }

/* ===== DEFAULT PAGE ===== */
.default-page { padding: 120px 25px 60px; background: var(--white); }
.default-inner { max-width: 860px; margin: 0 auto; }
.default-inner h1 { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { justify-content: center; }
    .hero-content-col { width: 70%; padding: 100px 30px 40px; }
}

@media (max-width: 768px) {
    body { overflow-x: hidden; }
    .site-header { padding: 12px 16px; }
    .header-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .header-logo img { max-height: 45px; }
    .header-whatsapp a { font-size: 0.85rem; }
    .header-whatsapp .whatsapp-icon { width: 32px; height: 32px; }
    .hero-section { min-height: 100vh; }
    .hero-inner { min-height: 100vh; justify-content: center; }
    .hero-content-col { width: 100%; padding: 160px 16px 30px; }
    .hero-block { padding: 20px; margin-bottom: 24px; }
    .hero-title { font-size: 1.3rem; }
    .section-title { font-size: 1.3rem; }
    .location-section { padding: 40px 16px; }
    .location-map iframe { height: 250px; }
    .legal-page, .default-page { padding: 100px 16px 40px; }
}

@media (max-width: 480px) {
    .hero-content-col { padding: 130px 12px 24px; }
    .hero-block { padding: 16px; }
    .hero-title { font-size: 1.3rem; }
    .btn-primary { width: 100% !important; text-align: center; }
    .btn-reserva-qf.agenda-quadrafacil { max-width: 100% !important; padding: 10px 24px !important; font-size: 0.9rem !important; box-sizing: border-box !important; }
}
