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

:root {
    --primary: #0d264c;
    --primary-soft: #1d4f91;
    --accent: #00ffff;
    --accent-dark: #00d6ff;
    --surface: #ffffff;
    --surface-soft: #f5f8fd;
    --border: #d7dfeb;
    --text: #1f2937;
    --muted: #5f6f85;
    --success: #25d366;
    --shadow: 0 18px 45px rgba(13, 38, 76, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #eef4fb;
    overflow-x: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button:focus,
input:focus,
select:focus,
summary:focus {
    outline: 2px solid #7deeff;
    outline-offset: 2px;
}

.container,
.hero-container,
.nav-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: #0d264c;
    box-shadow: 0 8px 30px rgba(13, 38, 76, 0.14);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.75rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent);
}

.hero-section {
    position: relative;
    padding: 132px 0 84px;
    min-height: 860px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13, 38, 76, 0.95) 0%, rgba(13, 38, 76, 0.86) 36%, rgba(13, 38, 76, 0.58) 60%, rgba(13, 38, 76, 0.28) 100%),
        url("../images/hero.png") center/cover no-repeat;
}

.hero-section::before {
    display: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 2.5rem;
    align-items: center;
}

.hero-left {
    max-width: 620px;
    color: #ffffff;
    padding: 1.25rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.15rem;
}

.hero-subtitle {
    max-width: 560px;
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.75rem;
}

.hero-points {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-point i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-right {
    position: relative;
    max-width: 400px;
    margin-left: auto;
}

.form-container {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form,
#whatsapp-pre-chat-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
#whatsapp-pre-chat-form input,
#whatsapp-pre-chat-form select {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    color: var(--text);
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select,
#whatsapp-pre-chat-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2362758f' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.contact-form input:focus,
.contact-form select:focus,
#whatsapp-pre-chat-form input:focus,
#whatsapp-pre-chat-form select:focus {
    border-color: #7deeff;
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.15);
}

.form-group label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.conditional-field.is-hidden {
    display: none;
}

.iti,
.iti--allow-dropdown {
    width: 100%;
}

.consent-check {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(13, 38, 76, 0.08);
    border-radius: 14px;
    background: #f8fcff;
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.45;
}

.consent-check input {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin: 0.15rem 0 0;
    padding: 0;
    border-radius: 6px;
    border: 1px solid #aebfd2;
    box-shadow: none;
    background: #ffffff;
    accent-color: var(--accent-dark);
    flex-shrink: 0;
}

.consent-check span {
    display: block;
    min-width: 0;
}

.captcha-container {
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
}

.form-microcopy {
    text-align: center;
    font-size: 0.92rem;
    color: var(--muted);
}

.form-legal {
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
}

.form-legal a {
    color: var(--primary-soft);
    font-weight: 600;
}

.form-legal a:hover {
    color: var(--accent-dark);
}

.highlight-amount {
    color: var(--accent-dark);
    font-weight: 800;
}

.field-error {
    color: #d92d20;
    font-size: 0.84rem;
    margin-top: 0.4rem;
}

.btn-primary,
.btn-whatsapp-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 54px;
    padding: 1rem 1.55rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(0, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover,
.btn-whatsapp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(0, 255, 255, 0.24);
    filter: saturate(1.05);
}

.btn-block {
    width: 100%;
}

.btn-large {
    min-width: 240px;
}

.section-heading,
.subsection-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading-left {
    text-align: left;
}

.section-heading h2,
.subsection-heading h3 {
    color: var(--primary);
    line-height: 1.12;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.subsection-heading h3 {
    font-size: 1.55rem;
    margin-bottom: 0.35rem;
}

.subsection-heading p,
.bridge-text,
.cta-copy,
.proof-intro p {
    color: var(--muted);
}

.benefits-section,
.process-section,
.faq-section,
.cta-section,
.bridge-section,
.results-section {
    padding: 88px 0;
}

.benefits-section,
.results-section {
    background: var(--surface-soft);
}

.bridge-section,
.faq-section {
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.benefit-item,
.step,
.testimonial,
.stat-card,
.bridge-card,
.faq-item,
.sponsor-image-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.benefit-item.is-visible,
.step.is-visible,
.testimonial.is-visible,
.stat-card.is-visible,
.bridge-card.is-visible,
.faq-item.is-visible,
.sponsor-image-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13, 38, 76, 0.06);
}

.benefit-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.16) 0%, rgba(0, 214, 255, 0.22) 100%);
    color: var(--primary-soft);
    font-size: 1.5rem;
}

.benefit-item h3,
.step h3,
.bridge-card h3,
.stat-card strong,
.testimonial h4 {
    color: var(--primary);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
}

.benefit-item p,
.step p,
.stat-card p,
.faq-item p,
.bridge-card p {
    color: var(--muted);
}

.bridge-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.bridge-text {
    margin-bottom: 1.5rem;
}

.bridge-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.bridge-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.bridge-list i {
    color: var(--success);
}

.bridge-card {
    background: linear-gradient(145deg, #0d264c 0%, #173862 100%);
    padding: 2rem;
    border-radius: 26px;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.bridge-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.75;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.step {
    position: relative;
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13, 38, 76, 0.06);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(13, 38, 76, 0.12);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.16) 0%, rgba(0, 214, 255, 0.24) 100%);
    color: var(--primary);
    font-size: 1.6rem;
}

.step h3 {
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.proof-intro {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13, 38, 76, 0.06);
}

.stat-card strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
}

.stat-card-highlight {
    background: linear-gradient(145deg, #0d264c 0%, #173862 100%);
    color: #ffffff;
}

.stat-card-highlight p,
.stat-card-highlight small {
    color: rgba(255, 255, 255, 0.84);
}

.counter-number {
    display: block;
    font-size: clamp(3rem, 6vw, 4.6rem);
    line-height: 1;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.stat-card-highlight .counter-number::before {
    content: "+";
}

.testimonials-block {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.testimonial h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.testimonial video {
    width: 100%;
    border-radius: 16px;
    background: #dce7f6;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.sponsor-image-item {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
    cursor: zoom-in;
}

.sponsor-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.sponsor-image-item:hover img {
    transform: scale(1.02);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 10px 24px rgba(13, 38, 76, 0.06);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    padding-right: 1.5rem;
    position: relative;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    color: var(--primary-soft);
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding-top: 0.9rem;
}

.cta-section {
    background: linear-gradient(180deg, #eef4fb 0%, #dfeafb 100%);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0d264c 0%, #173862 100%);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 0.8rem;
}

.cta-copy {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.84);
}

.modal-open {
    overflow: hidden;
}

.footer {
    background: #091b36;
    color: rgba(255, 255, 255, 0.8);
    padding: 2.75rem 0 1.5rem;
}

.footer-header-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-header-logos img {
    max-height: 50px;
    width: auto;
    opacity: 0.92;
}

.footer-main-logo {
    max-height: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li + li {
    margin-top: 0.65rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-column p {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.7rem;
}

.footer-column p a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-column p i {
    color: #7deeff;
    margin-top: 0.18rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.footer-social a {
    color: #ffffff;
    font-size: 1.35rem;
}

.payment-title {
    margin-top: 1rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-methods img {
    max-height: 26px;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    opacity: 0.75;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 15, 31, 0.88);
    padding: 2rem;
}

.lightbox-overlay.hidden {
    display: none;
}

.lightbox-image {
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    color: #ffffff;
    font-size: 2.3rem;
    cursor: pointer;
}

.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1090;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--success);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.3);
    cursor: pointer;
}

.whatsapp-fab:hover {
    transform: translateY(-3px);
}

.whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(4, 15, 31, 0.65);
}

.whatsapp-modal.hidden {
    display: none;
}

.whatsapp-modal-content {
    position: relative;
    width: min(100%, 520px);
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.whatsapp-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.8rem;
    color: #90a0b7;
    cursor: pointer;
}

.whatsapp-thank-you {
    text-align: center;
    padding-top: 0.5rem;
}

.whatsapp-thank-you h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(4, 15, 31, 0.72);
}

.legal-modal.hidden {
    display: none;
}

.legal-modal-content {
    position: relative;
    width: min(100%, 980px);
    max-height: 92vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.legal-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: transparent;
    color: #90a0b7;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.legal-modal-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-right: 2.2rem;
}

.legal-modal-company {
    background: #f6f9fe;
    border: 1px solid rgba(13, 38, 76, 0.08);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.2rem;
}

.legal-modal-company p + p {
    margin-top: 0.2rem;
}

.legal-modal-company a {
    color: var(--primary-soft);
    font-weight: 600;
}

.legal-modal-section {
    border: 1px solid rgba(13, 38, 76, 0.08);
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    background: #fbfdff;
}

.legal-modal-section + .legal-modal-section {
    margin-top: 1rem;
}

.legal-modal-section h4 {
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.legal-modal-section ul {
    margin: 0.7rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.6rem;
}

.legal-modal-section.legal-focus {
    border-color: rgba(0, 214, 255, 0.48);
    box-shadow: inset 0 0 0 1px rgba(0, 214, 255, 0.18);
}

@media (max-width: 1200px) {
    .hero-section {
        min-height: 780px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 2rem;
    }

    .hero-left {
        max-width: 560px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 4.8vw, 3.9rem);
    }
}

@media (max-width: 1024px) {
    .benefits-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bridge-layout,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 920px) {
    .hero-section {
        min-height: auto;
        padding: 116px 0 72px;
        background:
            linear-gradient(180deg, rgba(13, 38, 76, 0.96) 0%, rgba(13, 38, 76, 0.88) 42%, rgba(13, 38, 76, 0.76) 100%),
            url("../images/hero.png") center/cover no-repeat;
    }

    .hero-section::before {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
    }

    .hero-right {
        margin-left: 0;
    }
}

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

    .hero-section {
        padding: 104px 0 64px;
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(13, 38, 76, 0.96) 0%, rgba(13, 38, 76, 0.88) 42%, rgba(13, 38, 76, 0.76) 100%),
            url("../images/hero.png") center/cover no-repeat;
    }

    .hero-section::before {
        display: none;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .benefits-grid,
    .process-steps,
    .testimonials-grid,
    .sponsors-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-container,
    .benefit-item,
    .step,
    .testimonial,
    .stat-card,
    .bridge-card,
    .cta-box,
    .whatsapp-modal-content,
    .legal-modal-content {
        padding: 1.5rem;
    }

    .section-heading h2,
    .cta-box h2 {
        font-size: 2rem;
    }

    .footer-header-logos {
        justify-content: center;
    }

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

    .footer-column h4,
    .footer-column ul,
    .footer-column p,
    .footer-social,
    .payment-methods {
        text-align: center;
        justify-content: center;
    }

    .footer-column p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container,
    .nav-container {
        width: min(100% - 24px, 1200px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-point {
        align-items: flex-start;
        padding: 0.9rem;
    }

    .hero-point i {
        width: 38px;
        height: 38px;
    }

    .btn-primary,
    .btn-whatsapp-submit {
        width: 100%;
    }

    .form-container,
    .whatsapp-modal-content,
    .cta-box {
        border-radius: 20px;
        padding: 1.25rem;
    }

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

    .g-recaptcha {
        transform: scale(0.88);
        transform-origin: center;
    }
}
