*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Pronto Lar Goiânia — sistema de cores alinhado à logomarca. */
:root {
    --brand-blue: #0B46B8;
    --brand-blue-deep: #08347F;
    --brand-blue-dark: #062B6F;
    --brand-blue-soft: #2A70D1;
    --brand-orange: #FF6726;
    --brand-orange-soft: #FFE0D0;
    --color-primary: var(--brand-blue);
    --color-secondary: var(--brand-blue-deep);
    --color-accent: var(--brand-orange);
    --color-bg: #F7F9FC;
    --color-surface: #FFFFFF;
    --color-text: #172B4D;
    --color-text-secondary: #52627A;
    --color-border: #D9E2F2;
    --terrain-ice: #F2F6FC;
    --terrain-warm: #FFF5EF;
    --terrain-mist: #EEF3FB;
    --terrain-dark: var(--brand-blue-deep);
    --bg-surface: #F9FBFF;
    --text-main: #10264B;
}

html {
    scroll-behavior: smooth;
}

.starter2-body {
    font-family: var(--font-body, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: var(--base-size, 16px);
    line-height: var(--line-height, 1.65);
    color: var(--color-text, #1f2937);
    background: var(--color-bg, #f3f4f6);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text, #1f2937);
    text-transform: uppercase;
}

a {
    color: var(--color-primary, #08347F);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

/* Barra superior compartilhada entre todas as páginas. */
.topbar {
    background: #0B46B8;
    color: rgba(255, 255, 255, .85);
    font-size: .78rem;
    letter-spacing: .2px;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 24px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color .15s;
}

.topbar-item svg {
    opacity: .7;
    flex-shrink: 0;
}

a.topbar-item:hover {
    color: #fff;
}

.topbar-sep {
    color: rgba(255, 255, 255, .3);
    margin: 0 8px;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/* Destaques semânticos: laranja alinhado à identidade visual azul/teal do site. */
mark {
    background-color: #FF6726 !important;
    color: #FFFFFF !important;
    padding: 0 0.12em;
    border-radius: 0.18em;
    border: 0;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.s2-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.s2-header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.s2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px; padding-top: 16px; padding-bottom: 16px; height: auto;
    gap: 16px;
}

.s2-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.s2-logo-img {
    max-height: 75px;
    width: auto;
}

.s2-nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
}

.s2-nav-link {
    display: block;
    padding: 6px 14px;
    color: var(--color-text, #1f2937);
    font-family: var(--font-heading, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 6px;
    position: relative;
    transition: color 0.15s;
    text-transform: uppercase;
}

.s2-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary, #08347F), var(--color-secondary, #0B46B8));
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.s2-nav-link:hover {
    color: var(--color-primary, #08347F);
}

.s2-nav-link:hover::after {
    transform: scaleX(1);
}

.s2-nav-link.active {
    color: var(--color-primary, #08347F);
}


/* Header CTA desktop */
.s2-header-cta {
    min-height: 48px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
}

.s2-header-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: #ffffff !important;
}

/* Remove underline from dropdown nav link (chevron uses ::after) */
.s2-has-dropdown > .s2-nav-link::after {
    position: static;
    display: inline-block;
    width: 0;
    height: 0;
    background: none;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 3.5px solid currentColor;
    margin-left: 4px;
    opacity: 0.45;
    transition: transform 0.2s;
    transform: none;
}

.s2-has-dropdown:hover > .s2-nav-link::after {
    transform: rotate(180deg);
    opacity: 0.8;
}

.s2-has-dropdown {
    position: relative;
}

.s2-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
    border: 1px solid var(--color-border, #e5e7eb);
}

.s2-has-dropdown:hover .s2-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.s2-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text, #1f2937);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-heading, 'Inter', sans-serif);
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    text-decoration: none;
}

.s2-dropdown-menu a:hover {
    color: var(--color-primary, #08347F);
    background: var(--color-surface, #f8fafc);
    padding-left: 24px;
}

.s2-mobile-dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.s2-mobile-dropdown-toggle .arrow {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 0.8rem;
    opacity: 0.6;
}

.s2-mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.s2-mobile-dropdown-menu.open {
    max-height: 600px;
}

.s2-mobile-dropdown-toggle.open .arrow {
    transform: rotate(180deg);
}

.s2-mobile-sublink {
    display: block;
    padding: 12px 0 12px 20px;
    color: var(--color-text-secondary, #4b5563);
    font-size: 0.88rem;
    font-weight: 400;
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    text-decoration: none;
    transition: color 0.15s;
}

.s2-mobile-sublink:hover,
.s2-mobile-sublink.active {
    color: var(--color-primary, #08347F);
}

.s2-mobile-dropdown-toggle.open .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.s2-mobile-dropdown-menu {
    list-style: none;
    padding-left: 15px;
    display: none;
    margin-top: 5px;
}

.s2-mobile-dropdown-menu.open {
    display: block;
}

.s2-mobile-sublink {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary, #64748b);
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    text-decoration: none;
}

.s2-mobile-sublink:last-child {
    border-bottom: none;
}

.s2-header-cta {
    min-height: 48px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.s2-header-cta:hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width:769px) {
    .s2-mobile-only {
        display: none !important;
    }
}

.s2-hero {
    min-height: 380px;
    contain: layout paint;
    background: linear-gradient(135deg, var(--color-primary, #08347F) 0%, var(--color-secondary, #0B46B8) 100%);
    color: #ffffff;
    padding: 80px 24px 72px;
    text-align: center;
}

.s2-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.s2-hero .hero-block {
    max-width: 700px;
    margin: 0 auto;
}

.s2-hero .hero-content {
    text-align: center;
}

.s2-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
    line-height: 1.15;
}

.s2-hero .hero-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.s2-hero .hero-actions {
    margin-bottom: 48px;
}

.s2-hero .hero-actions .btn,
.s2-hero .hero-actions .btn-primary {
    background: #ffffff !important;
    color: #08347F !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
    border: none;
}

.s2-hero .hero-actions .btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35) !important;
}

.s2-hero .hero-actions .btn-secondary-outline {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
}

.s2-hero .hero-actions .btn-secondary-outline:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1) !important;
}

.s2-hero .hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.s2-hero .trust-badges,
.page-hero .trust-badges,
.hero-section .trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.s2-hero .trust-badge,
.page-hero .trust-badge,
.hero-section .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 500;
}

.s2-hero .trust-badge-icon svg,
.page-hero .trust-badge-icon svg,
.hero-section .trust-badge-icon svg {
    stroke: rgba(255, 255, 255, 0.7);
    width: 22px;
    height: 22px;
}

.s2-hero .trust-badge-label,
.page-hero .trust-badge-label,
.hero-section .trust-badge-label {
    text-align: left;
    line-height: 1.3;
    text-transform: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0;
}

.s2-section.page-hero {
    background: linear-gradient(135deg, var(--color-primary, #08347F) 0%, var(--color-secondary, #0B46B8) 100%) !important;
    color: #fff;
    padding: 60px 24px 48px;
}

.page-hero-block {
    text-align: center;
}

.page-hero-block .container {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-block .breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.page-hero-block .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-hero-block .breadcrumb a:hover {
    color: #fff;
}

.page-hero-block .breadcrumb .sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-block h1 {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.3;
    padding-bottom: 20px;
}

.s2-section {
    padding: 80px 0;
}

.s2-section:nth-child(odd) {
    background: var(--color-surface, #ffffff);
}

.s2-section:nth-child(even) {
    background: var(--color-bg, #f3f4f6);
}

.s2-section.section-terrain-ice {
    background: var(--terrain-ice, #F2F6FC) !important;
}

.s2-section.section-terrain-warm {
    background: var(--terrain-warm, #FFF5EF) !important;
}

.s2-section.section-terrain-dark {
    background: var(--terrain-dark, #062B6F) !important;
    color: #ffffff;
}

.s2-section.section-terrain-dark .s2-section-title,
.s2-section.section-terrain-dark .heading {
    color: #ffffff;
}

.s2-section.section-terrain-dark .s2-title-accent {
    background: var(--color-accent, #FF6726);
}

.s2-section.section-terrain-dark p,
.s2-section.section-terrain-dark li {
    color: rgba(255, 255, 255, 0.78) !important;
}

.s2-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.s2-split-reverse {
    direction: rtl;
}

.s2-split-reverse>* {
    direction: ltr;
}

.s2-split-col .heading {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-text, #111827);
}

.s2-split-col .text-content p {
    color: var(--color-text-secondary, #4b5563);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.s2-split-col .text-content ul,
.s2-split-col .text-content ol {
    list-style: none;
    padding: 0;
}

.s2-split-col .text-content li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--color-text-secondary, #4b5563);
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    line-height: 1.65;
}

.s2-split-col .text-content li:last-child {
    border-bottom: none;
}

.s2-split-col .text-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    background: var(--color-primary, #08347F);
    border-radius: 50%;
}

.s2-split-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.s2-why-choose {
    background: var(--terrain-dark, #062B6F) !important;
    color: #fff;
    padding: 80px 0;
}

.s2-why-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.3;
}

.s2-why-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s2-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.65;
}

.s2-check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

/* Fix: .s2-block-why_choose quando usado em seção de fundo claro
   (ex.: #section-intro em limpeza-caixa-dagua-bh) o texto ficava branco
   sobre branco, ilegível. Escopo dark só aplica em section-terrain-dark. */
.s2-section:not(.section-terrain-dark):not(.s2-hero) .s2-why-item {
    color: #374151;
}
.s2-section:not(.section-terrain-dark):not(.s2-hero) .s2-why-item strong {
    color: #111827;
}
.s2-section:not(.section-terrain-dark):not(.s2-hero) .s2-check-icon {
    color: #0B46B8;
}

.s2-why-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.s2-why-choose .s2-block-why_choose:empty {
    display: none;
}

.s2-why-choose .s2-split-col strong {
    color: #fff;
}

.s2-why-choose li::before,
.section-terrain-dark li::before {
    background: rgba(255, 255, 255, 0.9);
}

.s2-why-choose .why-choose-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s2-why-choose .why-choose-item {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.65;
}

.s2-why-choose .why-choose-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--color-primary, #08347F);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.kicker {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary, #08347F);
    margin-bottom: 8px;
}

.s2-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.s2-card {
    background: var(--color-surface, #ffffff);
    padding: 36px 28px 32px;
    border-radius: 16px;
    border: 1px solid var(--color-border, #e5e7eb);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    text-align: center;
}

.s2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.s2-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary, #08347F);
    color: #ffffff;
}

.s2-card-icon-svg {
    stroke: #ffffff;
}

.s2-card .heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text, #111827);
    text-align: center;
}
.s2-card .heading::after {
    display: none !important;
}

.s2-card .text-content p {
    color: var(--color-text-secondary, #4b5563);
    font-size: 0.9rem;
    line-height: 1.65;
}

.s2-card-media {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.s2-card-media:hover {
    transform: none;
    box-shadow: none;
}

.s2-card-media img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
}

.s2-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.s2-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.s2-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.s2-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Process cards need the full section width to avoid narrow four-column cards. */
#section-como-funciona .s2-content {
    max-width: 1140px;
}

.s2-block+.s2-block {
    margin-top: 16px;
}

.s2-block-heading+.s2-block-text {
    margin-top: 8px;
}

.s2-block .heading {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.s2-block h2.heading {
    font-weight: 800;
    color: #062B6F;
}

.s2-why-choose .s2-block .heading,
.section-terrain-dark .s2-block .heading {
    color: #fff;
}

.s2-block h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary, #08347F);
    margin-bottom: 16px;
}

.s2-block .text-content p,
.s2-block-paragraph p,
.s2-block-richtext p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary, #4b5563);
    margin-bottom: 14px;
}

.s2-block-richtext ul,
.s2-block-richtext ol,
.s2-block-list ul,
.s2-block-list ol,
.s2-block ul,
.s2-block ol,
.s2-content ul,
.s2-content ol {
    list-style: none;
    margin: 12px 0 20px 0;
    padding: 0;
    color: var(--color-text-secondary, #6b7280);
}

.s2-block-richtext li,
.s2-block-list li,
.s2-block li,
.s2-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.s2-block-richtext li::before,
.s2-block-list li::before,
.s2-block li::before,
.s2-content li::before {
    content: '';
    flex-shrink: 0;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

.s2-block-image img {
    border-radius: 16px;
}

.s2-btn,
.btn,
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
    border: none;
    cursor: pointer;
}

.s2-btn-primary,
.btn-primary {
    background: var(--color-primary, #08347F);
    color: #ffffff;
}

.s2-btn-primary:hover,
.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.s2-cta-fullwidth {
    background: linear-gradient(135deg, var(--color-primary, #08347F), var(--color-secondary, #0B46B8));
    color: #ffffff;
    padding: 72px 24px;
    text-align: center;
}

.s2-cta-fullwidth .cta-block {
    max-width: 700px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.s2-cta-fullwidth h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.s2-cta-fullwidth p,
.s2-cta-fullwidth .lead,
.s2-cta-fullwidth .s2-block .text-content p,
.s2-cta-fullwidth .s2-block-paragraph p,
.s2-cta-fullwidth .s2-block-richtext p {
    color: #ffffff !important;
    font-size: 1rem;
    margin-bottom: 28px;
}

.s2-cta-fullwidth .btn,
.s2-cta-fullwidth .btn-primary {
    background: var(--color-surface, #ffffff) !important;
    color: var(--color-primary, #08347F) !important;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.s2-cta-fullwidth .btn:hover {
    background: color-mix(in srgb, var(--color-surface, #ffffff) 92%, transparent) !important;
    transform: translateY(-2px);
}

.s2-section .cta-block {
    text-align: center;
    padding: 56px 36px;
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-primary, #08347F), var(--color-secondary, #0B46B8));
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.s2-section .cta-block h2 {
    color: #ffffff;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.s2-section .cta-block p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.s2-section .cta-block .btn {
    background: var(--color-surface, #ffffff) !important;
    color: var(--color-primary) !important;
    font-weight: 700;
}

.phone-cta-strip {
    background: linear-gradient(135deg, #0B46B8, #2A70D1);
    text-align: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.phone-cta-strip a {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--color-surface, #ffffff);
    color: var(--color-primary, #08347F) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: background-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
}

.phone-cta-strip a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mobile-call-bar {
    display: none;
}

@media (max-width:768px) {
    .mobile-call-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: linear-gradient(135deg, var(--color-primary, #08347F), var(--color-secondary, #0B46B8));
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-call-bar.visible {
        transform: translateY(0);
    }

    .mobile-call-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #ffffff;
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .mobile-call-bar a .mcb-text {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }

    .mobile-call-bar a .mcb-label {
        font-size: 0.85rem;
        font-weight: 700;
    }

    .mobile-call-bar a .mcb-number {
        font-size: 0.8rem;
        font-weight: 400;
        opacity: 0.85;
    }

    body {
        padding-bottom: 56px;
    }

    .s2-back-top {
        display: none !important;
    }

    .s2-wa-float,
    .s2-wa-float.s2-phone-float {
        display: none;
    }

    .mobile-call-bar-split {
        display: flex;
        gap: 0;
        padding: 0;
    }

    .mobile-call-bar-split.visible {
        display: flex;
    }

    .mobile-call-bar-split a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 8px;
        color: #fff;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .mobile-call-bar-phone {
        background: var(--color-primary, #08347F);
    }

    .mobile-call-bar-wa {
        background: #25D366;
        color: #ffffff !important;
    }

    /* Hero: fit-to-content on mobile so the background image does not stretch awkwardly */
    body.has-hero .s2-hero {
        min-height: auto !important;
        padding: 56px 20px 56px !important;
    }

    .s2-hero > div[style*="position:absolute"] img,
    .s2-hero > div[style*="position: absolute"] img,
    .page-hero > div[style*="position:absolute"] img,
    .page-hero > div[style*="position: absolute"] img {
        object-position: center 35% !important;
    }
}

/* --- Mobile Call Bar WhatsApp: override premium treatment to use brand green --- */
@media (max-width:768px) {
    .mobile-call-bar.mobile-call-bar-split {
        background: transparent !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
    }
    .mobile-call-bar-wa,
    .mobile-call-bar.mobile-call-bar-split .mobile-call-bar-wa {
        background: #25D366 !important;
    }
}

.s2-footer {
    background: var(--terrain-dark, #062B6F);
    color: color-mix(in srgb, var(--color-text-secondary, #9ca3af) 80%, #ffffff);
    padding: 80px 0 0;
    font-size: 0.88rem;
}

.s2-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr 0.6fr;
    gap: 36px;
    margin-bottom: 40px;
}

.s2-footer-heading {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.s2-footer-links {
    list-style: none;
    padding: 0;
}

.s2-footer-links li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.s2-footer-links a {
    color: color-mix(in srgb, var(--color-text-secondary, #9ca3af) 80%, #ffffff);
    transition: color 0.2s;
    font-size: 0.85rem;
}

.s2-footer-links a:hover {
    color: #ffffff;
}

.s2-footer-logo {
    max-height: 38px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.s2-footer-bottom {
    margin-top: 60px;
    background-color: #ffffff;
    padding: 28px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-secondary, #6b7280);
    width: 100%;
}

.s2-footer-bottom-inner {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.s2-back-top {
    position: fixed;
    bottom: 200px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--color-surface, #ffffff);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.s2-back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.s2-back-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary, #08347F);
    fill: none;
    stroke-width: 2.5;
}

.s2-wa-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.s2-wa-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.s2-wa-float:hover {
    transform: scale(1.08);
}

.s2-wa-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.s2-wa-float.s2-phone-float {
    background: var(--color-primary, #08347F);
    bottom: 96px;
}

.s2-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.s2-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.s2-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-text, #1f2937);
    border-radius: 2px;
    transition: background-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
}

.s2-mobile-nav {
    display: none;
    background: var(--color-surface, #ffffff);
    padding: 16px 24px;
    border-top: 1px solid var(--color-border, #e5e7eb);
}

.s2-mobile-nav.active {
    display: block;
}

.s2-mobile-list {
    list-style: none;
}

.s2-mobile-link {
    display: block;
    padding: 14px 0;
    color: var(--color-text, #1f2937);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border, #e5e7eb);
}

.s2-mobile-contact {
    margin-top: 20px;
}

.s2-mobile-contact .btn-primary {
    background: var(--color-accent, #FF6726) !important;
}

@media (max-width:768px) {

    .s2-nav {
        display: none;
    }

    .s2-header-cta {
    min-height: 48px;
    box-sizing: border-box;
        display: none;
    }

    .s2-header-inner {
        height: 60px;
    }

    .s2-menu-btn {
        display: block;
    }

    .s2-hero {
        min-height: 380px;
        contain: layout paint;
        padding: 56px 20px 48px;
    }

    .s2-hero h1 {
        font-size: 1.8rem;
    }

    .s2-hero .trust-badges,
    .page-hero .trust-badges,
    .hero-section .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .s2-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .s2-split-photo img {
        height: 280px;
    }

    .s2-card-grid,
    .s2-cols-2,
    .s2-cols-3,
    .s2-cols-4 {
        grid-template-columns: 1fr;
    }

    .s2-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .s2-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .s2-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .s2-section {
        padding: 56px 0;
    }

    .s2-cta-fullwidth {
        padding: 48px 20px;
    }
}

.s2-block h2.heading {
    font-weight: 800;
    color: #062B6F;
    letter-spacing: -0.7px;
}

.s2-footer-bottom {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s2-footer-bottom-logo {
    display: block;
    margin: 0 auto 16px;
    text-decoration: none;
}

.s2-footer-bottom-logo img {
    max-height: 48px;
    width: auto;
}

.s2-footer-bottom-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width:560px) {
    .s2-hero {
        min-height: 380px;
        contain: layout paint;
        padding: 40px 16px;
    }

    .s2-hero h1 {
        font-size: 1.5rem;
    }

    .s2-footer-grid {
        grid-template-columns: 1fr;
    }

    .s2-container {
        padding: 0 16px;
    }
}

/* mobile-call-bar styles unified above */

.s2-section img:not(.logo-img):not([width="1"]) {
    transition: transform .2s ease, box-shadow .2s ease;
}

.s2-section img:not(.logo-img):not([width="1"]):hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.icon-box__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text, #1f2937);
    margin-bottom: 8px;
    line-height: 1.3;
}

.icon-box__desc {
    font-size: 0.88rem;
    color: var(--color-text-secondary, #6b7280);
    line-height: 1.6;
    margin: 0;
}

/* Otimizações PageSpeed */
[data-reveal="true"],
.s2-reveal,
.reveal {
    will-change: transform, opacity;
}

/* Evitar CLS em imagens-chave com aspect-ratio (Aproximado para a maioria das fotos) */
.s2-why-photo {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.s2-hero-img {
    aspect-ratio: 1 / 1;
}


/* Otimização V2: Estancar CLS na Hero */
body.has-hero .s2-hero {
    min-height: 80vh;
    contain: layout paint;
}


/* --- Início: Correções de Acessibilidade (Contraste) --- */
.s2-footer-links a,
.s2-footer-links li {
    color: #ffffff !important;
    opacity: 0.95 !important;
}

.s2-footer-heading {
    color: #ffffff !important;
}

/* A regra global de parágrafo (!important) foi deletada pois emuladores de Dark Mode (Chrome) escureciam o fundo e apagavam os textos porque nao conseguiam sobrescrever a cor. */
/* --- Fim: Correções de Acessibilidade (Contraste) --- */

/* ============================================
   BLOG ARTICLE STYLES â€” Redesign V2
   ============================================ */

/* Article wrapper */
.blog-content-section {
    background: #f8fafb;
    padding: 48px 24px 0;
}

/* Article card container */
.blog-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 48px 48px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

/* First paragraph â€” lead text */
.blog-content > p:first-of-type {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #1f2937;
    margin-bottom: 28px;
}

/* Headings */
.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #062B6F;
    margin: 56px 0 18px;
    line-height: 1.3;
    letter-spacing: -0.4px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(11, 70, 184, 0.12);
    text-align: center;
}

/* Blog FAQ semantics: keep answers visible while adding accessible disclosure controls. */
.blog-faq-item {
    margin: 0 0 18px;
    border-bottom: 1px solid rgba(11, 70, 184, 0.12);
    padding-bottom: 10px;
}
.blog-faq-item summary {
    display: block;
    cursor: pointer;
    list-style: none;
    padding: 4px 38px 4px 0;
    color: #062B6F;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
    position: relative;
}
.blog-faq-item summary::-webkit-details-marker {
    display: none;
}
.blog-faq-item summary::after {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(11, 70, 184, 0.06);
    color: #08347F;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 27px;
}
.blog-faq-item[open] summary::after {
    content: '−';
    background: rgba(11, 70, 184, 0.1);
}
.blog-faq-answer {
    padding-top: 10px;
}
.blog-article-header {
    max-width: 780px;
    margin: 0 auto;
}
.blog-article-meta {
    margin: 0 0 14px;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}
.blog-section-heading {
    max-width: 780px;
    margin: 0 auto 28px;
    color: #062B6F;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.blog-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.blog-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #062B6F;
    margin: 40px 0 12px;
    line-height: 1.35;
    padding-left: 16px;
    border-left: 3px solid var(--color-primary, #08347F);
}

/* Paragraphs */
.blog-content p {
    margin-bottom: 22px;
    color: #374151;
    line-height: 1.85;
    font-size: 1.02rem;
}

/* Links inside article */
.blog-content a {
    color: var(--color-primary, #08347F);
    text-decoration: none;
    background-image: linear-gradient(rgba(11, 70, 184, 0.15), rgba(11, 70, 184, 0.15));
    background-size: 100% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 1px;
    transition: background-size 0.25s, color 0.2s;
}

.blog-content a:hover {
    color: #041E54;
    background-size: 100% 100%;
    background-image: linear-gradient(rgba(11, 70, 184, 0.08), rgba(11, 70, 184, 0.08));
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin: 0 0 28px 0;
    padding-left: 0;
    color: #374151;
    line-height: 1.85;
    list-style: none;
}

.blog-content li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.blog-content ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary, #08347F);
    opacity: 0.5;
}

.blog-content ol {
    counter-reset: blog-ol;
}

.blog-content ol li::before {
    counter-increment: blog-ol;
    content: counter(blog-ol) '.';
    position: absolute;
    left: 2px;
    top: 0;
    font-weight: 700;
    color: var(--color-primary, #08347F);
    font-size: 0.95rem;
}

/* Strong emphasis */
.blog-content strong {
    color: #062B6F;
    font-weight: 700;
}

/* Blockquote / CTA box inside article */
.blog-content .cta-section,
.blog-content blockquote {
    margin: 40px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(11, 70, 184, 0.04) 0%, rgba(42, 112, 209, 0.06) 100%);
    border-left: 4px solid var(--color-primary, #08347F);
    border-radius: 0 16px 16px 0;
    font-style: normal;
}

.blog-content .cta-section h3 {
    border-left: none;
    padding-left: 0;
    color: var(--color-primary, #08347F);
    margin-top: 0;
}

/* Images inside article */
.blog-content figure {
    margin: 44px -16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.blog-content figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.blog-content figure:hover img {
    transform: scale(1.02);
}

.blog-content figcaption {
    padding: 14px 20px;
    font-size: 0.84rem;
    color: #6b7280;
    background: #f8fafb;
    text-align: center;
    line-height: 1.5;
    border-top: 1px solid #f0f1f3;
}

/* ---- Blog photo grid â€” 2 images side by side ---- */
.blog-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 44px -16px;
}

.blog-photo-grid figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.blog-photo-grid figure img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-photo-grid figure:hover img {
    transform: scale(1.04);
}

.blog-photo-grid figcaption {
    padding: 12px 14px;
    font-size: 0.82rem;
    color: #6b7280;
    background: #f8fafb;
    text-align: center;
    line-height: 1.4;
    border-top: 1px solid #f0f1f3;
}

@media (max-width:560px) {
    .blog-photo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 36px 0;
    }

    .blog-photo-grid figure img {
        height: 200px;
    }
}

/* ---- Blog Serviços Relacionados ---- */
.blog-related-services {
    background: linear-gradient(135deg, var(--color-primary, #08347F), var(--color-secondary, #0B46B8));
    padding: 56px 24px;
    margin-top: 48px;
}

.blog-related-services-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.blog-related-services h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.blog-related-services p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-size: 0.92rem;
}

.blog-service-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-service-tags a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: #ffffff;
    color: var(--color-primary, #08347F);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid rgba(11, 70, 184, 0.15);
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-service-tags a:hover {
    background: var(--color-primary, #08347F);
    color: #ffffff;
    border-color: var(--color-primary, #08347F);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 70, 184, 0.2);
}

.blog-service-tags a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.blog-service-tags a:hover svg {
    opacity: 1;
}

/* ---- Blog Leia Também ---- */
.blog-read-also {
    background: #ffffff;
    padding: 56px 24px;
}

.blog-read-also-inner {
    max-width: 780px;
    margin: 0 auto;
}

.blog-read-also h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #062B6F;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    text-align: center;
}

.blog-read-also-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.blog-read-also-list a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f8fafb;
    text-decoration: none;
    color: #1f2937;
    border-radius: 14px;
    border: 1px solid #e8ebed;
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.blog-read-also-list a::before {
    content: '';
    display: block;
    width: 4px;
    align-self: stretch;
    min-height: 20px;
    background: linear-gradient(180deg, var(--color-primary, #08347F), #0B46B8);
    border-radius: 3px;
    flex-shrink: 0;
    transition: width 0.25s;
}

.blog-read-also-list a::after {
    content: '→';
    margin-left: auto;
    font-size: 1.1rem;
    color: var(--color-primary, #08347F);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.blog-read-also-list a:hover {
    background: #F5F8FF;
    border-color: rgba(11, 70, 184, 0.25);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    color: var(--color-primary, #08347F);
}

.blog-read-also-list a:hover::before {
    width: 5px;
}

.blog-read-also-list a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Blog Leia Também: featured-image cards */
.blog-read-also-inner {
    max-width: 1000px;
}

.blog-read-also-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-read-also-list .blog-read-also-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    transform: translateY(0);
}

.blog-read-also-list .blog-read-also-card::before,
.blog-read-also-list .blog-read-also-card::after {
    display: none;
}

.blog-read-also-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #EEF3FB;
}

.blog-read-also-title {
    display: block;
    padding: 16px 18px 18px;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.blog-read-also-list .blog-read-also-card:hover {
    transform: translateY(-4px);
}

.blog-read-also-list .blog-read-also-card:hover .blog-read-also-title {
    color: var(--color-primary, #08347F);
}

/* ---- Blog mobile responsive ---- */
@media (max-width:768px) {
    .blog-content-section {
        padding: 24px 12px 0;
    }

    .blog-content {
        padding: 36px 24px 32px;
        border-radius: 16px;
    }

    .blog-content h2 {
        font-size: 1.3rem;
        margin-top: 40px;
    }

    .blog-content h3 {
        font-size: 1.05rem;
        margin-top: 32px;
    }

    .blog-content > p:first-of-type {
        font-size: 1.02rem;
    }

    .blog-content figure {
        margin: 32px -8px;
    }

    .blog-photo-grid {
        margin: 32px -8px;
    }

    .blog-related-services,
    .blog-read-also {
        padding: 40px 16px;
    }

    .blog-service-tags a {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .blog-read-also-list a {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .blog-read-also-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-read-also-list .blog-read-also-card {
        padding: 0;
    }
}

@media (max-width:480px) {
    .blog-content {
        padding: 28px 18px 24px;
        border-radius: 14px;
    }

    .blog-content h2 {
        font-size: 1.2rem;
    }

    .blog-content figure,
    .blog-photo-grid {
        margin-left: -6px;
        margin-right: -6px;
    }

    .blog-read-also-list {
        grid-template-columns: 1fr;
    }
}

/* Blog CTA box */
.blog-cta-box {
    margin: 48px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(11, 70, 184, 0.06) 0%, rgba(42, 112, 209, 0.06) 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(11, 70, 184, 0.15);
    text-align: center;
}

.blog-cta-box p {
    color: #1f2937;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.blog-cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-primary, #08347F);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(11, 70, 184, 0.25);
}

.blog-cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 70, 184, 0.35);
    filter: brightness(1.1);
}

/* --- Page hero CTA --- */
.page-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 32px;
    background: #ffffff;
    color: #08347F !important;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s, box-shadow 0.25s;
}

.page-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    color: #08347F !important;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
}

/* --- Internal links section (Serviços Relacionados) --- */
.related-services {
    background: linear-gradient(135deg, var(--color-primary, #08347F), var(--color-secondary, #0B46B8));
}

.related-services-inner {
    text-align: center;
    padding: 40px 24px;
}

.related-services-inner h2 {
    margin-bottom: 16px;
    color: #ffffff;
}

/* Mesmo tratamento para o bloco de serviços relacionados da página de manutenção. */
aside[aria-label="Serviços relacionados à manutenção hidráulica"] {
    background: linear-gradient(135deg, var(--color-primary, #08347F), var(--color-secondary, #0B46B8));
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] h2 {
    color: #ffffff;
}

/* Bloco de serviços relacionados da página de manutenção: contraste e respiro consistentes. */
#section-area-atendimento {
    padding: 0 !important;
    background: transparent !important;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] {
    padding: 48px 24px 56px;
    color: #ffffff;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] .s2-container {
    padding-left: 24px;
    padding-right: 24px;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] .s2-block-heading {
    margin-bottom: 32px !important;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] .premium-kicker {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] .premium-kicker::before,
aside[aria-label="Serviços relacionados à manutenção hidráulica"] .premium-kicker::after {
    color: rgba(255, 255, 255, 0.7) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7) !important;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] h2 {
    color: #ffffff !important;
    margin-top: 12px;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] .s2-content > div[style*="grid-template-columns"] {
    gap: 16px !important;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] a {
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

aside[aria-label="Serviços relacionados à manutenção hidráulica"] a:hover {
    background: #F5F8FF !important;
    color: #08347F !important;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    aside[aria-label="Serviços relacionados à manutenção hidráulica"] {
        padding: 40px 16px 48px;
    }

    aside[aria-label="Serviços relacionados à manutenção hidráulica"] .s2-container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Espaçamento global das heroes internas: título, descrição e breadcrumb mais próximos. */
.s2-section.page-hero {
    padding-top: 30px;
}

.page-hero-block h1 {
    padding-bottom: 10px;
}

.page-hero-subtitle {
    margin-top: 6px;
}

@media (max-width: 768px) {
    .page-hero,
    section.hero-section.page-hero {
        padding-top: 26px !important;
    }
}

/* Links dentro de textos: identificação visual discreta sem alterar menus e botões. */
.starter2-body p a:not(.btn):not(.card-more),
.starter2-body .text-content a:not(.btn):not(.card-more),
.starter2-body .richtext-content a:not(.btn):not(.card-more),
.starter2-body .blog-content a:not(.btn):not(.card-more),
.starter2-body .faq-answer a:not(.btn):not(.card-more),
.starter2-body .blog-faq-answer a:not(.btn):not(.card-more),
.starter2-body .legal-document a:not(.btn):not(.card-more),
.starter2-body figcaption a:not(.btn):not(.card-more) {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

/* Blog: categorias, cards com imagem destacada e leitura responsiva. */
.blog-category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 48px;
}

.blog-category-nav a {
    padding: 10px 16px;
    border: 1px solid rgba(11, 70, 184, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #08347F;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-category-nav a:hover {
    background: #08347F;
    color: #fff;
}

#blog-articles .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 0;
}

.blog-category + .blog-category {
    margin-top: 64px;
}

.blog-category-title {
    margin: 0 0 24px;
    color: #08347F;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    text-align: center;
}

#blog-articles .article-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

#blog-articles .article-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 600 / 430;
    object-fit: cover;
}

#blog-articles .article-card-meta {
    display: flex;
    flex: 1;
    flex-direction: column;
}

#blog-articles .article-card-tag {
    display: block !important;
    width: 100%;
    background: #FFF1EB !important;
    color: #FF6726 !important;
    text-align: center;
}

#blog-articles .article-card-excerpt {
    flex: 1;
}

@media (max-width: 900px) {
    #blog-articles .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    #blog-articles .article-grid {
        grid-template-columns: 1fr;
    }

    .blog-category + .blog-category {
        margin-top: 48px;
    }
}

/* Área de serviços da página de encanador: mais respiro entre título, links e CTA. */
aside[aria-label="Serviços de encanador em Goiânia"] {
    padding: 48px 24px 56px;
    background: #f8fafc;
}

aside[aria-label="Serviços de encanador em Goiânia"] .s2-block-heading {
    margin-bottom: 36px !important;
}

aside[aria-label="Serviços de encanador em Goiânia"] .s2-content > div[style*="grid-template-columns"] {
    row-gap: 16px !important;
    column-gap: 16px !important;
}

aside[aria-label="Serviços de encanador em Goiânia"] > .s2-container > .s2-content > p:last-child {
    margin-top: 32px !important;
}

@media (max-width: 600px) {
    aside[aria-label="Serviços de encanador em Goiânia"] {
        padding: 40px 16px 48px;
    }
}

/* Área de bairros da página de limpeza de caixas: respiro uniforme no bloco. */
aside[aria-label="Área de atendimento em Goiânia"] {
    padding: 48px 24px 56px;
    background: #f8fafc;
}

aside[aria-label="Área de atendimento em Goiânia"] .s2-block-heading {
    margin-bottom: 36px !important;
}

aside[aria-label="Área de atendimento em Goiânia"] .s2-content > div[style*="grid-template-columns"] {
    row-gap: 16px !important;
    column-gap: 16px !important;
}

@media (max-width: 600px) {
    aside[aria-label="Área de atendimento em Goiânia"] {
        padding: 40px 16px 48px;
    }
}

.related-services-inner p {
    margin-bottom: 24px;
    color: #6b7280;
}

.related-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.related-services-grid a {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #08347F;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.related-services-grid a:hover {
    background: #08347F;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 70, 184, 0.2);
}

@media (max-width:768px) {
    .related-services-grid a {
        width: 100%;
        padding: 14px 24px;
    }

}

/* --- Service card link styles --- */
.s2-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.s2-card-link .s2-card {
    cursor: pointer;
}

.s2-card .card-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #08347F;
}

/* ============================================
   PREMIUM VISUAL UPGRADE 2026
   Glassmorphism + Gradient Mesh + Micro-animations
   Performance: CSS-only, zero dependencies
   ============================================ */

/* --- Keyframes --- */
@keyframes premium-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes premium-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes premium-pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes premium-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes premium-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Reduced motion: disable all decorative animations --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- Enhanced Color Palette --- */
.starter2-body {
    --premium-glow: rgba(11, 70, 184, 0.08);
    --premium-glass: rgba(255, 255, 255, 0.65);
    --premium-glass-border: rgba(255, 255, 255, 0.35);
    --premium-shadow-soft: 0 8px 32px rgba(4, 30, 84, 0.06);
    --premium-shadow-lifted: 0 20px 48px rgba(4, 30, 84, 0.10);
    --premium-radius: 20px;
    --premium-radius-lg: 28px;
    --gradient-mesh: 
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(42, 112, 209, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(11, 70, 184, 0.05) 0%, transparent 60%);
}

/* --- Body: subtle gradient mesh background --- */
.starter2-body {
    background: 
        var(--gradient-mesh),
        var(--color-bg, #f3f4f6);
}

/* --- Header: solid white (protects logo with white bg) --- */
.s2-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(11, 70, 184, 0.08);
    box-shadow: 0 1px 12px rgba(4, 30, 84, 0.05);
}

/* Header CTA: gradient pill with glow */
.s2-header-cta .btn-primary,
.s2-header-cta .s2-btn-primary {
    background: linear-gradient(135deg, #08347F 0%, #0B46B8 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(11, 70, 184, 0.25);
    transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s cubic-bezier(.22,1,.36,1);
}
.s2-header-cta .btn-primary:hover,
.s2-header-cta .s2-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(11, 70, 184, 0.35);
    filter: none;
}

/* Nav link hover: glass pill */
.s2-nav-link:hover {
    background: rgba(11, 70, 184, 0.06);
    border-radius: 8px;
}

/* --- Hero: premium gradient mesh with animated orbs --- */
.s2-hero {
    background:
        radial-gradient(ellipse 50% 70% at 20% 30%, rgba(75, 135, 225, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(8, 52, 127, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #041E54 0%, #08347F 30%, #0B46B8 70%, #0A3C8A 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Hero decorative orb (CSS-only, no extra DOM) */
.s2-hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: premium-float 8s ease-in-out infinite;
}

.s2-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75,135,225,0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: premium-float 10s ease-in-out infinite reverse;
}

/* Hero content: glass card overlay */
.s2-hero .hero-block {
    position: relative;
    z-index: 1;
}

/* Hero H1: sharper + text shadow for depth */
.s2-hero h1 {
    text-shadow: 0 2px 24px rgba(4, 30, 84, 0.2);
    letter-spacing: -0.8px;
}

/* Hero CTA buttons: premium glass treatment */
.s2-hero .hero-actions .btn,
.s2-hero .hero-actions .btn-primary {
    border-radius: 14px !important;
    padding: 18px 36px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(4px);
    letter-spacing: 0.2px;
}
.s2-hero .hero-actions .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

.s2-hero .hero-actions .btn-secondary-outline {
    border-radius: 14px !important;
    border: 1.5px solid rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.08) !important;
}
.s2-hero .hero-actions .btn-secondary-outline:hover {
    background: rgba(255,255,255,0.16) !important;
    border-color: rgba(255,255,255,0.7) !important;
}

/* Hero trust badges: glass pills */
.s2-hero .trust-badge,
.page-hero .trust-badge,
.hero-section .trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- Page Hero: matching premium gradient --- */
.s2-section.page-hero {
    background:
        radial-gradient(ellipse 50% 70% at 20% 30%, rgba(75, 135, 225, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(8, 52, 127, 0.15) 0%, transparent 60%),
        linear-gradient(160deg, #041E54 0%, #08347F 30%, #0B46B8 70%, #0A3C8A 100%) !important;
    position: relative;
    overflow: hidden;
}
.s2-section.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-cta {
    border-radius: 14px !important;
}

/* --- Cards: glassmorphism upgrade --- */
.s2-card {
    background: var(--premium-glass);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    backdrop-filter: blur(12px) saturate(1.2);
    border: 1px solid var(--premium-glass-border);
    border-radius: var(--premium-radius);
    box-shadow: var(--premium-shadow-soft);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s ease;
}

.s2-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--premium-shadow-lifted);
    border-color: rgba(11, 70, 184, 0.15);
}

/* Card icon: gradient background with glow ring */
.s2-card-icon {
    background: linear-gradient(145deg, #08347F 0%, #0B46B8 100%);
    box-shadow: 0 6px 20px rgba(11, 70, 184, 0.25);
    position: relative;
}
.s2-card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(11, 70, 184, 0.1);
    pointer-events: none;
}

/* Card "Saiba mais" link: animated arrow (arrow already in HTML) */
.s2-card .card-more {
    position: relative;
    transition: color 0.3s, transform 0.3s;
}
.s2-card:hover .card-more {
    color: #0B46B8;
    transform: translateX(4px);
}

/* --- All headings: centered --- */
h2.heading,
h3.heading,
.s2-block h2.heading,
.s2-block h3.heading {
    position: relative;
    text-align: center !important;
    padding-bottom: 30px;
}

/* --- Section headings: gradient accent underline (centered) --- */
.s2-block h2.heading::after,
.s2-block h3.heading::after {
    content: '';
    display: block;
    margin: 8px auto 0;
    width: 40px;
    height: 2px;
    border-radius: 3px;
    background: #FF6726;
}

/* --- Kicker: shimmer effect --- */
.kicker {
    background: linear-gradient(90deg, #08347F 30%, #0B46B8 50%, #08347F 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premium-shimmer 4s ease-in-out infinite;
}

/* --- Buttons: premium gradient + glow --- */
.s2-btn-primary,
.btn-primary {
    background: linear-gradient(135deg, #08347F 0%, #0B46B8 100%) !important;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(11, 70, 184, 0.2);
    position: relative;
    overflow: hidden;
}
.s2-btn-primary::before,
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.s2-btn-primary:hover,
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(11, 70, 184, 0.3);
    filter: none !important;
}

/* WhatsApp button: enhanced glow */
.s2-hero .hero-actions .btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35) !important;
}
.s2-hero .hero-actions .btn-whatsapp:hover {
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.35) !important;
}

/* --- CTA blocks: premium gradient with glass overlay --- */
.s2-section .cta-block {
    border-radius: var(--premium-radius-lg);
    background: linear-gradient(145deg, #041E54 0%, #08347F 40%, #0B46B8 100%);
    box-shadow: 0 16px 48px rgba(8, 52, 127, 0.15);
    position: relative;
    overflow: hidden;
}
.s2-section .cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.s2-section .cta-block .btn,
.s2-cta-fullwidth .btn {
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

/* --- Phone CTA strip: richer gradient --- */
.phone-cta-strip {
    background: linear-gradient(135deg, #0B46B8, #2A70D1);
    position: relative;
    overflow: hidden;
}
.phone-cta-strip::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.phone-cta-strip a {
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* --- Why Choose (dark section): premium treatment --- */
.s2-why-choose,
.section-terrain-dark {
    position: relative;
    overflow: hidden;
}
.s2-why-choose::before,
.section-terrain-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(42, 112, 209, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 100% 0%, rgba(11, 70, 184, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Why Choose photo: premium frame */
.s2-why-photo,
.s2-split-photo img {
    border-radius: var(--premium-radius-lg) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Why Choose checklist: glass items */
.s2-block li::before {
    background: linear-gradient(135deg, #08347F, #0B46B8) !important;
}

/* --- Images: premium rounded + shadow --- */
.s2-block-image img {
    border-radius: var(--premium-radius);
    box-shadow: var(--premium-shadow-soft);
}

/* --- Footer: premium dark glass --- */
.s2-footer {
    background: linear-gradient(180deg, #041E54 0%, #062B6F 100%) !important;
    position: relative;
    overflow: hidden;
}
.s2-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(42,112,209,0.3) 50%, transparent 100%);
}
.s2-footer::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,112,209,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer heading: gradient accent line */
.s2-footer-heading {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 22px !important;
}
.s2-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: #FF6726;
}

/* Footer links: subtle hover glow */
.s2-footer-links a {
    transition: color 0.2s, padding-left 0.3s cubic-bezier(.22,1,.36,1);
}
.s2-footer-links a:hover {
    padding-left: 4px;
}

/* Footer bottom: white bg + centered gradient top border */
.s2-footer-bottom {
    margin-top: 60px;
    background: #ffffff !important;
    backdrop-filter: none;
    border-top: 1px solid transparent !important;
    border-image: linear-gradient(90deg, transparent 15%, rgba(42,112,209,0.35) 30%, rgba(11,70,184,0.5) 50%, rgba(42,112,209,0.35) 70%, transparent 85%) 1 !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* --- Floating buttons: enhanced glow --- */
.s2-wa-float {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}
.s2-wa-float:hover {
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.4);
    transform: scale(1.1) translateY(-2px);
}

.s2-wa-float.s2-phone-float {
    box-shadow: 0 6px 24px rgba(11, 70, 184, 0.3);
}
.s2-wa-float.s2-phone-float:hover {
    box-shadow: 0 10px 36px rgba(11, 70, 184, 0.4);
}

/* Back-to-top: glass treatment */
.s2-back-top {
    background: var(--premium-glass) !important;
    backdrop-filter: blur(12px) saturate(1.2);
    border: 1px solid var(--premium-glass-border);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(4, 30, 84, 0.08);
}
.s2-back-top:hover {
    box-shadow: 0 8px 28px rgba(11, 70, 184, 0.15);
    transform: translateY(-2px);
}

/* --- FAQ section: premium treatment --- */
.faq-section {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}
.faq-section h2 {
    position: relative;
    display: block;
    text-align: center;
}
.faq-section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #08347F, #0B46B8);
    margin: 12px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(11, 70, 184, 0.08) !important;
    margin-bottom: 0;
    transition: background 0.3s;
}
.faq-item:hover {
    background: rgba(11, 70, 184, 0.02);
}
.faq-item summary {
    padding: 1rem 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    transition: color 0.2s, padding-left 0.3s cubic-bezier(.22,1,.36,1);
}
.faq-item[open] summary {
    color: #08347F !important;
}
.faq-item summary::after {
    content: '+';
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(11, 70, 184, 0.06);
    color: #08347F !important;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    content: '\2212';
    background: rgba(11, 70, 184, 0.1);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 0 1.25rem;
    color: #444;
    font-size: .95rem;
}

/* --- Mobile call bar: premium gradient --- */
@media (max-width:768px) {
    .mobile-call-bar {
        background: linear-gradient(145deg, #041E54, #08347F, #0B46B8) !important;
        box-shadow: 0 -4px 28px rgba(8, 52, 127, 0.2);
    }
}

/* --- Section dividers: subtle gradient transitions --- */
.s2-section + .s2-section {
    position: relative;
}

/* --- Blog content: glass treatment --- */
.blog-content {
    background: var(--premium-glass) !important;
    backdrop-filter: blur(12px) saturate(1.2);
    border: 1px solid var(--premium-glass-border);
    box-shadow: var(--premium-shadow-soft) !important;
}

/* Blog service tags: glass pills */
.blog-service-tags a {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(11, 70, 184, 0.1);
}
.blog-service-tags a:hover {
    box-shadow: 0 8px 24px rgba(11, 70, 184, 0.12);
}

/* Blog read-also cards: glass treatment */
.blog-read-also-list a {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(11, 70, 184, 0.08);
    transition: all 0.3s cubic-bezier(.22,1,.36,1);
}
.blog-read-also-list a:hover {
    box-shadow: 0 8px 28px rgba(8, 52, 127, 0.08);
}

/* --- Photo grid: premium shadow + rounded --- */
.blog-photo-grid img,
.photo-grid img {
    border-radius: var(--premium-radius) !important;
    box-shadow: var(--premium-shadow-soft);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s cubic-bezier(.22,1,.36,1);
}
.blog-photo-grid img:hover,
.photo-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--premium-shadow-lifted);
}

/* --- Breadcrumb: flat, no background or border --- */
.breadcrumb,
.page-hero-block .breadcrumb,
.page-hero .breadcrumb,
nav.breadcrumb {
    display: inline-flex;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* --- Selection color --- */
::selection {
    background: rgba(11, 70, 184, 0.15);
    color: #041E54;
}

/* --- Scrollbar premium (webkit only) --- */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f3f4f6;
    }
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #08347F, #0B46B8);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #041E54, #08347F);
    }
}

/* --- CTA fullwidth: enhanced --- */
.s2-cta-fullwidth {
    background: linear-gradient(145deg, #041E54 0%, #08347F 40%, #0B46B8 100%) !important;
    position: relative;
    overflow: hidden;
}
.s2-cta-fullwidth::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   DECORATIVE KICKERS & BADGES
   Purely visual â€” all use aria-hidden="true"
   ============================================ */

/* Kicker: minimal label above headings */
.premium-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #08347F;
    -webkit-text-fill-color: #08347F;
    margin-bottom: 6px;
}
.premium-kicker::before {
    content: '—';
    font-weight: 400;
    color: #0B46B8;
    -webkit-text-fill-color: #0B46B8;
    flex-shrink: 0;
}
.premium-kicker::after {
    content: '—';
    font-weight: 400;
    color: #0B46B8;
    -webkit-text-fill-color: #0B46B8;
    flex-shrink: 0;
}

/* Badge: compact pill near sections */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #08347F;
    background: rgba(11, 70, 184, 0.04);
    border: 1px solid rgba(11, 70, 184, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    white-space: nowrap;
    width: auto !important;
    max-width: fit-content;
}
.premium-badge svg {
    width: 9px;
    height: 9px;
    stroke: #08347F;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Centered variant for section intros */
.text-center .premium-kicker,
.text-center .premium-badge,
.s2-content .premium-kicker,
.s2-content .premium-badge,
.cta-block .premium-kicker,
.cta-block .premium-badge {
    justify-content: center;
}
.premium-kicker.centered {
    display: flex;
    justify-content: center;
    width: auto;
}
.premium-badge.centered {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Dark section variants */
.section-terrain-dark .premium-kicker,
.s2-why-choose .premium-kicker,
.s2-cta-fullwidth .premium-kicker {
    color: #7FB0F6;
    -webkit-text-fill-color: #7FB0F6;
}
.section-terrain-dark .premium-kicker::before,
.section-terrain-dark .premium-kicker::after,
.s2-why-choose .premium-kicker::before,
.s2-why-choose .premium-kicker::after,
.s2-cta-fullwidth .premium-kicker::before,
.s2-cta-fullwidth .premium-kicker::after {
    color: #5A97EF;
    -webkit-text-fill-color: #5A97EF;
}

.section-terrain-dark .premium-badge,
.s2-why-choose .premium-badge {
    color: #7FB0F6;
    background: rgba(0, 196, 214, 0.08);
    border-color: rgba(0, 196, 214, 0.15);
}
.section-terrain-dark .premium-badge svg,
.s2-why-choose .premium-badge svg {
    stroke: #7FB0F6;
}

/* White/hero variants */
.s2-hero .premium-kicker,
.page-hero .premium-kicker {
    color: rgba(255,255,255,0.9);
    -webkit-text-fill-color: rgba(255,255,255,0.9);
}
.s2-hero .premium-kicker::before,
.s2-hero .premium-kicker::after,
.page-hero .premium-kicker::before,
.page-hero .premium-kicker::after {
    color: rgba(255,255,255,0.6);
    -webkit-text-fill-color: rgba(255,255,255,0.6);
}

/* Hero badge */
.s2-hero .premium-badge {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.s2-hero .premium-badge svg {
    stroke: rgba(255,255,255,0.9);
}

/* CTA block badge */
.cta-block .premium-badge,
.s2-cta-fullwidth .premium-badge {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.cta-block .premium-badge svg,
.s2-cta-fullwidth .premium-badge svg {
    stroke: rgba(255,255,255,0.9);
}

/* ===== WhatsApp brand color â€” applies everywhere ===== */
.btn-whatsapp,
a.btn-whatsapp,
.cta-buttons-wrapper a[href*="wa.me"],
.phone-cta-strip a[href*="wa.me"],
.s2-hero .hero-actions .btn-whatsapp,
.page-hero .hero-actions .btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35) !important;
}
.btn-whatsapp:hover,
a.btn-whatsapp:hover,
.cta-buttons-wrapper a[href*="wa.me"]:hover,
.phone-cta-strip a[href*="wa.me"]:hover {
    background: #1ebe5a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35) !important;
}

/* Page hero: same responsive fixes as s2-hero on mobile */
@media (max-width: 768px) {
    .page-hero,
    section.hero-section.page-hero {
        min-height: auto !important;
        padding: 26px 16px 48px !important;
    }
    .page-hero h1 {
        font-size: 1.7rem !important;
        line-height: 1.2;
    }
    .page-hero .trust-badges {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .page-hero .cta-buttons-wrapper {
        width: 100%;
    }
    .page-hero .cta-buttons-wrapper .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    /* Home hero image: better framing on narrow viewports */
    .s2-hero img[src*="hero-equipe"] {
        object-position: center 25% !important;
    }
}

/* ============================================================
   PAGE HERO â€” refinements for service pages (Apr 2026)
   ============================================================ */

/* Hero eyebrow â€” replaces illegible premium-badge on dark teal bg */
.page-hero .hero-eyebrow,
.s2-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    white-space: nowrap;
}
.page-hero .hero-eyebrow svg,
.s2-hero .hero-eyebrow svg {
    stroke: #ffffff;
    flex-shrink: 0;
}

/* Force premium-badge inside hero to be readable (fallback if still used) */
.page-hero .premium-badge,
.s2-hero .premium-badge {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}
.page-hero .premium-badge svg,
.s2-hero .premium-badge svg {
    stroke: #ffffff !important;
}

/* Hero action buttons â€” breathing room and proper styling */
.page-hero .hero-actions,
.s2-hero .hero-actions {
    margin-top: 28px;
}
.page-hero .cta-buttons-wrapper,
.s2-hero .cta-buttons-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* Secondary outline button â€” visible on dark teal hero */
.page-hero .btn-secondary-outline,
.s2-hero .hero-actions .btn-secondary-outline {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.75) !important;
    padding: 11px 26px !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.25s;
}
.page-hero .btn-secondary-outline:hover,
.s2-hero .hero-actions .btn-secondary-outline:hover {
    background: #ffffff !important;
    color: #041E54 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* H1 inside page-hero â€” tighter hierarchy */
.page-hero h1 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    line-height: 1.2;
    font-weight: 800;
    max-width: 880px;
    margin: 10px auto 16px;
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.15);
}
.page-hero .page-hero-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

/* Mobile â€” stack buttons and tighten spacing */
@media (max-width: 640px) {
    .page-hero .cta-buttons-wrapper,
    .s2-hero .cta-buttons-wrapper {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
    .page-hero .cta-buttons-wrapper .btn,
    .s2-hero .cta-buttons-wrapper .btn {
        width: 100%;
        justify-content: center;
    }
    .page-hero .hero-eyebrow,
    .s2-hero .hero-eyebrow {
        font-size: 0.65rem;
        padding: 7px 14px;
        white-space: normal;
        text-align: center;
    }
}

/* ============================================================
   MOBILE â€” hide desktop floats (fixes duplicate WhatsApp on mobile)
   These rules must win over the earlier .s2-wa-float { display:flex }
   declared outside any media query.
   ============================================================ */
@media (max-width: 768px) {
    .s2-wa-float,
    .s2-wa-float.s2-phone-float,
    a.s2-wa-float,
    a.s2-wa-float.s2-phone-float {
        display: none !important;
    }
}

/* ============================================================
   PAGE HERO â€” normalize CTA button shape & size
   Both WhatsApp (btn-primary btn-whatsapp) and phone button
   (btn-secondary-outline) must share identical border-radius,
   padding, height, and font metrics so they read as a pair.
   Applies to the home hero (.s2-hero) and bairro page hero
   (.page-hero) so both render identical pill-shaped CTAs.
   ============================================================ */
.page-hero .cta-buttons-wrapper .btn,
.page-hero .cta-buttons-wrapper .btn-primary,
.page-hero .cta-buttons-wrapper .btn-whatsapp,
.page-hero .cta-buttons-wrapper .btn-secondary-outline,
.page-hero .hero-actions .btn,
.page-hero .hero-actions .btn-primary,
.page-hero .hero-actions .btn-whatsapp,
.page-hero .hero-actions .btn-secondary-outline,
.s2-hero .cta-buttons-wrapper .btn,
.s2-hero .cta-buttons-wrapper .btn-primary,
.s2-hero .cta-buttons-wrapper .btn-whatsapp,
.s2-hero .cta-buttons-wrapper .btn-secondary-outline,
.s2-hero .hero-actions .btn,
.s2-hero .hero-actions .btn-primary,
.s2-hero .hero-actions .btn-whatsapp,
.s2-hero .hero-actions .btn-secondary-outline {
    border-radius: 999px !important;
    padding: 13px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    min-height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Outline compensates for its 2px border so the outer box matches WhatsApp */
.page-hero .cta-buttons-wrapper .btn-secondary-outline,
.page-hero .hero-actions .btn-secondary-outline,
.s2-hero .cta-buttons-wrapper .btn-secondary-outli
/* ==========================================================================
   ROBUST RESPONSIVE & OVERFLOW FIXES 
   ========================================================================== */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.s2-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    /* Removed overflow-x: hidden here so dropdowns can still overflow if needed, but keeping body strict */
}

/* Ensure flex/grid items don't overflow */
.s2-split-grid, .s2-card-grid {
    width: 100%;
    max-width: 100%;
}

/* Ensure text inside blocks wraps nicely on mobile */
.s2-block-text, .s2-block-faq, p, h1, h2, h3, h4, h5, h6, li, span, strong, a {
    max-width: 100%;
    white-space: normal;
}

/* Fix specific details/summary tags for FAQ */
details {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

summary {
    word-break: break-word;
    white-space: normal;
}

/* Hero blocks responsive safeguard */
.s2-hero {
    height: auto !important; /* Override any fixed heights if they exist */
    min-height: 100vh;
}
@media (max-width: 768px) {
    .s2-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

/* ==========================================================================
   FIX CTA BUTTONS WRAPPER
   ========================================================================== */
.cta-buttons-wrapper, .s2-hero .cta-buttons-wrapper, .page-hero .cta-buttons-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
}

.cta-buttons-wrapper .btn, .s2-hero .cta-buttons-wrapper .btn, .page-hero .cta-buttons-wrapper .btn {
    width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
}

@media (max-width: 600px) {
    .cta-buttons-wrapper, .s2-hero .cta-buttons-wrapper, .page-hero .cta-buttons-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .cta-buttons-wrapper .btn, .s2-hero .cta-buttons-wrapper .btn, .page-hero .cta-buttons-wrapper .btn {
        width: 100% !important;
    }
}


/* Revisor image grid v1 */
.blog-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 44px 0; }
.blog-photo-grid figure { margin: 0; }
.article-image--primary { margin: 28px 0 36px; }
.article-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: cover; }
@media (max-width: 680px) { .blog-photo-grid { grid-template-columns: 1fr; } }

.article-image--secondary { margin: 28px auto 36px; }
/* Imagens são conteúdo estático; não abrir galeria nem indicar zoom. */
img { cursor: default !important; }

/* Legendas de imagens ficam sempre centralizadas abaixo do respectivo ativo. */
figure figcaption {
    text-align: center !important;
    padding-top: 10px !important;
}

/* Moldura consistente para todas as imagens de conteúdo. */
.article-image img,
.image-block img,
.s2-split-photo img,
.s2-block-image img,
.blog-photo-grid img {
    border-radius: var(--premium-radius-lg, 28px) !important;
}

.image-block,
.s2-split-photo,
.s2-block-image,
.blog-photo-grid figure {
    overflow: hidden;
}

/* A imagem principal usa o mesmo acabamento visual das imagens secundárias. */
.article-image--primary img {
    border-radius: var(--premium-radius-lg, 28px) !important;
    box-shadow: var(--premium-shadow-soft, 0 16px 48px rgba(0, 0, 0, 0.15));
}

/* Animações de entrada compartilhadas entre todas as páginas. */
.sr-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
}

.sr-visible {
    opacity: 1;
    transform: translateY(0);
}

.sr-init.s2-block,
.sr-init.s2-card,
.sr-init.post-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s cubic-bezier(.22, 1, .36, 1), transform .5s cubic-bezier(.22, 1, .36, 1);
}

.sr-visible.s2-block,
.sr-visible.s2-card,
.sr-visible.post-card {
    opacity: 1;
    transform: translateY(0);
}

.sr-visible.s2-block:nth-child(1),
.sr-visible.s2-card:nth-child(1),
.sr-visible.post-card:nth-child(1) { transition-delay: .1s; }

.sr-visible.s2-block:nth-child(2),
.sr-visible.s2-card:nth-child(2),
.sr-visible.post-card:nth-child(2) { transition-delay: .2s; }

.sr-visible.s2-block:nth-child(3),
.sr-visible.s2-card:nth-child(3),
.sr-visible.post-card:nth-child(3) { transition-delay: .3s; }

.sr-visible.s2-block:nth-child(4),
.sr-visible.s2-card:nth-child(4) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    .sr-init,
    .sr-init.s2-block,
    .sr-init.s2-card,
    .sr-init.post-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* Shared critical blog layout styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }.starter2-body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 16px; line-height: 1.65; color: #1f2937; background: #f3f4f6; -webkit-font-smoothing: antialiased }.s2-header { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 100 }.s2-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 100px; padding-top: 16px; padding-bottom: 16px; height: auto; gap: 16px; max-width: 1140px; margin: 0 auto; padding: 0 24px }.s2-hero,.page-hero { min-height: 380px; contain: layout paint; background: linear-gradient(135deg, #0B46B8 0%, #2A70D1 100%); color: #fff; padding: 80px 24px 72px; text-align: center }.s2-container { max-width: 1140px; margin: 0 auto; padding: 0 24px }


/* Aviso legal institucional no rodap? */
.s2-footer-disclaimer {
    max-width: 980px;
    margin: 4px auto 0;
    color: #6b7280;
    font-size: .72rem;
    line-height: 1.6;
    text-align: center;
}
@media (max-width: 560px) {
    .s2-footer-disclaimer {
        padding: 0 8px;
        font-size: .7rem;
    }
}

/* Páginas legais: leitura confortável sem alterar o padrão geral do site. */
.legal-page .legal-hero {
    min-height: 280px;
    padding: 64px 24px 56px;
}

.legal-page .legal-hero h1 {
    color: #fff;
    margin: 18px auto 12px;
}

.legal-page .breadcrumb {
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    margin-bottom: 22px;
}

.legal-page .breadcrumb a {
    color: #fff;
}

.legal-section {
    background: #f3f4f6;
    padding: 56px 0 72px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px clamp(22px, 5vw, 64px);
    background: #fff;
    border: 1px solid rgba(11, 70, 184, .1);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(14, 39, 69, .06);
}

.legal-document h2 {
    margin: 30px 0 10px;
    color: #08347F;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.legal-document h2:first-of-type {
    margin-top: 24px;
}

.legal-document p,
.legal-document li {
    color: #374151;
    line-height: 1.75;
}

.legal-document ul {
    margin: 10px 0 18px 22px;
}

.legal-updated {
    margin: 0;
    color: #64748b;
    font-size: .9rem;
}

.legal-lead {
    margin: 20px 0 28px;
    color: #1f2937 !important;
    font-size: 1.05rem;
}

.legal-contact {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(11, 70, 184, .14);
}

/* CTA principal do cabeçalho: mantém o mesmo acabamento em páginas do blog e institucionais. */
.s2-header .s2-header-cta,
.s2-header a.s2-header-cta.btn-whatsapp {
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #ffffff !important;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35) !important;
    font-weight: 700;
    white-space: nowrap;
}

.s2-header .s2-header-cta:hover,
.s2-header a.s2-header-cta.btn-whatsapp:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .4) !important;
}

.s2-header .s2-header-cta svg,
.s2-header a.s2-header-cta.btn-whatsapp svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    opacity: 1 !important;
}

/* Header da página de contato alinhado ao padrão das demais páginas. */
body.page-contact .s2-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 70, 184, .08);
}

body.page-contact .s2-header-inner {
    max-width: 1140px;
    min-height: 100px;
    padding: 16px 24px;
    gap: 16px;
}

body.page-contact .s2-logo-img {
    max-height: 75px;
    width: auto;
}

body.page-contact .s2-nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

body.page-contact .s2-nav-link {
    font-weight: 600;
}

.s2-footer-map {
    margin-top: auto;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.s2-footer-map iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    body.page-contact .s2-header-inner {
        min-height: 60px;
        height: 60px;
        padding: 0 16px;
    }
}

/* Contatos no menu mobile: dois CTAs lado a lado e centralizados. */
@media (max-width: 768px) {
    .s2-mobile-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 20px;
        padding: 0;
        background: transparent;
    }

    .s2-mobile-contact > .btn {
        width: auto !important;
        max-width: none;
        min-height: 48px;
        padding: 13px 22px;
        border-radius: 999px;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }

    .s2-mobile-contact > .hero-cta-phone {
        background: transparent !important;
        color: #08347F !important;
        border: 2px solid #08347F !important;
        box-shadow: none !important;
    }

    .s2-mobile-contact > .btn-whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, .35) !important;
    }
}

/* Em telas não móveis, os três destaques permanecem na mesma linha. */
@media (min-width: 769px) {
    .s2-hero .trust-badges,
    .page-hero .trust-badges,
    .hero-section .trust-badges {
        flex-wrap: nowrap;
        gap: 18px;
        width: 100%;
    }

    .s2-hero .trust-badge,
    .page-hero .trust-badge,
    .hero-section .trust-badge {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
        white-space: nowrap;
    }

    .s2-hero .trust-badge-label,
    .page-hero .trust-badge-label,
    .hero-section .trust-badge-label {
        font-size: calc(0.72rem + 3px);
        white-space: nowrap;
    }

    /* A home tem menos largura útil para os três selos; preserva a leitura sem cortes. */
    .s2-hero .trust-badge-label {
        font-size: 0.82rem;
    }
}

@media (max-width: 600px) {
    .legal-page .legal-hero {
        padding: 48px 16px 42px;
    }

    .legal-section {
        padding: 32px 0 48px;
    }

    .legal-document {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        padding: 28px 20px 40px;
    }
}
/* Blog: replace the malformed generated phone path with the same handset used by the other site buttons. */
.blog-page .s2-phone-float > svg {
    display: none !important;
}

.blog-page .s2-phone-float::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Botão WhatsApp flutuante do rodapé: padrão único em todas as páginas. */
a.s2-wa-float.btn-whatsapp {
    align-items: center !important;
    justify-content: center !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3) !important;
}

a.s2-wa-float.btn-whatsapp svg {
    width: 28px !important;
    height: 28px !important;
    fill: #ffffff !important;
    color: #ffffff !important;
}

a.s2-wa-float.btn-whatsapp.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* CTAs da marca: azul com texto branco mantém contraste forte.
   Os botões do WhatsApp permanecem intencionalmente fora desta regra. */
.btn-primary:not(.btn-whatsapp),
a.btn-primary:not(.btn-whatsapp),
button.btn-primary:not(.btn-whatsapp) {
    background: var(--brand-blue) !important;
    color: #ffffff !important;
    border-color: var(--brand-blue) !important;
}

.btn-primary:not(.btn-whatsapp):hover,
a.btn-primary:not(.btn-whatsapp):hover,
button.btn-primary:not(.btn-whatsapp):hover {
    background: var(--brand-blue-deep) !important;
    color: #ffffff !important;
    border-color: var(--brand-blue-deep) !important;
}

/* Pronto Lar: cabecalho compacto, tipografia limpa e hero editorial. */
:root {
    --font-brand: "Inter", "Segoe UI", Arial, sans-serif;
}

.starter2-body,
.starter2-body button,
.starter2-body input,
.starter2-body textarea,
.starter2-body select {
    font-family: var(--font-brand);
}

.starter2-body h1,
.starter2-body h2,
.starter2-body h3,
.starter2-body h4,
.starter2-body h5,
.starter2-body h6 {
    font-family: var(--font-brand);
    text-transform: none;
    letter-spacing: -.018em;
}

.topbar-inner {
    min-height: 38px;
    padding: 0 24px;
    font-size: .78rem;
}

.s2-header {
    border-bottom: 1px solid rgba(11, 70, 184, .12);
    box-shadow: 0 4px 16px rgba(4, 30, 84, .06);
}

.s2-header-inner {
    min-height: 86px;
    padding-top: 0;
    padding-bottom: 0;
}

.s2-logo-img {
    width: auto;
    max-width: 165px;
    max-height: 56px;
}

.s2-nav-list {
    gap: 2px;
}

.s2-nav-link {
    padding: 7px 12px;
    color: #10264B;
    font-family: var(--font-brand);
    font-size: .88rem;
    font-weight: 700;
    text-transform: none;
    border-radius: 8px;
}

.s2-nav-link::after {
    height: 0;
    display: none;
}

.s2-nav-link:hover,
.s2-nav-link.active {
    color: #0B46B8;
    background: #EAF1FF;
}

a.s2-header-cta.btn-whatsapp,
.s2-header-cta.btn-whatsapp {
    min-height: 54px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35) !important;
    color: #fff !important;
}

.topbar,
.site-topbar {
    background: #08347F !important;
}

.brand-accent-link {
    color: #FF6726 !important;
}

.s2-hero,
.s2-section.page-hero,
section.hero-section.page-hero {
    min-height: 225px;
    padding: 58px 24px 60px;
    text-align: center;
    background: radial-gradient(ellipse 50% 70% at 20% 30%, rgba(75, 135, 225, 0.2) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 80% 70%, rgba(8, 52, 127, 0.15) 0%, transparent 60%), linear-gradient(160deg, #041E54 0%, #08347F 30%, #0B46B8 70%, #0A3C8A 100%) !important;
}

.s2-hero::before,
.s2-hero::after,
.s2-section.page-hero::before,
.s2-section.page-hero::after {
    display: none !important;
    animation: none !important;
}

.s2-hero-inner,
.s2-section.page-hero .s2-container {
    max-width: 1140px;
    margin: 0 auto;
}

.s2-hero .hero-block,
.page-hero-block {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.s2-hero h1,
.page-hero-block h1,
.page-hero h1 {
    max-width: 980px;
    color: #fff;
    font-family: var(--font-brand);
    font-size: clamp(2.25rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-transform: none;
    text-shadow: none;
}

/* Destaque curto nos títulos do hero, seguindo a linguagem visual das etiquetas do site. */
.s2-hero h1 .hero-title-highlight,
.page-hero h1 .hero-title-highlight {
    display: inline-block;
    padding: .08em .28em .12em;
    background: #FFF1EB;
    color: #FF6726;
    font-size: .78em;
    line-height: 1;
    letter-spacing: -.02em;
    text-shadow: none;
    vertical-align: .06em;
}

.s2-hero .hero-subtitle,
.page-hero-subtitle,
.page-hero .hero-eyebrow {
    color: rgba(255, 255, 255, .9);
    text-align: center;
}

.page-hero-block .breadcrumb,
.s2-hero .breadcrumb {
    justify-content: center;
    text-align: center;
}

/* Mantém as fotos dos serviços, mas faz o azul do hero conversar com a marca. */
.page-hero > div > div[style*="position: absolute"] {
    background: linear-gradient(135deg, rgba(2, 18, 50, .99) 0%, rgba(11, 70, 184, .78) 50%, rgba(2, 18, 50, .99) 100%) !important;
    z-index: 1 !important;
}

.page-hero .premium-kicker,
.page-hero .hero-eyebrow {
    color: #fff;
}

.s2-card {
    background: #fff;
    border: 1px solid #D9E2F2;
    border-top: 3px solid #FF6726;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(8, 52, 127, .08);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.s2-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(8, 52, 127, .12);
}

.s2-section-title,
.s2-block .heading,
.s2-card .heading,
.s2-why-title {
    color: #08347F;
}

/* Títulos dentro das seções de fundo azul precisam manter contraste branco. */
.s2-section.section-terrain-dark .s2-section-title,
.s2-section.section-terrain-dark .s2-block .heading,
.s2-section.section-terrain-dark .s2-why-title {
    color: #fff;
}

.s2-section-title::after,
.s2-title-accent,
.s2-card .heading::after {
    background: #FF6726;
}

.s2-footer {
    background: #062B6F;
}

@media (max-width: 768px) {
    .topbar-inner {
        min-height: 34px;
        padding: 8px 16px;
    }

    .s2-header-inner {
        min-height: 74px;
        padding: 10px 18px;
    }

    .s2-logo-img {
        max-width: 150px;
        max-height: 46px;
    }

    .s2-section.page-hero,
    section.hero-section.page-hero,
    .s2-hero {
        min-height: 200px;
        padding: 44px 20px 46px !important;
    }

    .s2-hero h1,
    .page-hero-block h1,
    .page-hero h1 {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }
}
