/*
Theme Name: Brasil Consig 
Theme URI: https://brasilconsig.com.br
Author: MIDIASIM
Author URI: https://brasilconsig.com.br
Description: Tema institucional da Brasil Consig — crédito consignado e soluções financeiras.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brasil-consig
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #364153;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Atalho de teclado: invisível até receber foco. */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    padding: 12px 20px;
    background: #145d94;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    text-decoration: none;
}

.skip-link:focus {
    left: 0;
}

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

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

ul, ol {
    list-style: none;
}

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

/* ===== UTILITIES ===== */
.container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #145d94;
    text-align: center;
}

.section-subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    color: #4a5565;
    text-align: center;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 95px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #f3f4f6;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
}

.header-logo-icon {
    width: 48px;
    height: 48px;
    background: #145d94;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-logo-icon span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 28px;
}

.header-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #145d94;
    line-height: 32px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu-item {
    list-style: none;
}

.main-nav .menu-item a {
    font-size: 16px;
    font-weight: 500;
    color: #4a5565;
    line-height: 24px;
    transition: color 0.3s ease;
}

.main-nav .menu-item a:hover {
    color: #145d94;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4da640;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 15px rgba(77, 166, 64, 0.2), 0 4px 6px rgba(77, 166, 64, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 20px rgba(77, 166, 64, 0.25), 0 6px 8px rgba(77, 166, 64, 0.25);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #145d94;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: #f9fafb;
    padding-top: 65px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(20, 93, 148, 0.05);
    filter: blur(64px);
    top: -400px;
    right: -100px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: flex-start;
    gap: 48px;
}

.hero-content {
    min-width: 0;
    max-width: 520px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 56px;
    color: #145d94;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #4a5565;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4da640;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    padding: 16px 40px;
    border-radius: 14px;
    box-shadow: 0 20px 25px rgba(77, 166, 64, 0.3), 0 8px 10px rgba(77, 166, 64, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 30px rgba(77, 166, 64, 0.35), 0 10px 12px rgba(77, 166, 64, 0.35);
}

.hero-image-wrapper {
    width: 100%;
    max-width: 520px;
    min-width: 0;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 8px;
    position: relative;
}

.hero-image-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero-image-inner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-image-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid #ecb93c;
    border-radius: 24px;
    opacity: 0.4;
    pointer-events: none;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #ffffff;
    padding: 80px 0;
}

.about-section .container {
    max-width: 896px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #145d94;
    text-align: center;
    margin-bottom: 28px;
}

.about-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #364153;
    text-align: center;
    margin-bottom: 20px;
}

.about-text strong {
    font-weight: 700;
    color: #145d94;
}

.about-text .highlight-green {
    font-weight: 700;
    color: #4da640;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    padding: 80px 0;
}

.products-header {
    text-align: center;
    margin-bottom: 48px;
}

.products-header .section-title {
    margin-bottom: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 26px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #4da640;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    padding: 4px 12px;
    border-bottom-left-radius: 14px;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: rgba(20, 93, 148, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-icon img {
    width: 32px;
    height: 32px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: #101828;
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    color: #364153;
}

.product-list-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.product-features {
    border-top: 1px solid #f3f4f6;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #145d94;
}

.product-feature img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
    background: #ffffff;
    padding: 80px 0;
}

.how-header {
    text-align: center;
    margin-bottom: 56px;
}

.how-header .section-title {
    margin-bottom: 16px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    gap: 24px;
    margin-bottom: 48px;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 11%;
    right: 11%;
    height: 4px;
    background: #f3f4f6;
    border-radius: 999px;
}

.how-step {
    width: 100%;
    min-width: 0;
    text-align: center;
    position: relative;
}

.how-step-icon {
    width: 96px;
    height: 96px;
    background: #ffffff;
    border: 4px solid #145d94;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.how-step-icon img {
    width: 40px;
    height: 40px;
}

.how-step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: #ecb93c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.how-step h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #101828;
    margin-bottom: 8px;
}

.how-step p {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    color: #6a7282;
}

.how-cta {
    text-align: center;
}

.how-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4da640;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    padding: 18px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 25px rgba(77, 166, 64, 0.3), 0 8px 10px rgba(77, 166, 64, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 30px rgba(77, 166, 64, 0.35), 0 10px 12px rgba(77, 166, 64, 0.35);
}

/* ===== SIMULATION MODAL ===== */
body.simulation-modal-open {
    overflow: hidden;
}

.simulation-modal[hidden] {
    display: none;
}

.simulation-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.simulation-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 18, 0.72);
    backdrop-filter: blur(3px);
}

.simulation-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    padding: 32px;
}

.simulation-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 139, 62, 0.1);
    color: #145d94;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.simulation-modal__close:hover,
.simulation-modal__close:focus {
    background: #4da640;
    color: #fff;
}

.simulation-modal__header {
    margin-bottom: 24px;
    padding-right: 34px;
}

.simulation-modal__eyebrow {
    margin: 0 0 8px;
    color: #4da640;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.simulation-modal__title {
    margin: 0 0 10px;
    color: #145d94;
    font-size: 1.7rem;
    line-height: 1.2;
}

.simulation-modal__text {
    margin: 0;
    color: #4a5565;
    line-height: 1.6;
}

.simulation-modal__form p {
    margin: 0 0 16px;
}

.simulation-modal__form label {
    display: block;
    color: #145d94;
    font-weight: 700;
}

.simulation-modal__form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
}

.simulation-modal__form input[type="text"],
.simulation-modal__form input[type="tel"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(25, 39, 58, 0.18);
    border-radius: 8px;
    padding: 12px 14px;
    color: #4a5565;
    font: inherit;
}

.simulation-modal__form input[type="text"]:focus,
.simulation-modal__form input[type="tel"]:focus {
    outline: 2px solid rgba(77, 166, 64, 0.22);
    border-color: #4da640;
}

.simulation-modal__form input[type="submit"] {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    background: #4da640;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.simulation-modal__form input[type="submit"]:hover,
.simulation-modal__form input[type="submit"]:focus {
    background: #3f8f35;
}

@media (max-width: 575px) {
    .simulation-modal {
        padding: 16px;
    }

    .simulation-modal__dialog {
        padding: 26px 20px;
    }

    .simulation-modal__title {
        font-size: 1.45rem;
    }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    background: #145d94;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3), transparent 70%);
}

.why-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 40px;
    align-items: flex-start;
}

.why-content {
    min-width: 0;
}

.why-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #ffffff;
    margin-bottom: 36px;
}

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

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 0;
}

.why-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.why-item-icon.green {
    background: #4da640;
}

.why-item-icon.yellow {
    background: #ecb93c;
}

.why-item-icon img {
    width: 28px;
    height: 28px;
}

.why-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 8px;
}

.why-item-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(219, 234, 254, 0.8);
}

.why-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 36px;
    margin-top: 24px;
    min-width: 0;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: #145d94;
    text-align: center;
    margin-bottom: 32px;
}

.why-card-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.why-card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.why-card-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-feature-icon.blue {
    background: #eff6ff;
}

.why-card-feature-icon.green-light {
    background: #f0fdf4;
}

.why-card-feature-icon img {
    width: 40px;
    height: 40px;
}

.why-card-feature-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #1e2939;
    text-align: center;
}

.why-card-divider {
    width: 1px;
    height: 96px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* ===== BANKS SECTION ===== */
.banks-section {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 48px 0;
}

.banks-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #99a1af;
    text-align: center;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.banks-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0.6;
    flex-wrap: wrap;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-parana-icon {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.bank-parana-text {
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
    color: #145d94;
}

.bank-logo {
    width: auto;
    max-width: 148px;
    height: 42px;
    display: block;
    object-fit: contain;
}

.bank-logo-pan {
    max-width: 172px;
    height: 54px;
}

.bank-logo-daycoval {
    max-width: 190px;
    height: 54px;
}

.bank-logo-facta {
    max-width: 150px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #f9fafb;
    padding: 80px 0;
}

.faq-section .container {
    max-width: 768px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header .section-title {
    margin-bottom: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Wrapper semântico: o botão vira o rótulo de um heading sem mudar o visual. */
.faq-question-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #101828;
}

.faq-question img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question img {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #4a5565;
}

/* ===== REVIEWS & INSTAGRAM SECTION ===== */
.reviews-section {
    background: #ffffff;
    padding: 80px 0;
}

.reviews-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
}

.reviews-left {
    min-width: 0;
}

.reviews-right {
    min-width: 0;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.reviews-google-icon {
    width: 72px;
    height: 72px;
    background: #ecb93c;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(236, 185, 60, 0.2), 0 4px 6px rgba(236, 185, 60, 0.2);
}

.reviews-google-icon img {
    width: 40px;
    height: 40px;
}

.reviews-header-text h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    color: #145d94;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-rating-number {
    font-size: 26px;
    font-weight: 900;
    line-height: 34px;
    color: #101828;
}

.reviews-stars {
    display: flex;
    align-items: center;
}

.reviews-stars img {
    width: 24px;
    height: 24px;
}

.review-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 24px;
    padding: 24px;
    position: relative;
    min-width: 0;
}

.review-card + .review-card {
    margin-top: 24px;
}

.review-card-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.review-card-stars img {
    width: 20px;
    height: 20px;
}

.review-card-quote {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
}

.review-card-text {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    line-height: 26px;
    color: #364153;
    margin-bottom: 24px;
}

.review-card-author {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #101828;
}

/* Instagram */
.instagram-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-header {
    margin-top: 50px;
}

.instagram-header h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #145d94;
    text-align: center;
}

.instagram-handle {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #4da640;
    margin-bottom: 32px;
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.instagram-post {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    min-width: 0;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #145d94;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 14px 24px;
    border-radius: 14px;
    transition: background 0.3s ease;
}

.instagram-btn img {
    width: 20px;
    height: 20px;
}

.instagram-btn:hover {
    background: #dbeafe;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #145d94;
    border-top: 8px solid #4da640;
    padding: 88px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) minmax(220px, 1fr) minmax(220px, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-about {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

/* Tamanho de exibição no CSS; os atributos width/height do HTML servem
   apenas para o navegador reservar o espaço e evitar CLS. */
.footer-logo img {
    width: 240px;
    height: auto;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon span {
    font-size: 20px;
    font-weight: 700;
    color: #145d94;
    letter-spacing: 1px;
    line-height: 28px;
}

.footer-logo-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #ffffff;
}

.footer-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
    color: rgba(219, 234, 254, 0.8);
    margin-bottom: 32px;
    max-width: 384px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-social-link img {
    width: 20px;
    height: 20px;
}

.footer-contact {
    min-width: 0;
}

.footer-institutional {
    min-width: 0;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #ecb93c;
    margin-bottom: 24px;
}

.footer-contact-list,
.footer-institutional-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-item,
.footer-institutional-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon.green {
    background: #4da640;
}

.footer-contact-icon.muted {
    background: rgba(255, 255, 255, 0.1);
}

.footer-contact-icon img {
    width: 20px;
    height: 20px;
}

.footer-contact-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(219, 234, 254, 0.8);
}

.footer-contact-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-value.small {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.footer-institutional-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-institutional-icon img {
    width: 20px;
    height: 20px;
}

.footer-institutional-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 33px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgba(219, 234, 254, 0.6);
}

.footer-privacy-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.footer-privacy-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 12px 20px;
    border-radius: 999px;
    transition: background 0.3s ease;
}

.footer-back-top:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-back-top img {
    width: 16px;
    height: 16px;
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 1200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float img {
    width: 24px;
    height: 24px;
}

/* ===== RESPONSIVE - 1366px ===== */
@media (max-width: 1366px) {
    .footer-inner {
        grid-template-columns: minmax(260px, 1.2fr) minmax(210px, 1fr) minmax(210px, 1fr);
        gap: 28px;
    }

    .footer-logo-text {
        font-size: 26px;
        line-height: 32px;
    }

    .footer-description {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-contact-value {
        font-size: 18px;
        line-height: 26px;
    }
}

/* ===== SERVICES PAGE ===== */
.services-page-hero {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 65px 0 72px;
}

.services-page-hero__content {
    max-width: 900px;
}

.services-page-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 93, 148, 0.08);
    color: #145d94;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-page-hero__title {
    max-width: 820px;
    margin-bottom: 24px;
    color: #145d94;
    font-size: 44px;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: -1px;
}

.services-page-hero__text {
    max-width: 820px;
    margin-bottom: 40px;
    color: #4a5565;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.services-highlights-section {
    padding: 0 0 72px;
    background: #ffffff;
}

.services-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-highlight-card,
.services-detail-card {
    padding: 24px;
    border: 1px solid #f3f4f6;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    min-width: 0;
}

.services-highlight-card h2,
.services-detail-card h3 {
    margin-bottom: 16px;
    color: #101828;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

.services-highlight-card p,
.services-detail-card p {
    color: #4a5565;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.services-details-section {
    padding: 80px 0;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.services-details-header {
    margin-bottom: 56px;
}

.services-details-header .section-title {
    margin-bottom: 16px;
}

.services-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-cta-box {
    padding: 40px;
    border-radius: 32px;
    background: #145d94;
    box-shadow: 0 25px 50px rgba(20, 93, 148, 0.2);
    text-align: center;
}

.services-cta-box h2 {
    max-width: 840px;
    margin: 0 auto 32px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

/* ===== RESPONSIVE - 1440px ===== */
@media (max-width: 1440px) {
    .container {
        padding: 0 64px;
    }

    .header-inner {
        padding: 0 64px;
    }

    .hero-section {
        padding-top: 57px;
        padding-bottom: 80px;
    }

    .hero-inner {
        gap: 56px;
    }

    .about-section,
    .products-section,
    .how-section,
    .why-section,
    .faq-section,
    .reviews-section,
    .services-details-section,
    .services-cta-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

    .products-header,
    .faq-header,
    .how-header,
    .services-details-header {
        margin-bottom: 48px;
    }

    .why-inner,
    .reviews-inner {
        gap: 56px;
    }

    .services-page-hero {
        padding-top: 25px;
        padding-bottom: 72px;
    }
}

/* ===== RESPONSIVE - 1200px ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .header-inner {
        padding: 0 40px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
        gap: 32px;
    }

    .hero-image-wrapper {
        max-width: 440px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .why-card {
        max-width: 440px;
    }

    .reviews-inner,
    .why-inner {
        gap: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .services-page-hero__title {
        font-size: 46px;
        line-height: 56px;
    }
}

/* ===== RESPONSIVE - 1024px ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .header-inner {
        padding: 0 24px;
    }

    .header-logo img {
        width: 150px;
    }

    .main-nav {
        position: fixed;
        top: var(--site-header-height, 95px);
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .main-nav .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .hero-image-inner img {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .services-highlights-grid,
    .services-details-grid {
        grid-template-columns: 1fr;
    }

    .how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }

    .how-steps::before {
        display: none;
    }

    .how-step {
        max-width: none;
    }

    .why-inner {
        grid-template-columns: 1fr;
    }

    .why-card {
        width: 100%;
        margin-top: 0;
        max-width: none;
    }

    .reviews-inner {
        grid-template-columns: 1fr;
    }

    .banks-logos {
        gap: 32px;
    }

    .footer-inner {
        gap: 40px;
    }

    .services-page-hero {
        padding-top: 45px;
    }

    .services-page-hero__title {
        font-size: 36px;
        line-height: 44px;
    }
}

/* ===== RESPONSIVE - 768px ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .header-logo img {
        width: 150px;
    }

    .header-cta {
        display: none;
    }

    .hero-section {
        padding-top: 25px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.5px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 24px;
    }

    .hero-image-inner img {
        height: 300px;
    }

    .section-title {
        font-size: 26px;
        line-height: 32px;
    }

    .about-section {
        padding: 64px 0;
    }

    .about-text {
        font-size: 15px;
        line-height: 24px;
    }

    .products-section {
        padding: 64px 0;
    }

    .services-highlights-section,
    .services-details-section,
    .services-cta-section {
        padding: 64px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-header {
        margin-bottom: 40px;
    }

    .how-section {
        padding: 64px 0;
    }

    .how-header {
        margin-bottom: 48px;
    }

    .how-step {
        width: 100%;
        max-width: none;
    }

    .why-section {
        padding: 64px 0;
    }

    .why-card {
        padding: 32px;
    }

    .why-card-features {
        gap: 20px;
        flex-direction: column;
    }

    .why-card-divider {
        width: 72px;
        height: 1px;
    }

    .banks-section {
        padding: 48px 0;
    }

    .banks-logos {
        flex-direction: column;
        gap: 24px;
    }

    .faq-section {
        padding: 64px 0;
    }

    .faq-question span {
        font-size: 16px;
    }

    .reviews-section {
        padding: 64px 0;
    }

    .reviews-header {
        margin-bottom: 32px;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .services-page-hero__title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.5px;
    }

    .services-page-hero__text,
    .services-highlight-card p,
    .services-detail-card p {
        font-size: 15px;
        line-height: 24px;
    }

    .services-highlight-card,
    .services-detail-card,
    .services-cta-box {
        padding: 28px;
    }

    .services-cta-box h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== QUEM SOMOS PAGE ===== */

/* Hero */
.qs-hero {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 25px 0 80px;
}

.qs-hero__content {
    max-width: 860px;
}

.qs-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 93, 148, 0.08);
    color: #145d94;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.qs-hero__title {
    max-width: 820px;
    margin-bottom: 24px;
    color: #145d94;
    font-size: 44px;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: -1px;
}

.qs-hero__text {
    max-width: 820px;
    color: #4a5565;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

/* História / Timeline */
.qs-history {
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    padding: 80px 0;
}

.qs-history__header {
    text-align: center;
    margin-bottom: 56px;
}

.qs-history__header .section-title {
    margin-bottom: 16px;
}

.qs-timeline {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.qs-timeline__item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.qs-timeline__connector {
    width: 4px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 999px;
    margin-left: 46px;
}

.qs-timeline__marker {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    background: #ffffff;
    border: 4px solid #145d94;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.qs-timeline__marker--highlight {
    background: #145d94;
}

.qs-timeline__marker--highlight .qs-timeline__year {
    color: #ffffff;
}

.qs-timeline__year {
    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
    color: #145d94;
    letter-spacing: -0.5px;
}

.qs-timeline__body {
    padding-top: 16px;
    min-width: 0;
}

.qs-timeline__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #101828;
    margin-bottom: 10px;
}

.qs-timeline__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #4a5565;
}

/* Missão */
.qs-mission {
    background: #ffffff;
    padding: 80px 0;
}

.qs-mission__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 40px;
}

.qs-mission__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qs-mission__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #364153;
}

.qs-mission__text strong {
    font-weight: 700;
    color: #145d94;
}

/* Citação */
.qs-quote {
    background: #145d94;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.qs-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.5), transparent 70%);
}

.qs-quote__inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.qs-quote__icon {
    width: 56px;
    height: 56px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.qs-quote__text {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    line-height: 42px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Quem Somos — Responsive */
@media (max-width: 1200px) {
    .qs-hero {
        padding-top: 57px;
        padding-bottom: 72px;
    }

    .qs-hero__title {
        font-size: 38px;
        line-height: 46px;
    }
}

@media (max-width: 1024px) {
    .qs-hero {
        padding-top: 45px;
        padding-bottom: 64px;
    }

    .qs-history,
    .qs-mission {
        padding: 64px 0;
    }

    .qs-quote {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .qs-hero {
        padding-top: 25px;
        padding-bottom: 56px;
    }

    .qs-hero__title {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }

    .qs-hero__text {
        font-size: 15px;
        line-height: 24px;
    }

    .qs-history,
    .qs-mission {
        padding: 56px 0;
    }

    .qs-history__header {
        margin-bottom: 40px;
    }

    .qs-timeline__item {
        gap: 20px;
    }

    .qs-timeline__connector {
        margin-left: 38px;
    }

    .qs-timeline__marker {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }

    .qs-timeline__year {
        font-size: 18px;
    }

    .qs-mission__inner {
        flex-direction: column;
        padding: 28px;
        gap: 16px;
    }

    .qs-mission__text {
        font-size: 16px;
        line-height: 26px;
    }

    .qs-quote {
        padding: 72px 0;
    }

    .qs-quote__text {
        font-size: 20px;
        line-height: 32px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-page-hero {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 25px 0 72px;
}

.contact-page-hero__content {
    max-width: 860px;
}

.contact-page-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 93, 148, 0.08);
    color: #145d94;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-page-hero__title {
    margin-bottom: 20px;
    color: #145d94;
    font-size: 44px;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: -1px;
}

.contact-page-hero__text {
    max-width: 760px;
    color: #4a5565;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.contact-page-section {
    padding: 0 0 80px;
    background: #ffffff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page-card,
.contact-page-form-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 28px;
}

.contact-page-card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #145d94;
    margin-bottom: 20px;
}

.contact-page-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-page-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-page-item__icon.green {
    background: #eff6ff;
}

.contact-page-item__icon.muted {
    background: #eff6ff;
}

.contact-page-item__icon img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(1318%) hue-rotate(176deg) brightness(92%) contrast(94%);
}

.contact-page-item__label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #6a7282;
}

.contact-page-item__value {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #101828;
}

.contact-page-item__value.small {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #364153;
}

.contact-page-item__link {
    display: inline-flex;
    margin-top: 8px;
    color: #145d94;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.contact-page-item__link:hover {
    color: #0e466f;
}

.contact-page-form-card__text {
    margin-bottom: 20px;
    color: #4a5565;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.contact-page-form-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-page-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-page-field label {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #364153;
}

.contact-page-field input,
.contact-page-field textarea {
    width: 100%;
    border: 1px solid #d9dde3;
    border-radius: 12px;
    background: #f9fafb;
    color: #6a7282;
    padding: 12px 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
}

.contact-page-field input:disabled,
.contact-page-field textarea:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.contact-page-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-page-form-btn {
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    background: #4da640;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    opacity: 0.55;
    cursor: not-allowed;
}

/* ===== CONTACT FORM 7 - PAGINA CONTATO ===== */
.contact-page-form-visual p {
    margin: 0;
}

.contact-page-form-visual .contact-page-field > label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-page-form-visual .wpcf7-form-control-wrap {
    display: block;
}

.contact-page-form-visual .contact-page-field input,
.contact-page-form-visual .contact-page-field textarea {
    display: block;
    resize: vertical;
}

.contact-page-form-visual .contact-page-form-btn {
    width: 100%;
    opacity: 1;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease;
}

.contact-page-form-visual .contact-page-form-btn:hover,
.contact-page-form-visual .contact-page-form-btn:focus {
    background: #3f8f35;
}

.contact-page-form-visual .wpcf7-not-valid {
    border-color: #dc2626;
    background: #fef2f2;
}

.contact-page-form-visual .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.contact-page-form-visual .wpcf7-response-output {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 20px;
}

.contact-page-form-visual .wpcf7-spinner {
    margin: 8px auto 0;
}

/* Mesmo formulario dentro do popup de simulacao */
.simulation-modal__form textarea {
    width: 100%;
    min-height: 110px;
    border: 1px solid rgba(25, 39, 58, 0.18);
    border-radius: 8px;
    padding: 12px 14px;
    color: #4a5565;
    font: inherit;
    resize: vertical;
}

.simulation-modal__form textarea:focus {
    outline: 2px solid rgba(77, 166, 64, 0.22);
    border-color: #4da640;
}

@media (max-width: 1200px) {
    .contact-page-hero__title {
        font-size: 38px;
        line-height: 46px;
    }
}

@media (max-width: 1024px) {
    .contact-page-hero {
        padding-top: 25px;
        padding-bottom: 64px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding-top: 25px;
        padding-bottom: 56px;
    }

    .contact-page-section {
        padding-bottom: 64px;
    }

    .contact-page-hero__title {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }

    .contact-page-hero__text {
        font-size: 15px;
        line-height: 24px;
    }

    .contact-page-card,
    .contact-page-form-card {
        padding: 22px;
    }

    .contact-page-field-grid {
        grid-template-columns: 1fr;
    }
}

    /* ===== SIMPLE GUTENBERG PAGE ===== */
    .gutenberg-page {
        padding: 25px 0 60px;
        background: #ffffff;
    }

    .gutenberg-page__container {
        max-width: 1280px;
    }

    .gutenberg-page__title {
        margin-bottom: 24px;
        color: #145d94;
        font-size: 42px;
        font-weight: 800;
        line-height: 50px;
        letter-spacing: -0.8px;
    }

    .gutenberg-page__content {
        color: #364153;
        font-size: 18px;
        line-height: 1.8;
    }

    .gutenberg-page__content > * + * {
        margin-top: 1rem;
    }

    .gutenberg-page__content h2,
    .gutenberg-page__content h3,
    .gutenberg-page__content h4 {
        color: #145d94;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .gutenberg-page__content ul,
    .gutenberg-page__content ol {
        list-style: revert;
        padding-left: 1.4rem;
    }

    @media (max-width: 768px) {
        .gutenberg-page {
            padding: 25px 0 60px;
        }

        .gutenberg-page__title {
            font-size: 30px;
            line-height: 38px;
        }

        .gutenberg-page__content {
            font-size: 16px;
            line-height: 1.7;
        }
    }
