*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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, #0e2745);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

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: none;
}

.s2-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary, #0e2745), var(--color-secondary, #163f6e));
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.s2-nav-link:hover {
    color: var(--color-primary, #0e2745);
}

.s2-nav-link:hover::after {
    transform: scaleX(1);
}

.s2-nav-link.active {
    color: var(--color-primary, #0e2745);
}


/* 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, #0e2745);
    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, #0e2745);
}

.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, #0e2745) 0%, var(--color-secondary, #163f6e) 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: #0e2745 !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, #0e2745) 0%, var(--color-secondary, #163f6e) 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, #eef3f8) !important;
}

.s2-section.section-terrain-warm {
    background: var(--terrain-warm, #fef9f3) !important;
}

.s2-section.section-terrain-dark {
    background: var(--terrain-dark, #0a2342) !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, #13c2c2);
}

.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, #0e2745);
    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, #0a2342) !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: #163f6e;
}

.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, #0e2745);
    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, #0e2745);
    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, #0e2745);
    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;
}

.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: #0a2342;
}

.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, #0e2745);
    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, #0e2745);
    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, #0e2745), var(--color-secondary, #163f6e));
    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, #0e2745) !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, #0e2745), var(--color-secondary, #163f6e));
    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, #007080, #00a3b5);
    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, #0e2745) !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, #0e2745), var(--color-secondary, #163f6e));
        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 {
        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-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, #0a2342);
    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, #0e2745);
    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-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, #13c2c2) !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: #0a2342;
    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;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.s2-footer-bottom-logo img:hover {
    opacity: 1;
}

.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: #0a2342;
    margin: 56px 0 18px;
    line-height: 1.3;
    letter-spacing: -0.4px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 112, 128, 0.12);
}

.blog-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.blog-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a2342;
    margin: 40px 0 12px;
    line-height: 1.35;
    padding-left: 16px;
    border-left: 3px solid var(--color-primary, #0e2745);
}

/* 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, #0e2745);
    text-decoration: none;
    background-image: linear-gradient(rgba(0, 112, 128, 0.15), rgba(0, 112, 128, 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: #0a1c33;
    background-size: 100% 100%;
    background-image: linear-gradient(rgba(0, 112, 128, 0.08), rgba(0, 112, 128, 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, #0e2745);
    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, #0e2745);
    font-size: 0.95rem;
}

/* Strong emphasis */
.blog-content strong {
    color: #0a2342;
    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(0, 112, 128, 0.04) 0%, rgba(0, 163, 181, 0.06) 100%);
    border-left: 4px solid var(--color-primary, #0e2745);
    border-radius: 0 16px 16px 0;
    font-style: normal;
}

.blog-content .cta-section h3 {
    border-left: none;
    padding-left: 0;
    color: var(--color-primary, #0e2745);
    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(180deg, #f8fafb 0%, #eef5f6 100%);
    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: #0a2342;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.blog-related-services p {
    color: #6b7280;
    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, #0e2745);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid rgba(0, 112, 128, 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, #0e2745);
    color: #ffffff;
    border-color: var(--color-primary, #0e2745);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 112, 128, 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: #0a2342;
    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, #0e2745), #163f6e);
    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, #0e2745);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.blog-read-also-list a:hover {
    background: #f0f7f8;
    border-color: rgba(0, 112, 128, 0.25);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    color: var(--color-primary, #0e2745);
}

.blog-read-also-list a:hover::before {
    width: 5px;
}

.blog-read-also-list a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ---- 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;
    }
}

@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 CTA box */
.blog-cta-box {
    margin: 48px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 112, 128, 0.06) 0%, rgba(0, 163, 181, 0.06) 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(0, 112, 128, 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, #0e2745);
    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(0, 112, 128, 0.25);
}

.blog-cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 112, 128, 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: #0e2745 !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: #0e2745 !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: #f0f9fa;
}

.related-services-inner {
    text-align: center;
    padding: 40px 24px;
}

.related-services-inner h2 {
    margin-bottom: 16px;
    color: #0a2342;
}

.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: #0e2745;
    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: #0e2745;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 128, 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: #0e2745;
}

/* ============================================
   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(0, 112, 128, 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(0, 40, 60, 0.06);
    --premium-shadow-lifted: 0 20px 48px rgba(0, 40, 60, 0.10);
    --premium-radius: 20px;
    --premium-radius-lg: 28px;
    --gradient-mesh: 
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0, 163, 181, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(0, 112, 128, 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(0, 112, 128, 0.08);
    box-shadow: 0 1px 12px rgba(0, 40, 60, 0.05);
}

/* Header CTA: gradient pill with glow */
.s2-header-cta .btn-primary,
.s2-header-cta .s2-btn-primary {
    background: linear-gradient(135deg, #0e2745 0%, #163f6e 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0, 112, 128, 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(0, 112, 128, 0.35);
    filter: none;
}

/* Nav link hover: glass pill */
.s2-nav-link:hover {
    background: rgba(0, 112, 128, 0.06);
    border-radius: 8px;
}

/* --- Hero: premium gradient mesh with animated orbs --- */
.s2-hero {
    background:
        radial-gradient(ellipse 50% 70% at 20% 30%, rgba(0, 200, 220, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(0, 80, 100, 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, #0a1c33 0%, #0e2745 30%, #163f6e 70%, #14365e 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(0,200,220,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(0, 40, 60, 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(0, 200, 220, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(0, 80, 100, 0.15) 0%, transparent 60%),
        linear-gradient(160deg, #0a1c33 0%, #0e2745 30%, #163f6e 70%, #14365e 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(0, 112, 128, 0.15);
}

/* Card icon: gradient background with glow ring */
.s2-card-icon {
    background: linear-gradient(145deg, #0e2745 0%, #163f6e 100%);
    box-shadow: 0 6px 20px rgba(0, 112, 128, 0.25);
    position: relative;
}
.s2-card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(0, 112, 128, 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: #163f6e;
    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: linear-gradient(90deg, #0e2745, #163f6e);
}

/* --- Kicker: shimmer effect --- */
.kicker {
    background: linear-gradient(90deg, #0e2745 30%, #163f6e 50%, #0e2745 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, #0e2745 0%, #163f6e 100%) !important;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 112, 128, 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(0, 112, 128, 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, #0a1c33 0%, #0e2745 40%, #163f6e 100%);
    box-shadow: 0 16px 48px rgba(0, 80, 100, 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, #007080, #00a3b5);
    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(0, 163, 181, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 100% 0%, rgba(0, 112, 128, 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, #0e2745, #163f6e) !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, #081c36 0%, #0a2342 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(0,163,181,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(0,163,181,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: linear-gradient(90deg, #0e2745, #163f6e);
}

/* 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(0,163,181,0.35) 30%, rgba(0,112,128,0.5) 50%, rgba(0,163,181,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);
}

/* 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(0, 40, 60, 0.08);
}
.s2-back-top:hover {
    box-shadow: 0 8px 28px rgba(0, 112, 128, 0.15);
    transform: translateY(-2px);
}

/* --- FAQ section: premium treatment --- */
.faq-section {
    position: relative;
}
.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, #0e2745, #163f6e);
    margin: 12px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 112, 128, 0.08) !important;
    transition: background 0.3s;
}
.faq-item:hover {
    background: rgba(0, 112, 128, 0.02);
}
.faq-item summary {
    transition: color 0.2s, padding-left 0.3s cubic-bezier(.22,1,.36,1);
}
.faq-item[open] summary {
    color: #0e2745 !important;
}
.faq-item summary::after {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 112, 128, 0.06);
    color: #0e2745 !important;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    background: rgba(0, 112, 128, 0.1);
}

/* --- Mobile call bar: premium gradient --- */
@media (max-width:768px) {
    .mobile-call-bar {
        background: linear-gradient(145deg, #0a1c33, #0e2745, #163f6e) !important;
        box-shadow: 0 -4px 28px rgba(0, 80, 100, 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(0, 112, 128, 0.1);
}
.blog-service-tags a:hover {
    box-shadow: 0 8px 24px rgba(0, 112, 128, 0.12);
}

/* Blog read-also cards: glass treatment */
.blog-read-also-list a {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 112, 128, 0.08);
    transition: all 0.3s cubic-bezier(.22,1,.36,1);
}
.blog-read-also-list a:hover {
    box-shadow: 0 8px 28px rgba(0, 80, 100, 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(0, 112, 128, 0.15);
    color: #0a1c33;
}

/* --- Scrollbar premium (webkit only) --- */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f3f4f6;
    }
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #0e2745, #163f6e);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #0a1c33, #0e2745);
    }
}

/* --- CTA fullwidth: enhanced --- */
.s2-cta-fullwidth {
    background: linear-gradient(145deg, #0a1c33 0%, #0e2745 40%, #163f6e 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: #0e2745;
    -webkit-text-fill-color: #0e2745;
    margin-bottom: 6px;
}
.premium-kicker::before {
    content: '—';
    font-weight: 400;
    color: #163f6e;
    -webkit-text-fill-color: #163f6e;
    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: #0e2745;
    background: rgba(0, 112, 128, 0.04);
    border: 1px solid rgba(0, 112, 128, 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: #0e2745;
    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: #4dd9e6;
    -webkit-text-fill-color: #4dd9e6;
}
.section-terrain-dark .premium-kicker::before,
.s2-why-choose .premium-kicker::before,
.s2-cta-fullwidth .premium-kicker::before {
    color: #00c4d6;
    -webkit-text-fill-color: #00c4d6;
}

.section-terrain-dark .premium-badge,
.s2-why-choose .premium-badge {
    color: #4dd9e6;
    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: #4dd9e6;
}

/* 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,
.page-hero .premium-kicker::before {
    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: 56px 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: #0a1c33 !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,
    a.s2-wa-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;
    }
}
/* 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));
}
