* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #102f33;
    background: #f4f7f8;
    animation: pageFadeIn .55s ease both;
}

a {
    color: inherit;
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #e4ecee;
    backdrop-filter: blur(14px);
    transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .98);
    border-color: transparent;
    box-shadow: 0 14px 34px rgba(10, 35, 39, .12);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary);
    min-width: 0;
}

.brand img {
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
    transition: transform .22s ease, filter .22s ease;
}

.brand:hover img,
.brand:hover .brand-mark {
    transform: translateY(-1px) scale(1.03);
    filter: drop-shadow(0 10px 18px rgba(10, 35, 39, .16));
}

.brand strong {
    font-size: 16px;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-weight: 900;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    text-decoration: none;
    color: #203a40;
    transition: color .2s ease, transform .2s ease;
}

.main-nav a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.main-nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.nav-cta,
.btn {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 0 20px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    overflow: hidden;
    isolation: isolate;
}

.nav-cta::after,
.btn::after {
    content: "";
    position: absolute;
    inset: -40% auto -40% -80%;
    z-index: -1;
    width: 55%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-18deg);
    transition: left .6s ease;
}

.nav-cta:hover::after,
.btn:hover::after {
    left: 125%;
}

.nav-cta,
.btn-primary {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(0, 168, 120, .22);
}

.btn-secondary {
    background: color-mix(in srgb, var(--primary) 12%, #fff);
    color: var(--secondary);
    border-color: color-mix(in srgb, var(--primary) 40%, #cfdcdf);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .08);
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(10, 35, 39, .18);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #d8e3e5;
    background: #fff;
    border-radius: 10px;
    color: var(--secondary);
    font-weight: 900;
}

.site-alert {
    position: fixed;
    top: 88px;
    left: 50%;
    z-index: 80;
    transform: translateX(-50%);
    width: min(620px, calc(100% - 32px));
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: 0 16px 38px rgba(10, 35, 39, .16);
    font-weight: 700;
}

.site-alert.success {
    background: #e8fff5;
    color: #066646;
}

.site-alert.warning {
    background: #fff8df;
    color: #7a5a00;
}

.site-alert.error {
    background: #ffeaea;
    color: #8b1f1f;
}

.hero {
    position: relative;
    min-height: 650px;
    color: #fff;
    background: #000;
    overflow: hidden;
    isolation: isolate;
}

.hero-media {
    content: "";
    position: absolute;
    inset: -24px;
    z-index: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    -webkit-filter: grayscale(100%) saturate(0%) contrast(1.12) brightness(.76) !important;
    filter: grayscale(100%) saturate(0%) contrast(1.12) brightness(.76) !important;
    opacity: .78;
    transform: translate(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px)) scale(1.04);
    transition: transform .25s ease-out, filter .25s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, var(--hero-overlay-opacity, .78)) !important;
}

.hero-overlay::before,
.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-overlay::before {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .10), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 35%, rgba(0, 0, 0, .22));
}

.hero-overlay::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .10), transparent 42%, rgba(0, 0, 0, .32));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, .08) 42% 43%, transparent 43% 100%),
        linear-gradient(45deg, transparent 0 72%, rgba(255, 255, 255, .06) 72% 73%, transparent 73% 100%);
    opacity: .45;
}

.hero-inner {
    position: relative;
    z-index: 3;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 0 72px;
}

.hero-copy {
    width: min(790px, 100%);
    text-align: center;
    animation: heroRise .85s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-layout_2 .hero-inner {
    justify-content: flex-start;
}

.hero-layout_2 .hero-copy {
    text-align: left;
    width: min(660px, 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 0 14px;
    color: var(--primary);
    background: rgba(255, 255, 255, .94);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    margin: 20px 0 16px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.04;
    letter-spacing: 0;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 14px 38px rgba(0, 0, 0, .24);
}

.hero p {
    width: min(760px, 100%);
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .94);
}

.hero-layout_2 p {
    margin-left: 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-layout_2 .hero-actions {
    justify-content: flex-start;
}

.section {
    padding: 88px 0;
}

.section-heading {
    width: min(720px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading .eyebrow {
    color: #fff;
    background: var(--secondary);
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
    margin: 16px 0 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    color: #102f33;
    letter-spacing: 0;
}

.section-heading p,
.about-copy p,
.contact-copy p {
    color: #587075;
    line-height: 1.7;
    font-size: 16px;
}

.promo-box {
    position: relative;
    overflow: hidden;
    width: min(720px, 100%);
    margin: 0 auto 56px;
    padding: 34px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(18, 60, 64, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(10, 35, 39, .14);
}

.promo-box span,
.featured-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 14px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-box h2 {
    margin: 18px 0 10px;
    font-size: 30px;
}

.promo-box p {
    color: #587075;
    line-height: 1.6;
}

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

.plan-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: #fff;
    border: 1px solid #dae6e8;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(18, 60, 64, .06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.plan-card.is-featured {
    border-color: var(--primary);
    box-shadow: 0 22px 55px rgba(0, 168, 120, .16);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--primary) 55%, #d8e4e6);
    box-shadow: 0 30px 74px rgba(10, 35, 39, .16);
}

.featured-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--secondary);
}

.plan-card p,
.plan-card li {
    color: #587075;
    line-height: 1.55;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 22px 0;
    color: var(--primary);
    font-size: 46px;
    font-weight: 900;
}

.price small,
.price span {
    font-size: 15px;
    color: #486267;
}

.plan-card ul {
    display: grid;
    gap: 10px;
    min-height: 118px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.plan-card li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 900;
    margin-right: 8px;
}

.plans-section.layout_2 .plan-grid {
    align-items: stretch;
}

.plans-section.layout_2 .plan-card {
    background: linear-gradient(180deg, #fff, #f8fbfb);
}

.services-section {
    background: linear-gradient(135deg, var(--secondary), color-mix(in srgb, var(--secondary) 75%, var(--primary)));
    color: #fff;
}

.services-section .section-heading h2,
.services-section .section-heading p {
    color: #fff;
}

.services-section .section-heading .eyebrow {
    color: var(--secondary);
    background: #fff;
}

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

.service-item {
    position: relative;
    overflow: hidden;
    min-height: 172px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .52);
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .16);
}

.service-dot {
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: var(--primary);
    margin-bottom: 18px;
}

.service-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.service-item p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
    margin: 0;
}

.services-section.layout_2 .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-section.layout_2 .service-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    min-height: 132px;
}

.services-section.layout_2 .service-dot {
    margin-top: 8px;
}

.benefits-section {
    background: #fff;
}

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

.benefit-item {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background: #f4f7f8;
    border: 1px solid #e1eaec;
    border-radius: 10px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.benefit-item:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--primary) 36%, #e1eaec);
    background: #fff;
    box-shadow: 0 24px 55px rgba(10, 35, 39, .12);
}

.benefit-item span {
    color: var(--primary);
    font-weight: 900;
    font-size: 14px;
}

.benefit-item h3 {
    color: var(--secondary);
    margin: 14px 0 10px;
}

.benefit-item p {
    color: #587075;
    line-height: 1.6;
}

.benefits-section.layout_2 .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-section.layout_2 .benefit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 14px;
}

.benefits-section.layout_2 .benefit-item span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 12%, #fff);
}

.testimonials-section {
    background:
        linear-gradient(180deg, #f4f7f8, #fff);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #dfe9eb;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(18, 60, 64, .08);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.promo-box::after,
.plan-card::after,
.service-item::after,
.benefit-item::after,
.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, .62), transparent 18rem),
        linear-gradient(135deg, transparent, rgba(255, 255, 255, .14));
    opacity: 0;
    transition: opacity .28s ease;
}

.promo-box:hover::after,
.plan-card:hover::after,
.service-item:hover::after,
.benefit-item:hover::after,
.testimonial-card:hover::after {
    opacity: .55;
}

.promo-box > *,
.plan-card > *,
.service-item > *,
.benefit-item > *,
.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(.35);
    transform-origin: left;
    transition: transform .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--primary) 38%, #dfe9eb);
    box-shadow: 0 30px 70px rgba(10, 35, 39, .14);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.quote-mark {
    height: 46px;
    color: color-mix(in srgb, var(--primary) 72%, #ffffff);
    font-size: 84px;
    line-height: .8;
    font-weight: 900;
}

.testimonial-card p {
    color: #405b60;
    line-height: 1.7;
    margin: 12px 0 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-author span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author small {
    margin-top: 3px;
    color: #6a7c80;
}

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

.testimonials-section.layout_2 .testimonial-card {
    min-height: 0;
}

.about-section {
    background: #f4f7f8;
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.about-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(18, 60, 64, .14);
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.about-media:hover img {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 30px 70px rgba(10, 35, 39, .18);
    filter: saturate(1.04) contrast(1.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.stats-grid div {
    padding: 18px;
    background: #fff;
    border: 1px solid #e0e9eb;
    border-radius: 10px;
    transition: transform .24s ease, box-shadow .24s ease;
}

.stats-grid div:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(10, 35, 39, .1);
}

.stats-grid strong {
    display: block;
    color: var(--primary);
    font-size: 28px;
}

.stats-grid span {
    color: #587075;
    font-size: 13px;
}

.about-section.layout_2 .about-grid {
    grid-template-columns: 1fr;
}

.about-section.layout_2 .about-media {
    order: 2;
}

.contact-section {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.contact-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: #486267;
    font-weight: 700;
}

.contact-list li::before {
    content: "•";
    color: var(--primary);
    margin-right: 10px;
}

.contact-form {
    padding: 30px;
    background: #fff;
    border: 1px solid #dce7e9;
    border-top: 4px solid var(--primary);
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(18, 60, 64, .08);
    transition: transform .28s ease, box-shadow .28s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 74px rgba(10, 35, 39, .14);
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: #15383d;
    font-size: 13px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cfdbde;
    border-radius: 8px;
    padding: 13px;
    font: inherit;
    color: #15383d;
    background: #f8fafb;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-section.layout_2 .contact-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
}

.contact-section.layout_2 .contact-copy {
    text-align: center;
}

.site-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, .78);
    padding: 44px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr;
    gap: 42px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-brand {
    color: #fff;
    margin-bottom: 14px;
}

.site-footer h3 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 16px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    text-decoration: none;
}

.site-footer p {
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 18px;
    font-size: 13px;
    text-align: center;
}

.site-footer.layout_2 {
    background: linear-gradient(135deg, #102f33, var(--secondary));
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #20d466;
    color: #fff;
    box-shadow: 0 16px 36px rgba(18, 60, 64, .24);
    transition: transform .22s ease, box-shadow .22s ease;
    animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 22px 45px rgba(10, 35, 39, .28);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: #fff;
        border: 1px solid #dce7e9;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(18, 60, 64, .14);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .hero,
    .hero-inner {
        min-height: 580px;
    }

    .plan-grid,
    .service-grid,
    .benefit-grid,
    .testimonial-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-section.layout_2 .service-grid,
    .benefits-section.layout_2 .benefit-grid,
    .testimonials-section.layout_2 .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand strong {
        max-width: 170px;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .hero {
        min-height: 620px;
    }

    .hero-inner {
        min-height: 620px;
        padding-top: 78px;
    }

    .hero-copy,
    .hero-layout_2 .hero-copy {
        text-align: center;
    }

    .hero-layout_2 .hero-actions {
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 64px 0;
    }

    .promo-box,
    .plan-card,
    .contact-form {
        padding: 22px;
    }

    .form-row,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

.animate-ready .section-heading,
.animate-ready .promo-box,
.animate-ready .plan-card,
.animate-ready .service-item,
.animate-ready .benefit-item,
.animate-ready .testimonial-card,
.animate-ready .about-media,
.animate-ready .about-copy,
.animate-ready .contact-copy,
.animate-ready .contact-form {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2, .8, .2, 1),
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease;
}

.animate-ready .is-visible {
    opacity: 1;
    transform: none;
}

.animate-ready .promo-box.is-visible:hover,
.animate-ready .contact-form.is-visible:hover {
    transform: translateY(-5px);
}

.animate-ready .plan-card.is-visible:hover,
.animate-ready .testimonial-card.is-visible:hover {
    transform: translateY(-8px);
}

.animate-ready .service-item.is-visible:hover,
.animate-ready .benefit-item.is-visible:hover {
    transform: translateY(-6px);
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 16px 36px rgba(18, 60, 64, .24);
    }
    50% {
        box-shadow: 0 16px 36px rgba(32, 212, 102, .34);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Patch: footer sin logo, grillas centradas y tarjetas con mas presencia */
.plan-grid,
.service-grid,
.benefit-grid,
.testimonial-grid {
    justify-content: center;
}

.plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 330px));
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 270px));
}

.benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 280px));
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 350px));
}

.services-section.layout_2 .service-grid,
.benefits-section.layout_2 .benefit-grid,
.testimonials-section.layout_2 .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 520px));
    justify-content: center;
}

.plan-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.015);
}

.service-item:hover,
.benefit-item:hover,
.promo-box:hover {
    transform: translateY(-8px) scale(1.012);
}

.site-footer {
    color: #fff;
    padding: 58px 0 22px;
}

.footer-name-block {
    text-align: center;
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-bottom: 34px;
}

.footer-name-block strong {
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: 0;
}

.footer-name-block p {
    width: min(720px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    align-items: start;
    text-align: left;
}

.footer-column h3 {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0;
}

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

.footer-column a {
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    margin: 0;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.08);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .48);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.footer-social svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column a:hover {
        transform: translateY(-2px);
    }
}

/* Patch: ventajas 4 en fila, footer 3 columnas y Chatbase */
.benefits-section .benefit-grid,
.benefits-section.layout_2 .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    align-items: stretch;
}

.benefits-section .benefit-item {
    min-width: 0;
}

.site-footer .footer-grid {
    grid-template-columns: minmax(260px, 1.2fr) minmax(180px, .8fr) minmax(240px, 1fr);
    max-width: 1120px;
    gap: 42px;
    text-align: left;
}

.footer-brand-column {
    display: grid;
    align-content: start;
    gap: 14px;
}

.footer-site-name {
    display: block;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.footer-brand-column p {
    margin: 0;
}

body.chatbase-enabled .whatsapp-float {
    bottom: 96px;
}

@media (max-width: 1040px) {
    .benefits-section .benefit-grid,
    .benefits-section.layout_2 .benefit-grid {
        grid-template-columns: repeat(2, minmax(min(100%, 260px), 360px));
    }
}

@media (max-width: 820px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-column,
    .footer-contact-column {
        justify-items: center;
    }
}

@media (max-width: 620px) {
    .benefits-section .benefit-grid,
    .benefits-section.layout_2 .benefit-grid {
        grid-template-columns: minmax(min(100%, 260px), 360px);
    }

    body.chatbase-enabled .whatsapp-float {
        bottom: 88px;
    }
}
