/* ==========================================================================
   De França — Locação de Equipamentos
   Design System & Complete Styles
   Mobile-first, conversion-focused
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
    --purple: #4D328F;
    --purple-dark: #3A2570;
    --purple-light: #6B4FBB;
    --purple-muted: #E8E0F5;
    --yellow: #FFCD08;
    --yellow-hover: #E6B800;
    --yellow-light: #FFF4C2;
    --white: #FEFDFD;
    --off-white: #F7F6FA;
    --gray-50: #F9F9FB;
    --gray-100: #F0EFF4;
    --gray-200: #E2E0EA;
    --gray-300: #C8C5D4;
    --gray-500: #7A7590;
    --gray-700: #4A465C;
    --gray-900: #1E1A2D;
    --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(30,26,45,0.06);
    --shadow-md: 0 4px 12px rgba(30,26,45,0.08);
    --shadow-lg: 0 8px 30px rgba(30,26,45,0.12);
    --shadow-xl: 0 16px 48px rgba(30,26,45,0.16);
    --transition: 0.2s ease;
    --container: 1200px;
    --header-h: 70px;
    --topbar-h: 36px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-light); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 56px 0; }
.section-lg { padding: 72px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}
h1 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
.section-header {
    margin-bottom: 40px;
}
.section-header h2 {
    margin-bottom: 12px;
}
.section-header p {
    color: var(--gray-500);
    max-width: 600px;
    font-size: 1.05rem;
}
.section-header.text-center p { margin: 0 auto; }
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 8px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    min-height: 48px;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--yellow);
    color: var(--gray-900);
    box-shadow: 0 2px 8px rgba(255,205,8,0.3);
}
.btn-primary:hover {
    background: var(--yellow-hover);
    color: var(--gray-900);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,205,8,0.4);
}
.btn-secondary {
    background: var(--purple);
    color: #fff;
}
.btn-secondary:hover {
    background: var(--purple-dark);
    color: #fff;
    transform: translateY(-1px);
}
.btn-outline {
    border: 2px solid var(--purple);
    color: var(--purple);
    background: transparent;
}
.btn-outline:hover {
    background: var(--purple);
    color: #fff;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1EB954;
    color: #fff;
    transform: translateY(-1px);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; min-height: 40px; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--purple-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left {
    display: flex;
    gap: 20px;
}
.topbar-phone {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.topbar-phone:hover { color: var(--yellow); }
.topbar-hours { font-weight: 500; }
@media (max-width: 768px) {
    .topbar { height: auto; padding: 6px 0; }
    .topbar-inner { flex-direction: column; gap: 2px; }
    .topbar-left { gap: 12px; font-size: 0.75rem; }
    .topbar-right { display: none; }
}

/* ---------- Header ---------- */
.site-header {
    background: var(--white);
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-900);
    flex-shrink: 0;
}
.logo:hover { color: var(--gray-900); }
.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--purple);
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.2;
}
.logo-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 500;
}
.main-nav ul {
    display: flex;
    gap: 6px;
}
.main-nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.main-nav a:hover {
    color: var(--purple);
    background: var(--purple-muted);
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--gray-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    flex-shrink: 0;
}
.header-cta:hover {
    background: var(--yellow-hover);
    color: var(--gray-900);
    transform: translateY(-1px);
}

/* Menu toggle */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all var(--transition);
}

@media (max-width: 960px) {
    .main-nav { display: none; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }
}

/* ---------- Mobile Nav ---------- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30,26,45,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-close {
    font-size: 1.8rem;
    color: var(--gray-500);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav ul { padding: 12px 0; }
.mobile-nav li a {
    display: block;
    padding: 14px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-50);
}
.mobile-nav li a:hover { background: var(--off-white); color: var(--purple); }
.mobile-nav-cta {
    padding: 20px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--gray-100);
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,205,8,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero h1 {
    color: #fff;
    margin-bottom: 16px;
    font-size: clamp(1.7rem, 4vw, 2.75rem);
}
.hero h1 span { color: var(--yellow); }
.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    text-align: center;
    padding: 24px;
}
.hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
@media (max-width: 768px) {
    .hero { padding: 40px 0 48px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 28px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    text-align: center;
}
.trust-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}
.trust-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

/* ---------- Category Grid ---------- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.cat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition);
}
.cat-card:hover {
    border-color: var(--purple-muted);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.cat-icon {
    font-size: 2rem;
    line-height: 1;
}
.cat-card h3 a {
    color: var(--gray-900);
    font-size: 1.15rem;
}
.cat-card h3 a:hover { color: var(--purple); }
.cat-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    flex-grow: 1;
}
.cat-card .btn { align-self: flex-start; margin-top: 4px; }

/* ---------- Steps / How it works ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    counter-reset: step;
}
.step-card {
    text-align: center;
    counter-increment: step;
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    color: var(--gray-900);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-card p { color: var(--gray-500); font-size: 0.92rem; }

/* ---------- Equipment Cards ---------- */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.equip-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.equip-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.equip-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gray-100);
}
.equip-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 2.5rem;
}
.equip-card-body {
    padding: 20px;
}
.equip-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.equip-card-body p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.equip-card-body .btn { width: 100%; }

/* ---------- Products Section ---------- */
.products-highlight {
    background: var(--off-white);
}
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.prod-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}
.prod-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.prod-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.prod-card h3 a { color: var(--gray-900); }
.prod-card h3 a:hover { color: var(--purple); }
.prod-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 12px; }
.prod-benefits { margin-bottom: 16px; }
.prod-benefits li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 3px 0 3px 20px;
    position: relative;
}
.prod-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 700;
}

/* ---------- Areas ---------- */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.area-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}
.area-card:hover {
    border-color: var(--purple-muted);
    box-shadow: var(--shadow-md);
}
.area-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.area-card h3 a { color: var(--gray-900); }
.area-card h3 a:hover { color: var(--purple); }
.area-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 16px; }
.area-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--purple);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

/* ---------- Differentials ---------- */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.diff-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
}
.diff-icon {
    width: 56px;
    height: 56px;
    background: var(--purple-muted);
    color: var(--purple);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
}
.diff-card h3 { font-size: 1rem; margin-bottom: 8px; }
.diff-card p { color: var(--gray-500); font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--off-white); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.7;
}
.testimonial-author {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
}
.testimonial-role {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ---------- CTA Band ---------- */
.cta-band {
    background: var(--yellow);
    padding: 48px 0;
    text-align: center;
}
.cta-band h2 { color: var(--gray-900); margin-bottom: 12px; }
.cta-band p {
    color: var(--gray-700);
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.cta-band .btn-secondary { font-size: 1.05rem; padding: 16px 36px; }

/* ---------- Page Headers ---------- */
.page-header {
    background: var(--purple);
    padding: 40px 0 44px;
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 650px; }
.page-header .breadcrumbs { margin-bottom: 12px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.82rem;
}
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs li::after { content: '›'; color: rgba(255,255,255,0.4); }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs span { color: rgba(255,255,255,0.5); }
.breadcrumbs li:last-child span { color: rgba(255,255,255,0.9); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; }
.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}
.faq-question {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    width: 100%;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--purple);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-question.active::after {
    content: '−';
}
.faq-answer {
    display: none;
    padding-top: 12px;
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-answer.active { display: block; }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 12px; color: var(--purple); }
.contact-info-card p {
    font-size: 0.92rem;
    color: var(--gray-700);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.contact-info-card a { color: var(--purple); font-weight: 600; }
.contact-form label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--gray-700);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition);
    background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(77,50,143,0.1);
}
.contact-form .form-group { margin-bottom: 16px; }
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 24px;
}
.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}
.about-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 0.85rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.value-item {
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}
.value-item h4 { color: var(--purple); font-size: 0.95rem; margin-bottom: 6px; }
.value-item p { font-size: 0.85rem; color: var(--gray-500); }
@media (max-width: 768px) {
    .about-hero { grid-template-columns: 1fr; }
}

/* ---------- Midpage CTA ---------- */
.mid-cta {
    background: var(--purple-muted);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 40px 0;
}
.mid-cta h3 { color: var(--purple); margin-bottom: 8px; }
.mid-cta p { color: var(--gray-500); margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo .logo-icon { background: var(--purple-light); }
.footer-logo .logo-text strong { color: #fff; }
.footer-logo .logo-text small { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 500;
}
.footer-social:hover { color: var(--yellow); }
.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-address,
.footer-phone,
.footer-hours {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 10px;
}
.footer-phone { color: rgba(255,255,255,0.7); }
.footer-phone:hover { color: var(--yellow); }
.footer-address svg, .footer-phone svg, .footer-hours svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
}
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 99;
    transition: all var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ---------- Flash messages ---------- */
.flash {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.flash-success { background: #d4edda; color: #155724; }
.flash-error { background: #f8d7da; color: #721c24; }
.flash-info { background: var(--purple-muted); color: var(--purple); }

/* ---------- 404 ---------- */
.page-404 {
    text-align: center;
    padding: 80px 20px;
}
.page-404 h1 { font-size: 5rem; color: var(--purple); }
.page-404 p { font-size: 1.1rem; color: var(--gray-500); margin: 16px 0 32px; }

/* ---------- Content body ---------- */
.content-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
}
.content-body p { margin-bottom: 16px; }
.content-body h2 { margin: 32px 0 12px; font-size: 1.5rem; }
.content-body h3 { margin: 24px 0 10px; font-size: 1.2rem; }
.content-body ul, .content-body ol { padding-left: 20px; margin-bottom: 16px; }
.content-body li { margin-bottom: 6px; list-style: disc; }

/* ---------- Placeholder images ---------- */
.placeholder-img {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-family: var(--font-display);
    font-weight: 700;
}

/* ---------- Print ---------- */
@media print {
    .topbar, .site-header, .whatsapp-float, .site-footer, .cta-band { display: none !important; }
    body { font-size: 12pt; }
}
