:root {
    --bs-primary: #5f5ed5;
    --bs-secondary: #a153d8;
    --bs-light: #f4f2ff;
    --bs-dark: #201d49;
    --bs-body-color: #5d6288;
    --bs-body-bg: #f8f7ff;
    --paper: #ffffff;
    --sky: #6996dc;
    --aqua: #5decf2;
    --lavender: #dbd6f2;
    --soft-border: 1px solid rgba(95, 94, 213, 0.12);
    --shadow: 0 24px 60px rgba(66, 71, 164, 0.14);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
    font-family: "Cormorant Garamond", serif;
    color: var(--bs-dark);
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 0;
}

p + p {
    margin-top: 1rem;
}

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

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

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    z-index: 99;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    color: #fff;
    box-shadow: 0 16px 30px rgba(95, 94, 213, 0.28);
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 18px 34px rgba(95, 94, 213, 0.36);
}

.btn-outline-soft {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(95, 94, 213, 0.16);
    color: var(--bs-dark);
    box-shadow: none;
}

.btn-lg-square {
    padding: 0;
}

.announcement-bar {
    background: linear-gradient(135deg, #25205d, #4b4dd0 58%, #6cb9f0);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.announcement-meta span {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.navbar-light {
    background: rgba(248, 247, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(95, 94, 213, 0.1);
    z-index: 1030;
}

.sticky-top.navbar-light {
    background: rgba(248, 247, 255, 0.96);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-lockup {
    gap: 0.75rem;
}

.brand-icon {
    display: block;
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 14px 28px rgba(95, 94, 213, 0.16));
}

.brand-wordmark {
    display: block;
    width: auto;
    height: 34px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 1.35rem;
    padding: 0.9rem 0;
    color: var(--bs-dark) !important;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.25rem;
    width: 0;
    height: 2px;
    margin: auto;
    background: linear-gradient(90deg, var(--bs-secondary), var(--aqua));
    transition: width 0.25s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-light .navbar-toggler {
    border: 1px solid rgba(95, 94, 213, 0.2);
    color: var(--bs-primary);
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(95, 94, 213, 0.1);
    color: var(--bs-primary);
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.eyebrow-light {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.section-shell {
    position: relative;
    padding: 6rem 0;
}

.bg-soft {
    background: linear-gradient(180deg, rgba(219, 214, 242, 0.56), rgba(248, 247, 255, 0) 85%);
}

.bg-leaf {
    background:
        radial-gradient(circle at top right, rgba(93, 236, 242, 0.2), transparent 34%),
        radial-gradient(circle at bottom left, rgba(161, 83, 216, 0.16), transparent 34%),
        #f5f4ff;
}

.section-title {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title h2 {
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    margin: 1rem 0 0.85rem;
}

.section-title p {
    color: #6c719a;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, #2a2870 0%, #5f5ed5 42%, #a153d8 74%, #5decf2 100%);
    color: #fff;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.page-hero::before {
    width: 240px;
    height: 240px;
    top: -60px;
    right: 10%;
}

.page-hero::after {
    width: 320px;
    height: 320px;
    left: -80px;
    bottom: -140px;
}

.page-hero h1 {
    max-width: 800px;
    margin: 1rem 0;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero p {
    max-width: 720px;
    font-size: 1.06rem;
    color: rgba(255, 255, 255, 0.82);
}

.header-carousel,
.page-hero,
.section-shell,
.footer {
    overflow-x: clip;
}

.header-carousel .owl-stage-outer {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 5.5rem 0 5.5rem;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: auto auto 50px -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    filter: blur(2px);
}

.hero-slide-one {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.74), transparent 18%),
        linear-gradient(135deg, #f2efff 0%, #eef3ff 42%, #e8e2ff 100%);
}

.hero-slide-two {
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 18%),
        linear-gradient(135deg, #f7f2ff 0%, #eef8ff 46%, #ede8ff 100%);
}

.hero-copy h1 {
    max-width: 680px;
    margin: 1rem 0 1.25rem;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.96;
}

.hero-copy p {
    max-width: 580px;
    font-size: 1.08rem;
    color: #687098;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}

.metric-card {
    padding: 1.2rem 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow);
}

.metric-card strong {
    display: block;
    font-size: 1.75rem;
    font-family: "Cormorant Garamond", serif;
    color: var(--bs-dark);
}

.metric-card span {
    font-size: 0.92rem;
    color: #7078a0;
}

.hero-art {
    position: relative;
    min-height: 480px;
}

.hero-disc {
    position: absolute;
    inset: 40px 75px 70px 45px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.24) 38%, transparent 60%),
        linear-gradient(180deg, rgba(95, 94, 213, 0.18), rgba(93, 236, 242, 0.2) 54%, rgba(161, 83, 216, 0.18));
}

.floating-product {
    position: absolute;
    width: 235px;
    padding: 1.4rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 28px 60px rgba(95, 94, 213, 0.15);
    backdrop-filter: blur(14px);
}

.floating-product small {
    display: block;
    margin: 1rem 0 0.45rem;
    color: var(--bs-secondary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.floating-product h3 {
    font-size: 1.95rem;
    margin-bottom: 0.45rem;
}

.floating-product p {
    font-size: 0.95rem;
    color: #6f77a0;
}

.card-a {
    top: 10px;
    right: 0;
}

.card-b {
    left: 0;
    bottom: 55px;
}

.card-c {
    right: 45px;
    bottom: -5px;
}

.hero-art-alt .card-a {
    top: 0;
    right: 28px;
}

.hero-art-alt .card-b {
    left: 18px;
    bottom: 95px;
}

.hero-art-alt .card-c {
    right: 0;
    bottom: 10px;
}

.header-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.25rem;
    display: flex;
    justify-content: space-between;
    max-width: 1380px;
    margin: 0 auto;
    pointer-events: none;
}

.header-carousel .owl-nav button {
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    background: #fff !important;
    color: var(--bs-dark) !important;
    box-shadow: var(--shadow);
    pointer-events: auto;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-carousel .owl-nav button:hover {
    background: var(--bs-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.header-carousel .owl-dots,
.product-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.header-carousel .owl-dots {
    margin: 0 0 2.25rem;
}

.product-carousel .owl-dots {
    margin-top: 2rem;
}

.header-carousel .owl-dot span,
.product-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: rgba(95, 94, 213, 0.2);
}

.header-carousel .owl-dot.active span {
    background: var(--bs-secondary);
}

.product-carousel .owl-dot.active span {
    background: var(--bs-primary);
}

.product-carousel .owl-stage {
    display: flex;
}

.product-carousel .owl-item {
    display: flex;
}

.product-carousel .owl-item .product-card {
    width: 100%;
}

.icon-shell {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(95, 94, 213, 0.16), rgba(93, 236, 242, 0.2) 55%, rgba(161, 83, 216, 0.16));
    color: var(--bs-primary);
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(95, 94, 213, 0.08);
}

.story-panel,
.mini-card,
.category-card,
.product-card,
.process-card,
.value-card,
.timeline-card,
.catalog-card,
.bundle-card,
.contact-card,
.faq-card,
.quote-card,
.social-panel,
.message-card,
.cta-banner {
    background: var(--paper);
    border: var(--soft-border);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.story-panel,
.social-panel,
.message-card,
.quote-card {
    padding: 2.4rem;
}

.story-panel h2,
.social-panel h2,
.message-card h2,
.quote-card h3,
.cta-banner h2 {
    margin: 1rem 0;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.info-stack {
    display: grid;
    gap: 1rem;
}

.mini-card,
.category-card,
.product-card,
.process-card,
.value-card,
.timeline-card,
.catalog-card,
.bundle-card,
.contact-card,
.faq-card {
    padding: 1.8rem;
}

.mini-card h3,
.category-card h3,
.product-card h3,
.process-card h3,
.value-card h3,
.timeline-card h3,
.catalog-card h3,
.bundle-card h3,
.contact-card h3,
.faq-card h3 {
    margin: 1rem 0 0.65rem;
    font-size: 2rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(95, 94, 213, 0.96), rgba(161, 83, 216, 0.96));
    color: rgba(255, 255, 255, 0.84);
}

.highlight-card h3 {
    color: #fff;
}

.pill-row,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.pill-row span,
.tag-row span {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(95, 94, 213, 0.08);
    color: var(--bs-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.product-label {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(161, 83, 216, 0.14);
    color: var(--bs-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bundle-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(219, 214, 242, 0.42));
}

.process-card strong,
.timeline-card strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bs-secondary);
}

.process-card h3,
.timeline-card h3 {
    margin-top: 0.85rem;
}

.value-card,
.contact-card,
.faq-card,
.category-card,
.catalog-card,
.product-card,
.bundle-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover,
.contact-card:hover,
.faq-card:hover,
.category-card:hover,
.catalog-card:hover,
.product-card:hover,
.bundle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(95, 94, 213, 0.18);
}

.quote-card {
    background: linear-gradient(145deg, #2a2870, #5f5ed5 54%, #8b63dd 100%);
    color: rgba(255, 255, 255, 0.84);
}

.quote-card h3 {
    color: #fff;
}

.quote-card .tag-row span {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.social-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    background: rgba(95, 94, 213, 0.05);
    border: 1px solid rgba(95, 94, 213, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-card h3 {
    margin: 0.2rem 0 0.2rem;
    font-size: 1.25rem;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.social-card p {
    color: #6f77a0;
}

.contact-link,
.social-card {
    color: inherit;
}

.contact-link {
    display: block;
}

.contact-link:hover,
.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(95, 94, 213, 0.16);
}

.message-bubble {
    margin-top: 1.5rem;
    padding: 1.35rem 1.4rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(95, 94, 213, 0.08), rgba(93, 236, 242, 0.12));
    color: var(--bs-dark);
    font-weight: 600;
}

.cta-banner {
    padding: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(219, 214, 242, 0.9));
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}

.footer {
    background: linear-gradient(145deg, #1f1d49, #3734a0 55%, #6f61df 100%);
    color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0.55rem 0.8rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.25rem;
}

.footer-lockup {
    gap: 0.85rem;
}

.footer-icon {
    display: block;
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 18px 26px rgba(26, 24, 70, 0.26));
}

.footer-wordmark {
    display: block;
    width: auto;
    height: 38px;
}

.footer .footer-brand:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.16);
}

.footer-copy {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.footer-social-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 1rem;
    margin-bottom: 0 !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff !important;
    line-height: 1;
}

.footer-social-btn i {
    font-size: 1rem;
}

.footer .footer-social-btn:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.footer h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.footer a {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease, transform 0.25s ease;
}

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 16, 47, 0.28);
    color: rgba(255, 255, 255, 0.68);
}

.copyright a {
    display: inline;
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 96px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
    z-index: 100;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float i {
    font-size: 1.2rem;
}

.whatsapp-float:hover {
    color: #fff !important;
    background: #20c25d;
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.38);
}

@media (max-width: 1399.98px) {
    .section-shell {
        padding: 5.5rem 0;
    }

    .page-hero {
        padding: 6.25rem 0 4.5rem;
    }

    .hero-slide {
        min-height: 700px;
        padding: 5rem 0;
    }

    .hero-copy h1 {
        max-width: 620px;
        font-size: clamp(3rem, 5vw, 5.2rem);
    }

    .hero-disc {
        inset: 30px 55px 55px 30px;
    }

    .floating-product {
        width: 220px;
        padding: 1.25rem;
    }

    .floating-product h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 1199.98px) {
    .section-shell {
        padding: 5rem 0;
    }

    .section-title {
        margin-bottom: 2.4rem;
    }

    .hero-slide {
        min-height: auto;
        padding: 4.5rem 0 5rem;
    }

    .hero-copy p {
        max-width: 100%;
    }

    .hero-art {
        min-height: 390px;
    }

    .floating-product {
        width: 190px;
        padding: 1.1rem;
        border-radius: 24px;
    }

    .floating-product h3 {
        font-size: 1.6rem;
    }

    .hero-disc {
        inset: 24px 40px 40px 18px;
    }

    .card-c {
        right: 20px;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .cta-actions {
        width: 100%;
    }

    .footer-icon {
        width: 48px;
        height: 48px;
    }

    .footer-wordmark {
        height: 34px;
    }
}

@media (max-width: 991.98px) {
    .announcement-bar .container {
        gap: 0.5rem !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
        border-top: 1px solid rgba(95, 94, 213, 0.12);
    }

    .navbar-brand {
        max-width: 240px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .brand-wordmark {
        height: 30px;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 0.7rem 0;
    }

    .navbar-light .btn {
        margin-top: 1rem;
        width: 100%;
    }

    .page-hero {
        padding: 5.5rem 0 4rem;
    }

    .page-hero p {
        max-width: 100%;
    }

    .hero-slide {
        padding: 3.8rem 0 4.8rem;
    }

    .hero-actions .btn {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
    }

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

    .hero-art {
        display: grid;
        gap: 1rem;
        min-height: auto;
        margin-top: 2rem;
    }

    .hero-disc,
    .header-carousel .owl-nav {
        display: none;
    }

    .floating-product {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .story-panel,
    .social-panel,
    .message-card,
    .quote-card,
    .cta-banner {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .announcement-bar {
        text-align: center;
        font-size: 0.86rem;
    }

    .announcement-meta {
        width: 100%;
        gap: 0.5rem 0.9rem !important;
    }

    .announcement-meta span {
        justify-content: center;
        font-size: 0.83rem;
    }

    .section-shell {
        padding: 4.5rem 0;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-wordmark {
        height: 27px;
    }

    .footer-icon {
        width: 44px;
        height: 44px;
    }

    .footer-wordmark {
        height: 31px;
    }

    .page-hero h1,
    .hero-copy h1 {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
        line-height: 1.02;
    }

    .section-title h2,
    .story-panel h2,
    .social-panel h2,
    .message-card h2,
    .cta-banner h2,
    .quote-card h3 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .story-panel,
    .social-panel,
    .message-card,
    .quote-card,
    .cta-banner {
        padding: 1.8rem;
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        flex: 1 1 auto;
        text-align: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card strong {
        font-size: 1.55rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title p {
        font-size: 0.98rem;
    }

    .mini-card,
    .category-card,
    .product-card,
    .process-card,
    .value-card,
    .timeline-card,
    .catalog-card,
    .bundle-card,
    .contact-card,
    .faq-card {
        padding: 1.5rem;
    }

    .mini-card h3,
    .category-card h3,
    .product-card h3,
    .process-card h3,
    .value-card h3,
    .timeline-card h3,
    .catalog-card h3,
    .bundle-card h3,
    .contact-card h3,
    .faq-card h3 {
        font-size: 1.75rem;
    }

    .social-card {
        padding: 1rem;
    }

    .social-card .icon-shell {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 84px;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .section-shell {
        padding: 4rem 0;
    }

    .page-hero {
        padding: 4.2rem 0 3rem;
    }

    .page-hero::before {
        width: 160px;
        height: 160px;
        top: -35px;
    }

    .page-hero::after {
        width: 220px;
        height: 220px;
        left: -90px;
        bottom: -95px;
    }

    .hero-slide {
        padding: 3.2rem 0 4rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .section-title h2,
    .story-panel h2,
    .social-panel h2,
    .message-card h2,
    .cta-banner h2,
    .quote-card h3 {
        font-size: clamp(1.9rem, 10vw, 2.7rem);
    }

    .story-panel,
    .social-panel,
    .message-card,
    .quote-card,
    .cta-banner {
        padding: 1.35rem;
        border-radius: 24px;
    }

    .mini-card,
    .category-card,
    .product-card,
    .process-card,
    .value-card,
    .timeline-card,
    .catalog-card,
    .bundle-card,
    .contact-card,
    .faq-card {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
    }

    .brand-wordmark {
        height: 24px;
    }

    .footer-icon {
        width: 40px;
        height: 40px;
    }

    .footer-wordmark {
        height: 28px;
    }

    .footer-brand {
        padding: 0.4rem 0.6rem;
    }

    .footer-socials {
        gap: 0.6rem;
    }

    .footer-social-btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 76px;
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .back-to-top {
        width: 46px;
        height: 46px;
    }
}
