/* =========================================================
   Sobcontrolo — main.css
   Table of contents:
   1. CSS variables
   2. Reset & base
   3. Typography
   4. Layout utilities (.container, .section-padding)
   5. Buttons & badges
   6. Navbar
   7. Mobile menu
   8. Footer
   9. Organic blob shapes
   10. Cards
   11. Ticker / marquee
   12. FAQ accordion
   13. Forms
   14. Homepage sections
   15. Blog & Artigo pages
   16. Sobre Nós page
   17. Serviços page
   18. Contactos page
   19. Recrutamento page
   ========================================================= */

/* 1. CSS variables ---------------------------------------- */
:root {
    --orange: #F15A22;
    --orange-dark: #D14812;
    --navy: #1A2B4A;
    --navy-light: #24365a;
    --white: #FFFFFF;
    --off-white: #F7F5F2;
    --text-body: #2E2E33;
    --text-muted: #6B7280;
    --border-light: #E5E1DA;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Poppins', var(--font-sans);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 3px rgba(26, 43, 74, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 43, 74, 0.12);
    --shadow-lg: 0 16px 40px rgba(26, 43, 74, 0.18);

    --header-height: 76px;
}

/* 2. Reset & base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
    padding-top: var(--header-height); /* offset for fixed navbar */
    -webkit-font-smoothing: antialiased;
}

/* 3. Typography --------------------------------------------
   Fluid sizes using clamp() so headings scale between mobile and desktop
   without separate breakpoints for every step. */
h1, .h1 { font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2.5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
h2, .h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); }
h3, .h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.75rem); font-weight: 700; line-height: 1.3; color: var(--navy); }
h4, .h4 { font-family: var(--font-display); font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem); font-weight: 700; color: var(--navy); }

p { font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem); color: var(--text-body); }
.text-muted { color: var(--text-muted); }

/* 4. Layout utilities ---------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.section-padding {
    padding-block: clamp(3rem, 2rem + 4vw, 6rem);
}

/* 5. Buttons & badges ----------------------------------------- */
.btn-orange, .btn-navy, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.pill-badge { border-radius: var(--radius-pill); }

/* 6. Navbar ---------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s ease;
}

/* JS adds this class once the page has scrolled past a threshold */
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.brand-logo { height: 42px; width: auto; }
.brand-name { font-weight: 800; font-size: 1.25rem; color: var(--navy); }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2rem; }

.nav-link {
    font-weight: 500;
    color: var(--text-body);
    padding-block: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.cta-nav { flex-shrink: 0; }

/* 7. Mobile menu -------------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    flex-shrink: 0;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 500px; }

.mobile-nav-list { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--off-white); color: var(--orange); }

@media (max-width: 900px) {
    .main-nav, .cta-nav { display: none; }
    .hamburger { display: flex; }
}

/* 8. Footer ---------------------------------------------------- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-block: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: minmax(0, 1fr); }
}

.footer-logo { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: rgba(255, 255, 255, 0.7); margin-bottom: 1.25rem; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}
.footer-icon { flex-shrink: 0; }

.footer-heading {
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}
.footer-social-heading { margin-top: 1.75rem; }

.footer-link-list li { margin-bottom: 0.65rem; }
.footer-link-list a { color: rgba(255, 255, 255, 0.75); transition: color 0.15s ease; }
.footer-link-list a:hover { color: var(--orange); }

.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.social-icon:hover { background: var(--orange); transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-block: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-legal-link:hover { color: var(--white); }

/* 9. Organic blob shapes (decorative backgrounds) --------------
   Usage: <div class="blob blob-orange blob-top-right"></div> placed
   absolutely inside a `position: relative` section wrapper. */
.blob {
    position: absolute;
    z-index: 0;
    filter: blur(2px);
    opacity: 0.15;
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    pointer-events: none;
}
.blob-orange { background: var(--orange); }
.blob-navy { background: var(--navy); }

.blob-sm { width: 220px; height: 220px; }
.blob-md { width: 380px; height: 380px; }
.blob-lg { width: 560px; height: 560px; }

.blob-top-right { top: -10%; right: -8%; }
.blob-bottom-left { bottom: -10%; left: -8%; }

/* 10. Cards ------------------------------------------------------ */
.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* 11. Ticker / marquee ------------------------------------------- */
.ticker {
    overflow: hidden;
    white-space: nowrap;
    background: var(--off-white);
    padding-block: 0.85rem;
}
.ticker-track {
    display: inline-flex;
    gap: 3rem;
    animation: ticker-scroll 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* track content is duplicated once in the HTML for a seamless loop */
}

/* 12. FAQ accordion ------------------------------------------------ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 14px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}
.faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(241, 90, 34, 0.12);
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); } /* plus becomes an X */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.35rem;
}

/* 13. Forms --------------------------------------------------------- */
input, textarea, select {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-body);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 90, 34, 0.15);
}
label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.form-group { margin-bottom: 1.25rem; }

/* =========================================================
   14. Homepage sections
   Layout classes for index.php's section grids. Kept separate
   from the generic component classes above (10-13) since these
   are specific to full-page section composition.
   ========================================================= */

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* --- Hero --------------------------------------------------- */
.hero {
    position: relative;
    padding-block: clamp(3rem, 2rem + 5vw, 6.5rem);
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}
.hero-bg-media {
    position: absolute;
    inset: 0;
}
.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26,43,74,0.97) 38%, rgba(26,43,74,0.75) 65%, rgba(26,43,74,0.55) 100%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 3rem;
}
.hero-copy .hero-badge {
    margin-bottom: 1.5rem;
    background: rgba(241, 90, 34, 0.15);
    border: 1px solid rgba(241, 90, 34, 0.4);
    color: #FFB59A;
}
.hero-copy h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-copy p.hero-tagline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--orange);
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;
}
.hero-copy p { color: #C7D0DE; margin-bottom: 2rem; max-width: 46ch; }
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy p { margin-inline: auto; }
}

/* --- Hero embedded quote form card --------------------------- */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    color: var(--text-body);
}
.hero-form-card h3 { margin-bottom: 0.25rem; }
.hero-form-card .hero-form-subtext { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.4rem; }
.hero-form-card .form-group { margin-bottom: 0.9rem; }
.hero-form-card button[type="submit"] {
    width: 100%;
    justify-content: center;
    box-shadow: var(--shadow-md);
    margin-top: 0.25rem;
}

/* --- Stats ---------------------------------------------------- */
.stats-section { background: var(--off-white); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}
.stat-card { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem); font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { color: var(--navy); font-weight: 600; margin-top: 0.5rem; }
@media (max-width: 700px) {
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Services grid --------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.service-card { display: flex; flex-direction: column; }
.service-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.25rem; flex-grow: 1; }
.service-link { color: var(--orange); font-weight: 600; }
.service-link:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- About (asymmetric) ------------------------------------------ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}
.about-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.about-copy p { margin-bottom: 1.5rem; }
.about-bullets { margin-bottom: 2rem; }
.about-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
}
.about-checkmark { color: var(--orange); font-weight: 800; flex-shrink: 0; }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Why choose us (dark) ----------------------------------------- */
.why-section { background: var(--navy); color: var(--white); }
.why-section .section-header h2 { color: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.08); }
.why-icon { color: var(--orange); margin-bottom: 1rem; }
.why-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.why-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .why-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Sectores (homepage): 4 small icon+name cards on a tinted section --- */
.sectors-section { background: #F5F5F5; }
.sector-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}
.sector-mini-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.25rem;
}
.sector-mini-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(241, 90, 34, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}
.sector-mini-card .name { font-family: var(--font-display); font-weight: 700; font-size: 1.03rem; color: var(--navy); }
@media (max-width: 900px) {
    .sector-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.haccp-callout {
    margin-top: 2.5rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 640px;
}
.haccp-callout svg { color: var(--orange); flex-shrink: 0; }
.haccp-callout span { font-size: 0.9rem; color: #3E4756; text-align: left; }
.haccp-callout-wrap { text-align: center; }

/* --- Blog cards --------------------------------------------------- */
.blog-section { background: var(--off-white); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}
.blog-card { background: var(--white); overflow: hidden; padding: 0; }
.blog-card-media { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-category {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.85rem;
}
.blog-date { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.4rem; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.blog-excerpt { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-read-more { color: var(--orange); font-weight: 600; }
.blog-read-more:hover { text-decoration: underline; }

/* Simplified variant used on the homepage teaser grid (date only, no category pill/meta row) */
.blog-card--home .blog-date { color: var(--orange); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.02em; margin-bottom: 0.6rem; display: block; }
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- CTA banner ----------------------------------------------------- */
.cta-banner {
    background: var(--orange);
    text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1.75rem; }
.cta-banner-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--orange); }

/* =========================================================
   16. Sobre Nós page
   Layout classes specific to sobre-nos.php. Reuses .about-grid,
   .about-media, .about-bullets, .stats-grid/.stat-card, .card,
   .why-grid-style dark section, and .cta-banner from sections 10/14
   where the design already matches, instead of duplicating them.
   ========================================================= */

/* --- Page hero (shorter than the homepage hero) --------------- */
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding-block: clamp(3rem, 2rem + 5vw, 5rem);
}
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero .hero-badge { margin-bottom: 1.25rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 56ch; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* --- Stat pills (used in the História section) ------------------ */
.stat-pill-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--off-white);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
}

/* --- Values grid (reuses .card, adds a top accent border) --------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.value-card { border-top: 4px solid var(--orange); }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.95rem; color: var(--text-muted); }
@media (max-width: 900px) {
    .values-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Team grid ------------------------------------------------------ */
.team-section { background: var(--off-white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}
.team-card { text-align: center; }
.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-md);
}
.team-card h3 { margin-bottom: 0.6rem; }
.role-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
}
@media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 500px) {
    .team-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Mission section (dark, two-column) ------------------------------ */
.mission-section { background: var(--navy); color: var(--white); }
.mission-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}
.mission-copy h2 { color: var(--white); margin-bottom: 1.25rem; }
.mission-copy p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1.75rem; }
.mission-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 500;
}
.mission-checklist li:last-child { border-bottom: none; }
.mission-checklist .about-checkmark { color: var(--orange); }
@media (max-width: 900px) {
    .mission-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Partners row ------------------------------------------------------ */
.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.partner-pill {
    background: var(--off-white);
    color: var(--navy);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
}

/* --- Partners row: plain-text variant (matches approved design) ------------ */
.partners-row--plain {
    gap: 2.5rem;
}
.partner-plain {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #B7BEC9;
    letter-spacing: 0.01em;
}

/* --- Team member short description line ----------------------------------- */
.team-card .team-line { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }

/* =========================================================
   17. Serviços page
   Covers both servicos.php (the overview/listing page) and
   servicos/[slug].php (individual service pages, rendered via
   includes/service-page-template.php). Reuses .services-grid,
   .service-card, .service-icon, .card, .stats-grid, .cta-banner,
   .faq-item and .pill-badge from earlier sections wherever the
   design already matches, instead of duplicating them.
   ========================================================= */

/* --- Trust badges row (service page hero) ------------------------ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}
.trust-badges .check { color: var(--orange); margin-right: 0.35rem; }

/* --- Processo section: horizontal 4-step flow (servicos.php overview) --- */
.process-horizontal {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
}
.process-horizontal::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 900px) {
    .process-horizontal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-horizontal::before { display: none; }
}
@media (max-width: 560px) {
    .process-horizontal { grid-template-columns: minmax(0, 1fr); }
}

/* --- Processo section: vertical list (individual service pages) --------- */
.process-vertical { max-width: 640px; }
.process-vertical .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    margin-bottom: 2rem;
}
.process-vertical .process-step:last-child { margin-bottom: 0; }
.process-vertical .process-number { margin: 0; flex-shrink: 0; }

/* --- Sectores section: 3 large tinted cards ------------------------------ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.sector-card {
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sector-card h3 { margin-bottom: 0.6rem; }
.sector-card--orange { background: rgba(241, 90, 34, 0.08); border: 1px solid rgba(241, 90, 34, 0.25); }
.sector-card--navy { background: rgba(26, 43, 74, 0.06); border: 1px solid rgba(26, 43, 74, 0.2); }
.sector-card--outline { background: var(--off-white); border: 2px solid var(--orange); }
@media (max-width: 900px) {
    .sectors-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Service page intro: two columns (body text | warning signs) -------- */
.service-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}
.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.warning-icon { color: var(--orange); flex-shrink: 0; }
@media (max-width: 900px) {
    .service-intro-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Service breadcrumb variant (3 levels instead of 2) ------------------ */
.breadcrumb .separator { color: var(--border-light); }

/* --- CTA banner navy variant (servicos.php uses navy instead of orange) --- */
.cta-banner--navy { background: var(--navy); }

/* --- "Para quem é este serviço?" sector pill tags (individual service pages) --- */
.sector-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }
.sector-tag {
    background: var(--off-white);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
}

/* --- Warning signs: dot-bullet cards variant (individual service pages) --- */
.warning-list--dots li {
    align-items: center;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
}
.warning-list--dots .warning-icon {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    color: transparent;
    flex-shrink: 0;
}

/* --- Why-us simple icon-row variant (individual service pages) --- */
.why-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 2rem; }
.why-list-item { display: flex; align-items: center; gap: 0.85rem; }
.why-list-item .check-circle {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(241, 90, 34, 0.12);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.why-list-item span.label { font-weight: 600; color: var(--navy); }
@media (max-width: 700px) {
    .why-list { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   18. Contactos page
   Reuses .card, .stat-pill, .pill-badge, .cta-banner--navy,
   .faq-item and the generic form styles from section 13.
   ========================================================= */

/* --- Contact cards row -------------------------------------------------- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.contact-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.contact-card p { margin-bottom: 0.75rem; }
.contact-card-link { color: var(--orange); font-weight: 600; }
.contact-card-link:hover { text-decoration: underline; }

.contact-hours-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (max-width: 900px) {
    .contact-cards-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Main contact section: form (wide) + info column (narrow) ----------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
/* Honeypot: kept in the DOM (some bots skip display:none) but visually and
   accessibly hidden, and excluded from tab order. */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-info-block { margin-bottom: 1.75rem; }
.contact-info-block h4 { margin-bottom: 0.4rem; }
.contact-info-block p, .contact-info-block a { color: var(--text-muted); }

.social-pill-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--off-white);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-pill);
    transition: background-color 0.15s ease, color 0.15s ease;
}
.social-pill:hover { background: var(--orange); color: var(--white); }

.urgency-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.urgency-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.urgency-card p { color: rgba(255, 255, 255, 0.75); margin-bottom: 1rem; font-size: 0.95rem; }
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- Map section ---------------------------------------------------------- */
.map-embed-wrap { width: 100%; height: 400px; line-height: 0; }
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}
.map-pin { font-size: 2.5rem; }

/* --- Coverage pills -------------------------------------------------------- */
.coverage-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.coverage-pill {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-pill);
}

/* --- Form field pairing (2-column rows on wider screens) -------------------- */
.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 1.25rem;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: minmax(0, 1fr); }
}

/* --- CTA banner coverage line ------------------------------------------------ */
.cta-banner-note { color: rgba(255, 255, 255, 0.75); margin-top: 1.25rem; }
.cta-banner-note a { color: var(--white); text-decoration: underline; }

/* --- Diagonal clip-path section divider utility ----------------------------
   Usage: add to a section that should have a subtle angled top/bottom edge. */
.clip-diagonal {
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
}

/* =========================================================
   Homepage navy stats variant (design shows the homepage stats
   bar on navy instead of the off-white used on other pages).
   ========================================================= */
.stats-section--navy {
    background: var(--navy);
}
.stats-section--navy .stat-number { color: var(--orange); }
.stats-section--navy .stat-label { color: #C7D0DE; }

/* =========================================================
   15. Blog & Artigo pages
   ========================================================= */

/* --- Blog hero + filter bar -------------------------------------------------- */
.blog-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.blog-categories { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.blog-cat-pill {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--border-light);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.blog-cat-pill:hover { border-color: var(--orange); color: var(--orange); }
.blog-cat-pill.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.blog-search { position: relative; flex-shrink: 0; }
.blog-search input {
    padding-left: 2.5rem;
    border-radius: var(--radius-pill);
    min-width: 220px;
}
.blog-search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* --- Featured article ------------------------------------------------------- */
.featured-article {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-bottom: 4rem;
}
.featured-article-media { min-height: 280px; }
.featured-article-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-article-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-article-body .blog-category { align-self: flex-start; }
.featured-article-body h2 { margin: 0.75rem 0 1rem; }
.featured-article-meta { display: flex; align-items: center; gap: 0.6rem; margin: 0 0 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.author-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .featured-article { grid-template-columns: minmax(0, 1fr); }
}

/* --- Popular topics ---------------------------------------------------------- */
.topics-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.topic-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-pill);
    transition: background-color 0.15s ease;
}
.topic-pill:hover { background: var(--orange); }

/* --- Newsletter ---------------------------------------------------------------- */
.newsletter-form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.85rem; }
.newsletter-form input { flex: 1; min-width: 220px; max-width: 320px; border-radius: var(--radius-pill); }
.newsletter-form button {
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--orange-dark); }

/* --- Pagination ------------------------------------------------------------------ */
.pagination-row { display: flex; justify-content: center; align-items: center; gap: 0.6rem; margin-top: 3.5rem; }
.pagination-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border-light);
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.pagination-link.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.pagination-link:hover:not(.active) { border-color: var(--orange); color: var(--orange); }

/* --- Article hero (artigo.php) ---------------------------------------------------- */
.article-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    color: var(--white);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,43,74,0.95) 10%, rgba(26,43,74,0.5) 55%, rgba(26,43,74,0.1) 100%);
}
.article-hero-breadcrumb {
    position: absolute;
    top: 1.5rem; left: 0; right: 0;
    z-index: 1;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}
.article-hero-breadcrumb a { color: rgba(255,255,255,0.8); }
.article-hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 1;
    padding-bottom: 2.5rem;
}
.article-hero-content h1 { color: var(--white); margin: 1rem 0 1.1rem; }
.article-hero-meta { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; font-size: 0.9rem; color: rgba(255,255,255,0.85); }

/* --- Article body + sidebar layout ------------------------------------------------ */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .article-layout { grid-template-columns: minmax(0, 1fr); }
}
.article-body { max-width: 720px; }
.article-body p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.5rem; color: #374151; }
.article-body h2 { margin: 2.25rem 0 1rem; font-size: 1.5rem; }
.article-body h3 { margin: 1.5rem 0 0.75rem; font-size: 1.15rem; color: var(--orange); }
.article-body ul { margin-bottom: 1.5rem; }
.article-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
}
.article-body ul li::before { content: "•"; color: var(--orange); font-weight: 800; flex-shrink: 0; }

.article-cta-inline {
    background: var(--orange);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 1rem 0 2rem;
    color: var(--white);
}
.article-cta-inline h4 { color: var(--white); margin-bottom: 0.25rem; }
.article-cta-inline p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

.article-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.article-tag {
    background: var(--off-white);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
}

.article-share { display: flex; align-items: center; gap: 0.85rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }

/* --- Sidebar ------------------------------------------------------------------------ */
.sidebar-block { border-radius: var(--radius-lg); padding: 1.75rem; }
.sidebar-block--dark { background: var(--navy); color: var(--white); }
.sidebar-block--dark h3 { color: var(--white); }
.sidebar-block--light { background: var(--off-white); border: 1px solid var(--border-light); }
.sidebar-phone { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--white); margin-bottom: 1rem; }
.sidebar-related-item { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.9rem; }
.sidebar-related-item img { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.sidebar-related-item .title { font-size: 0.9rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.sidebar-related-item .date { font-size: 0.8rem; color: var(--text-muted); }
.sidebar-cat-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sidebar-cat-tags a {
    border: 1.5px solid var(--orange);
    color: var(--orange);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
}
.sidebar-trust-list { display: flex; flex-direction: column; gap: 0.85rem; }
.sidebar-trust-list div { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.sidebar-trust-list svg { color: var(--orange); flex-shrink: 0; }

/* --- Author bio box ------------------------------------------------------------------- */
.author-box { background: var(--off-white); border-radius: var(--radius-lg); padding: 2.5rem; display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.author-avatar-lg {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* =========================================================
   19. Recrutamento page
   ========================================================= */
.why-join-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.why-join-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 1.75rem; }
.why-join-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: rgba(241, 90, 34, 0.12);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.why-join-card h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.why-join-card p { font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 900px) {
    .why-join-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.job-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; }
.job-card:last-child { margin-bottom: 0; }
.job-tags { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.85rem; }
.job-tag { background: rgba(241, 90, 34, 0.1); color: var(--orange); font-weight: 700; font-size: 0.8rem; padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); }
.job-tag--muted { background: var(--off-white); color: var(--text-muted); font-weight: 600; }
.job-card h3 { margin-bottom: 0.75rem; }
.job-reqs { margin-bottom: 1.25rem; }
.job-reqs li { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.95rem; }
.job-reqs .check { color: var(--orange); flex-shrink: 0; }

.culture-gallery { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
.culture-gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-md); }
.culture-gallery img:nth-child(2) { margin-top: 1.25rem; }
.culture-gallery img:nth-child(4) { margin-top: 1.25rem; }
.culture-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; font-weight: 600; }
.culture-list .dash { color: var(--orange); font-weight: 800; }

.cv-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.25rem;
    text-align: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.cv-upload:hover { border-color: var(--orange); color: var(--orange); }

.form-success {
    text-align: center;
    padding: 2rem 0.5rem;
}
.form-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #EAF6EE;
    color: #2E9E5B;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
