body.consent-banner-visible .sticky {
    bottom: 100px !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #242E41;
    line-height: 1.6;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #204996;
    margin-bottom: 12px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

p {
    font-size: 17px;
}

ul {
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.hero {
    background: linear-gradient(135deg, #242E41, #29406C 55%, #204996);
    color: #fff;
    position: relative;
    overflow: hidden;
    background-size: 180% 180%;
    animation: heroShift 9s ease-in-out infinite;
}

.hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, rgba(147, 197, 253, 0) 70%);
    animation: floatOrb 8s ease-in-out infinite;
}

.hero .container {
    max-width: 1080px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 40px;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-image img {
    width: 100%;
    margin-left: auto;
    margin-right: -60px;
    margin-bottom: 0;
    display: block;
    max-width: none;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.section#topo.section.hero {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.btn {
    display: inline-block;
    margin-top: 24px;
    background: #fff;
    color: #29406C;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
    animation: btnPulse 1.7s ease-in-out infinite;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.03);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
}

#dor {
    background: #ffffff;
}

#publico {
    background: #E0EBFF;
}

#publico .label {
    color: #204996;
}

#publico h2 {
    color: #29406C;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.audience-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.13);
}

.audience-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #E0EBFF;
    border-radius: 10px;
    margin-bottom: 4px;
    color: #204996;
}

.audience-icon svg {
    width: 20px;
    height: 20px;
}

.audience-card strong {
    font-size: 15px;
    font-weight: 700;
    color: #29406C;
}

.audience-card p {
    font-size: 14px;
    color: #29406C;
    margin: 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.problem-card {
    background: #FFF0F0;
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(192, 57, 43, 0.12);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFD6D6;
    border-radius: 12px;
    color: #C0392B;
}

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

.problem-card p {
    font-size: 15px;
    color: #7B2020;
    margin: 0;
}

.servicos {
    background: #ffffff;
}

.service-card h3 {
    color: #29406C;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #EEF4FF;
    border-radius: 12px;
    margin-bottom: 8px;
    color: #204996;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

#quem-somos {
    background: #29406C;
    color: #ffffff;
}

#quem-somos .label {
    color: #B5CFFF;
}

#quem-somos h2 {
    color: #ffffff;
}

#quem-somos p {
    color: #E0EBFF;
}

#depoimentos {
    background: #E0EBFF;
}

#depoimentos .label {
    color: #204996;
}

#depoimentos h2 {
    color: #242E41;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    min-height: 350px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.13);
}

.testimonial-quote {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #E0EBFF;
    border-radius: 10px;
    color: #204996;
}

.testimonial-quote svg {
    width: 18px;
    height: 18px;
}

.testimonial-stars {
    font-size: 18px;
    color: #F5A623;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #29406C;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #E0EBFF;
    padding-top: 12px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-size: 15px;
    color: #242E41;
}

.testimonial-author span {
    font-size: 13px;
    color: #29406C;
}

#faq {
    background: #ffffff;
}

#faq .label {
    color: #204996;
}

#faq h2 {
    color: #242E41;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
}

.faq-item {
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #242E41;
    text-align: left;
    transition: background 0.2s ease;
    animation: none;
    box-shadow: none;
}

.faq-question:hover {
    background: #EEF4FF;
}

.faq-question[aria-expanded="true"] {
    color: #204996;
    background: #EEF4FF;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #204996;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 18px 22px 22px;
    font-size: 15px;
    color: #29406C;
    margin: 0;
}

.form-section {
    background: #29406C;
    color: #ffffff;
    text-align: center;
}

.form-section .label {
    color: #B5CFFF;
}

.form-section h2 {
    color: #ffffff;
}

.form-section-subtitle {
    color: #E0EBFF;
    font-size: 16px;
    margin-top: 12px;
}

.motivos,
.para-quem {
    background: inherit;
}

.quem-somos {
    position: relative;
}

.quem-somos-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 56px;
}

.quem-somos-texto {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quem-somos-texto h2,
.quem-somos-texto p {
    margin: 0;
}

.quem-somos-imagem img {
    width: 380px;
    height: 480px;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    display: block;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.quem-somos-imagem img:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 36px 72px rgba(0, 0, 0, 0.38);
}

.quem-somos::after {
    content: "";
    position: absolute;
    right: 7%;
    top: 24px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 72%);
    pointer-events: none;
}

.pre-form-cta {
    background: #204996;
    color: #ffffff;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.service-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.service-card:nth-child(2)::before {
    background: linear-gradient(90deg, #1d4ed8, #6366f1);
}

.service-card:nth-child(3)::before {
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
}

.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.22);
    border-color: #93c5fd;
}

.service-card.is-visible:hover {
    transform: translateY(-6px) scale(1.03);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 10px;
}

.service-card ul {
    margin-bottom: 16px;
}

.service-cta {
    display: inline-block;
    margin-top: auto;
    background: #1d4ed8;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(29, 78, 216, 0.25);
    animation: btnPulseSoft 1.9s ease-in-out infinite;
    align-self: center;
    text-align: center;
}

.service-cta:hover {
    transform: translateY(-2px);
    background: #1e40af;
    box-shadow: 0 12px 22px rgba(30, 64, 175, 0.32);
}

.check-list {
    list-style: none;
    padding-left: 0;
    max-width: 780px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease;
    transform-origin: left center;
    cursor: default;
}

.check-list li:hover {
    transform: scale(1.03);
    color: #1d4ed8;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1d4ed8;
}

.form-container {
    max-width: 860px;
    margin: 0 auto;
}

.form-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #242E41;
    text-align: center;
    margin-bottom: 24px;
}

.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.22);
    margin-top: 36px;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
}

.field-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-wrap label {
    font-size: 14px;
    font-weight: 600;
    color: #29406C;
}

.req {
    color: #C0392B;
}

.opt {
    font-weight: 400;
    color: #64748b;
    font-size: 13px;
}

.field-input-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #7B96BB;
    pointer-events: none;
}

.field-input-wrap input,
.field-input-wrap select {
    padding-left: 44px;
}

input, select, textarea, button {
    font-size: 16px;
    border-radius: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2eaf5;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

textarea::placeholder {
    font-size: 16px;
    color: #64748b;
}

button {
    background: #1d4ed8;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.32);
    animation: btnPulse 1.6s ease-in-out infinite;
}

button:hover {
    transform: translateY(-2px);
    background: #1e40af;
    box-shadow: 0 14px 30px rgba(30, 64, 175, 0.4);
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    animation: none;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.h-captcha {
    display: flex;
    justify-content: center;
    margin: 8px 0 6px;
}

#result {
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}

.footer {
    background: #242E41;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-links {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #dbeafe;
    text-decoration: underline;
    font-weight: 600;
}

/* ── STICKY ── */

.sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    background: #1d4ed8;
    color: #fff;
    padding: 14px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    animation: btnPulse 1.45s ease-in-out infinite;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.sticky:hover {
    transform: translateY(-2px) scale(1.02);
    background: #1e40af;
}

/* ── Consent banner ── */

.consent-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9000;
    background: rgba(15, 23, 42, 0.96);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.45);
}

.consent-banner[hidden] {
    display: none !important;
}

.consent-banner p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    max-width: 780px;
}

.consent-banner p a {
    color: #93c5fd;
    font-weight: 700;
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.consent-btn {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    animation: none !important;
    box-shadow: none;
    line-height: 1.2;
}

.consent-reject {
    background: #334155;
    color: #fff;
    border: 1px solid #475569;
}

.consent-accept {
    background: #2563eb;
    color: #fff;
    border: 1px solid #3b82f6;
}

.consent-reject:hover,
.consent-accept:hover {
    transform: translateY(-1px);
}

.footer-link-btn {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #93c5fd;
    background: rgba(147, 197, 253, 0.18);
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    animation: none !important;
    box-shadow: none;
}

.footer-link-btn:hover {
    transform: translateY(-1px);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.instagram-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.instagram-link svg {
    width: 28px;
    height: 28px;
}

.thank-you-links {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.thank-you-links a {
    color: #dbeafe;
    font-weight: 600;
    text-decoration: underline;
}

.privacy-content {
    max-width: 860px;
}

.privacy-content h2 {
    margin-top: 20px;
}

.privacy-content p {
    font-size: 16px;
    margin-top: 8px;
}

.policy-updated {
    font-size: 14px !important;
    color: #334155;
    margin-top: 6px !important;
}

.privacy-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-actions .btn,
.privacy-actions .footer-link-btn {
    margin-top: 0;
    padding: 12px 18px;
    min-height: 46px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.privacy-actions .btn {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    animation: btnPulse 1.7s ease-in-out infinite;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.32);
}

.privacy-actions .btn:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-1px);
}

.privacy-actions .footer-link-btn {
    color: #1e293b;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    animation: none !important;
    box-shadow: none;
}

.privacy-actions .footer-link-btn:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.thank-you-page {
    min-height: 100dvh;
    display: flex;
}

.thank-you-page main {
    flex: 1;
    display: flex;
}

.thank-you-hero {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.thank-you-hero .container {
    max-width: 780px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ── Keyframes ── */

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(29, 78, 216, 0.32);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 18px 34px rgba(29, 78, 216, 0.55);
    }
}

@keyframes btnPulseSoft {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(29, 78, 216, 0.25);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 14px 24px rgba(29, 78, 216, 0.4);
    }
}

@keyframes heroShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes bgShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(14px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Scroll animations ── */

[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
    transform: translateY(48px);
}

[data-animate="fade-left"] {
    transform: translateX(-60px);
}

[data-animate="fade-right"] {
    transform: translateX(60px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

[data-delay="1"] {
    transition-delay: 0.1s;
}

[data-delay="2"] {
    transition-delay: 0.2s;
}

[data-delay="3"] {
    transition-delay: 0.3s;
}

[data-delay="4"] {
    transition-delay: 0.4s;
}

[data-delay="5"] {
    transition-delay: 0.5s;
}

/* ── Reduced motion ── */

@media(prefers-reduced-motion:reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================================
   MEDIA QUERIES — bloco único 768px (todos os estilos reunidos)
   ================================================================ */

@media(max-width:768px) {

    /* Geral */
    .section {
        padding: 72px 0;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    .form-container {
        padding: 22px;
    }

    /* Hero */
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-image {
        align-items: flex-end;
        justify-content: center;
    }

    .hero-image img {
        width: 80%;
        max-width: 80%;
        margin-right: 0;
        margin-bottom: 0;
        display: block;
    }

    /* Grids */
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    /* Quem somos */
    .quem-somos-layout {
        grid-template-columns: 1fr;
    }

    .quem-somos-imagem {
        display: flex;
        justify-content: center;
    }

    .quem-somos-imagem img {
        width: 280px;
        height: 360px;
    }

    /* Sticky — sobe para não colidir com o consent banner */
    .sticky {
        bottom: 80px;
        right: 12px;
    }

    /* Consent banner */
    .consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .consent-actions {
        width: 100%;
    }

    .consent-btn {
        flex: 1;
    }

    .footer-link-btn {
        width: 100%;
    }

}

/* ── Thank you page ── */

@keyframes ty-bg-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes ty-card-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ty-page {
    min-height: 100vh;
    background: #242E41;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    animation: ty-bg-fade 0.5s ease both;
}

.ty-card {
    background: #ffffff;
    max-width: 560px;
    width: 100%;
    border-radius: 20px;
    padding: 48px 48px 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.32);
}

.ty-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.ty-icon-wrap svg {
    width: 36px;
    height: 36px;
}

.ty-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #242E41;
    margin-bottom: 12px;
}

.ty-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #204996;
    margin-bottom: 20px;
    line-height: 1.5;
}

.ty-body {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
    margin-bottom: 28px;
}

.ty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.ty-btn-primary {
    background: #242E41;
    color: #fff;
    border: 2px solid #242E41;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, border-color 0.2s;
    animation: none;
    box-shadow: none;
}

.ty-btn-primary:hover {
    background: #29406C;
    border-color: #29406C;
}

.ty-btn-secondary {
    background: transparent;
    color: #242E41;
    border: 2px solid #242E41;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s;
    animation: none;
    box-shadow: none;
}

.ty-btn-secondary:hover {
    background: #242E41;
    color: #fff;
}

.ty-btn-secondary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ty-footer-links {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    animation: ty-card-in 0.6s ease 0.2s both;
}

.ty-footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

.ty-footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.ty-cookie-btn {
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(147, 197, 253, 0.6);
    background: rgba(147, 197, 253, 0.12);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
    animation: none !important;
    box-shadow: none;
    line-height: 1.5;
}

.ty-cookie-btn:hover {
    background: rgba(147, 197, 253, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

@media(max-width:600px) {
    .ty-card {
        padding: 36px 24px 32px;
    }

    .ty-title {
        font-size: 1.6rem;
    }

    .ty-btn-primary,
    .ty-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}