:root {
    --cym-blue: #0a4ea6;
    --cym-blue-deep: #073675;
    --cym-aqua: #79d4d4;
    --cym-aqua-soft: #dff8f5;
    --cym-mint: #effaf5;
    --cym-peach: #fff1e8;
    --cym-lilac: #f2efff;
    --cym-cream: #fffdf8;
    --cym-ink: #163149;
    --cym-muted: #64768a;
    --cym-line: rgba(20, 56, 92, 0.12);
    --cym-white: #ffffff;
    --cym-shadow: 0 24px 70px rgba(20, 68, 112, 0.12);
    --cym-radius-xl: 36px;
    --cym-radius-lg: 26px;
    --cym-radius-md: 18px;
    --cym-header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--cym-header-height) + 24px);
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--cym-ink);
    background: var(--cym-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--cym-white);
    background: var(--cym-blue);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--cym-header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.92);
    border-color: var(--cym-line);
    box-shadow: 0 14px 34px rgba(20, 58, 95, 0.07);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-header__brand {
    width: 112px;
    height: 52px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 14px;
    flex-shrink: 0;
}

.site-header__brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.site-header__nav a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: #35546f;
    transition: color 0.25s ease;
}

.site-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--cym-blue);
    transition: width 0.25s ease;
}

.site-header__nav a:hover {
    color: var(--cym-blue);
}

.site-header__nav a:hover::after {
    width: 100%;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header__contact {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--cym-blue);
    color: var(--cym-white);
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 14px 30px rgba(10, 78, 166, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header__contact:hover {
    transform: translateY(-2px);
    background: var(--cym-blue-deep);
    box-shadow: 0 18px 34px rgba(10, 78, 166, 0.28);
}

.site-header__menu {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--cym-white);
    box-shadow: 0 10px 24px rgba(22, 49, 73, 0.1);
    cursor: pointer;
}

.site-header__menu span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--cym-ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__menu.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__menu.is-active span:nth-child(2) {
    opacity: 0;
}

.site-header__menu.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--cym-header-height) + 70px) 0 0;
    overflow: hidden;
}

.hero-section__background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 10% 20%, rgba(121, 212, 212, 0.35), transparent 36%),
        radial-gradient(circle at 92% 18%, rgba(194, 186, 255, 0.32), transparent 32%),
        linear-gradient(135deg, #fffdf8 0%, #f5fffc 45%, #f7f2ff 100%);
}

.hero-section__background::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -260px;
    bottom: -140px;
    border-radius: 50%;
    border: 80px solid rgba(10, 78, 166, 0.045);
}

.hero-section__content {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
    align-items: center;
    gap: 76px;
    padding-bottom: 76px;
}

.hero-section__copy h1 {
    max-width: 790px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: var(--cym-blue-deep);
}

.hero-section__copy > p {
    max-width: 680px;
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.75;
    color: #536d83;
}

.hero-section__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-section__whatsapp,
.hero-section__email {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-section__whatsapp {
    background: var(--cym-blue);
    color: var(--cym-white);
    box-shadow: 0 18px 38px rgba(10, 78, 166, 0.22);
}

.hero-section__email {
    background: rgba(255, 255, 255, 0.7);
    color: var(--cym-blue-deep);
    border: 1px solid rgba(10, 78, 166, 0.12);
    backdrop-filter: blur(12px);
}

.hero-section__whatsapp:hover,
.hero-section__email:hover {
    transform: translateY(-3px);
}

.hero-section__whatsapp:hover {
    box-shadow: 0 22px 42px rgba(10, 78, 166, 0.28);
}

.hero-section__email:hover {
    border-color: rgba(10, 78, 166, 0.3);
}

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

.hero-section__fact-item {
    padding: 18px 18px 17px;
    border: 1px solid rgba(30, 74, 112, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(12px);
}

.hero-section__fact-item strong,
.hero-section__fact-item span {
    display: block;
}

.hero-section__fact-item strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    color: var(--cym-blue-deep);
}

.hero-section__fact-item span {
    margin-top: 5px;
    color: #718297;
    font-size: 0.83rem;
    line-height: 1.45;
}

.hero-section__visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section__visual-main {
    position: relative;
    width: min(100%, 480px);
    aspect-ratio: 0.82;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(13, 59, 100, 0.2);
    transform: rotate(2deg);
}

.hero-section__visual-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 54, 117, 0.58), transparent 48%);
}

.hero-section__visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section__visual-caption {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: var(--cym-white);
}

.hero-section__visual-caption span {
    display: block;
    margin-bottom: 7px;
    font-size: 0.86rem;
    font-weight: 700;
    opacity: 0.82;
}

.hero-section__visual-caption strong {
    display: block;
    max-width: 320px;
    font-family: "Manrope", sans-serif;
    font-size: 1.58rem;
    line-height: 1.2;
}

.hero-section__floating-card {
    position: absolute;
    z-index: 3;
    min-width: 210px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 44px rgba(13, 59, 100, 0.14);
    backdrop-filter: blur(14px);
}

.hero-section__floating-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--cym-blue);
    background: var(--cym-aqua-soft);
}

.hero-section__floating-card strong,
.hero-section__floating-card small {
    display: block;
}

.hero-section__floating-card strong {
    font-size: 0.92rem;
    color: var(--cym-blue-deep);
}

.hero-section__floating-card small {
    margin-top: 3px;
    color: #73869a;
    font-size: 0.77rem;
}

.hero-section__floating-card--top {
    top: 76px;
    right: -22px;
    animation: heroFloat 4.6s ease-in-out infinite;
}

.hero-section__floating-card--bottom {
    left: -34px;
    bottom: 170px;
    animation: heroFloat 5.4s ease-in-out infinite reverse;
}

.hero-section__ticker {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(12, 72, 140, 0.09);
    border-bottom: 1px solid rgba(12, 72, 140, 0.09);
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(12px);
}

.hero-section__ticker-track {
    width: max-content;
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 22px;
    animation: heroTicker 67s linear infinite;
}

.hero-section__ticker-track span {
    white-space: nowrap;
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #506c85;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section__ticker-track i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cym-aqua);
}

.intro-section {
    padding: 120px 0;
}

.intro-section__inner {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.intro-section__inner h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: var(--cym-blue-deep);
}

.intro-section__inner p {
    max-width: 760px;
    margin: 26px auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cym-muted);
}

.promotional-section {
    padding: 80px 0 130px;
}

.promotional-section__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 84px;
}

.promotional-section__copy h2,
.globosfull-section__copy h2,
.supplies-section__heading h2,
.experience-section__copy h2,
.contact-section__copy h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: var(--cym-blue-deep);
}

.promotional-section__copy > p,
.globosfull-section__copy > p,
.supplies-section__heading > p,
.experience-section__copy > p,
.contact-section__copy > p {
    margin: 24px 0 0;
    font-size: 1.07rem;
    line-height: 1.8;
    color: var(--cym-muted);
}

.promotional-section__processes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.promotional-section__processes article {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--cym-white);
    border: 1px solid var(--cym-line);
}

.promotional-section__processes span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    color: var(--cym-blue);
    background: var(--cym-aqua-soft);
}

.promotional-section__processes strong {
    font-size: 0.94rem;
}

.promotional-section__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
    color: var(--cym-blue);
    font-weight: 800;
}

.promotional-section__link span {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.promotional-section__link:hover span {
    transform: translateX(5px);
}

.promotional-section__gallery {
    min-height: 570px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.promotional-section__photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--cym-radius-lg);
    box-shadow: var(--cym-shadow);
}

.promotional-section__photo--large {
    grid-row: 1 / 3;
}

.promotional-section__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.promotional-section__photo:hover img {
    transform: scale(1.045);
}

.promotional-section__photo figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--cym-blue-deep);
    font-size: 0.78rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.globosfull-section {
    padding: 130px 0;
    background: linear-gradient(145deg, #edfafa 0%, #f8f5ff 58%, #fff3eb 100%);
}

.globosfull-section__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 84px;
}

.globosfull-section__visual {
    position: relative;
    min-height: 650px;
}

.globosfull-section__visual > img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 42px;
    box-shadow: var(--cym-shadow);
}

.globosfull-section__brand-card {
    position: absolute;
    left: -26px;
    bottom: 34px;
    max-width: 270px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 46px rgba(43, 70, 96, 0.14);
    backdrop-filter: blur(14px);
}

.globosfull-section__brand-card strong,
.globosfull-section__brand-card span {
    display: block;
}

.globosfull-section__brand-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.48rem;
    color: var(--cym-blue);
}

.globosfull-section__brand-card span {
    margin-top: 6px;
    color: #657d91;
    font-size: 0.86rem;
    line-height: 1.5;
}

.globosfull-section__services {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.globosfull-section__services article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(28, 73, 112, 0.08);
    backdrop-filter: blur(10px);
}

.globosfull-section__services article > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--cym-blue);
    background: var(--cym-white);
    box-shadow: 0 8px 20px rgba(24, 73, 113, 0.07);
}

.globosfull-section__services strong {
    font-size: 1rem;
    color: var(--cym-blue-deep);
}

.globosfull-section__services p {
    margin: 5px 0 0;
    color: #708396;
    font-size: 0.9rem;
    line-height: 1.55;
}

.globosfull-section__instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--cym-blue);
    font-weight: 800;
}

.supplies-section {
    padding: 130px 0;
}

.supplies-section__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.supplies-section__heading {
    max-width: 760px;
}

.supplies-section__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.supplies-section__card {
    min-height: 280px;
    padding: 28px;
    border-radius: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supplies-section__card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(24, 68, 105, 0.1);
}

.supplies-section__card > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--cym-blue);
}

.supplies-section__card h3 {
    margin: 70px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.32rem;
    color: var(--cym-blue-deep);
}

.supplies-section__card p {
    margin: 10px 0 0;
    color: #677d91;
    line-height: 1.6;
    font-size: 0.94rem;
}

.supplies-section__card--balloons {
    background: var(--cym-aqua-soft);
}

.supplies-section__card--sticks {
    background: var(--cym-peach);
}

.supplies-section__card--decor {
    background: var(--cym-lilac);
}

.supplies-section__card--packaging {
    background: var(--cym-mint);
}

.supplies-section__cta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px;
    border-radius: 24px;
    background: var(--cym-blue-deep);
    color: var(--cym-white);
}

.supplies-section__cta strong,
.supplies-section__cta span {
    display: block;
}

.supplies-section__cta strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
}

.supplies-section__cta span {
    margin-top: 5px;
    opacity: 0.76;
}

.supplies-section__cta a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border-radius: 15px;
    background: var(--cym-white);
    color: var(--cym-blue-deep);
    font-weight: 800;
    white-space: nowrap;
}

.experience-section {
    padding: 120px 0;
    background: var(--cym-blue);
    color: var(--cym-white);
}

.experience-section__inner {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    align-items: center;
    gap: 60px;
}

.experience-section__number {
    font-family: "Manrope", sans-serif;
    font-size: clamp(7rem, 15vw, 12rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.08em;
    color: var(--cym-aqua);
}

.experience-section__copy h2 {
    color: var(--cym-white);
}

.experience-section__copy > p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-section {
    padding: 130px 0;
    background: #f7f7f3;
}

.contact-section__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 82px;
    align-items: start;
}

.contact-section__details {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.contact-section__details a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 17px;
    background: var(--cym-white);
    border: 1px solid var(--cym-line);
}

.contact-section__details > a > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--cym-aqua-soft);
    color: var(--cym-blue);
}

.contact-section__details small,
.contact-section__details strong {
    display: block;
}

.contact-section__details small {
    color: #789;
    font-size: 0.78rem;
}

.contact-section__details strong {
    margin-top: 3px;
    color: var(--cym-blue-deep);
    font-size: 0.95rem;
}

.contact-section__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.contact-section__socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #546f87;
}

.contact-section__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 34px;
    border-radius: 30px;
    background: var(--cym-white);
    box-shadow: var(--cym-shadow);
}

.contact-section__field {
    display: grid;
    gap: 8px;
}

.contact-section__field--wide {
    grid-column: 1 / -1;
}

.contact-section__field label {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--cym-blue-deep);
}

.contact-section__field input,
.contact-section__field select,
.contact-section__field textarea {
    width: 100%;
    border: 1px solid rgba(34, 75, 110, 0.14);
    border-radius: 14px;
    background: #fbfcfd;
    color: var(--cym-ink);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-section__field input,
.contact-section__field select {
    min-height: 52px;
    padding: 0 15px;
}

.contact-section__field textarea {
    min-height: 138px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-section__field input:focus,
.contact-section__field select:focus,
.contact-section__field textarea:focus {
    border-color: rgba(10, 78, 166, 0.48);
    background: var(--cym-white);
    box-shadow: 0 0 0 4px rgba(10, 78, 166, 0.08);
}

.contact-section__submit {
    grid-column: 1 / -1;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 16px;
    background: var(--cym-blue);
    color: var(--cym-white);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(10, 78, 166, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.contact-section__submit:hover {
    transform: translateY(-2px);
    background: var(--cym-blue-deep);
}

.contact-section__notice {
    grid-column: 1 / -1;
    margin: -2px 0 0;
    text-align: center;
    color: #8694a2;
    font-size: 0.78rem;
    line-height: 1.5;
}

.contact-section__status {
    grid-column: 1 / -1;
    min-height: 20px;
    margin: -4px 0 0;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-section__status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-section__status.is-success {
    background: rgba(26, 160, 96, 0.08);
    color: #137a4b;
}

.contact-section__status.is-error {
    background: rgba(196, 41, 41, 0.08);
    color: #b42318;
}

.contact-section__submit:disabled {
    cursor: wait;
    opacity: 0.8;
    transform: none;
}

.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--cym-white);
    font-size: 1.7rem;
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.38);
}

.site-footer {
    padding: 64px 0 36px;
    background: #082f64;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__brand img {
    width: 96px;
    height: 58px;
    object-fit: cover;
    border-radius: 14px;
}

.site-footer__brand p {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: var(--cym-white);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__links a {
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.25s ease;
}

.site-footer__links a:hover {
    color: var(--cym-aqua);
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
}

.site-footer__meta a {
    color: var(--cym-aqua);
    font-weight: 800;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(34px);
}

.reveal-left {
    transform: translateX(-34px);
}

.reveal-right {
    transform: translateX(34px);
}

.reveal-scale {
    transform: scale(0.95);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .site-header__nav {
        gap: 20px;
    }

    .hero-section__content {
        grid-template-columns: 1fr 0.82fr;
        gap: 44px;
    }

    .hero-section__visual {
        min-height: 520px;
    }

    .hero-section__floating-card--top {
        right: -10px;
    }

    .hero-section__floating-card--bottom {
        left: -10px;
    }

    .promotional-section__inner,
    .globosfull-section__inner,
    .contact-section__inner {
        gap: 56px;
    }

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

@media (max-width: 900px) {
    :root {
        --cym-header-height: 74px;
    }

    .site-header__inner,
    .hero-section__content,
    .promotional-section__inner,
    .globosfull-section__inner,
    .supplies-section__inner,
    .experience-section__inner,
    .contact-section__inner,
    .site-footer__inner {
        width: min(100% - 34px, 760px);
    }

    .site-header__brand {
        width: 96px;
        height: 46px;
    }

    .site-header__contact {
        display: none;
    }

    .site-header__menu {
        display: flex;
    }

    .site-header__nav {
        position: fixed;
        top: var(--cym-header-height);
        left: 17px;
        right: 17px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 12px;
        border: 1px solid var(--cym-line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 22px 50px rgba(24, 64, 100, 0.16);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .site-header__nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-header__nav a {
        padding: 15px 14px;
        border-radius: 13px;
    }

    .site-header__nav a:hover {
        background: var(--cym-aqua-soft);
    }

    .site-header__nav a::after {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding-top: calc(var(--cym-header-height) + 56px);
    }

    .hero-section__content {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-bottom: 60px;
    }

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

    .hero-section__copy h1,
    .hero-section__copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section__buttons {
        justify-content: center;
    }

    .hero-section__visual {
        min-height: 500px;
    }

    .hero-section__visual-main {
        width: min(82vw, 440px);
        transform: rotate(0deg);
    }

    .hero-section__floating-card--top {
        right: 4%;
    }

    .hero-section__floating-card--bottom {
        left: 4%;
    }

    .promotional-section,
    .globosfull-section,
    .supplies-section,
    .contact-section {
        padding: 100px 0;
    }

    .promotional-section__inner,
    .globosfull-section__inner,
    .contact-section__inner {
        grid-template-columns: 1fr;
    }

    .promotional-section__gallery {
        min-height: 520px;
    }

    .globosfull-section__visual {
        order: 2;
    }

    .globosfull-section__copy {
        order: 1;
    }

    .globosfull-section__visual,
    .globosfull-section__visual > img {
        min-height: 540px;
        height: 540px;
    }

    .globosfull-section__brand-card {
        left: 20px;
    }

    .experience-section__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .experience-section__number {
        font-size: clamp(6rem, 24vw, 9rem);
    }
}

@media (max-width: 640px) {
    .hero-section__copy h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .hero-section__copy > p,
    .intro-section__inner p,
    .promotional-section__copy > p,
    .globosfull-section__copy > p,
    .supplies-section__heading > p,
    .experience-section__copy > p,
    .contact-section__copy > p {
        font-size: 1rem;
    }

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

    .hero-section__whatsapp,
    .hero-section__email {
        width: 100%;
    }

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

    .hero-section__visual {
        min-height: 440px;
    }

    .hero-section__visual-main {
        width: 88%;
        border-radius: 30px;
    }

    .hero-section__floating-card {
        min-width: 185px;
        padding: 13px 14px;
    }

    .hero-section__floating-card--top {
        top: 32px;
        right: 0;
    }

    .hero-section__floating-card--bottom {
        left: 0;
        bottom: 34px;
    }

    .intro-section {
        padding: 90px 0 70px;
    }

    .promotional-section__processes {
        grid-template-columns: 1fr;
    }

    .promotional-section__gallery {
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 180px;
    }

    .promotional-section__photo--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .promotional-section__photo--small-top,
    .promotional-section__photo--small-bottom {
        grid-row: 2;
    }

    .globosfull-section__visual,
    .globosfull-section__visual > img {
        min-height: 430px;
        height: 430px;
    }

    .globosfull-section__brand-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .globosfull-section__services article {
        grid-template-columns: 44px 1fr;
        padding: 15px;
    }

    .globosfull-section__services article > span {
        width: 44px;
        height: 44px;
    }

    .supplies-section__cards {
        grid-template-columns: 1fr;
    }

    .supplies-section__card {
        min-height: 220px;
    }

    .supplies-section__card h3 {
        margin-top: 42px;
    }

    .supplies-section__cta {
        align-items: stretch;
        flex-direction: column;
    }

    .supplies-section__cta a {
        width: 100%;
    }

    .experience-section {
        padding: 90px 0;
    }

    .contact-section__form {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

    .contact-section__field--wide,
    .contact-section__submit,
    .contact-section__notice {
        grid-column: auto;
    }

    .contact-section__socials {
        flex-direction: column;
    }

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

    .site-footer__brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__meta {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   ERROR 404 — DISEÑO EDITORIAL 2026
   ========================================================= */

.error404-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 78% 30%, rgba(121, 212, 212, 0.22), transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, #f7fbff 100%);
}

.error404-hero {
    position: relative;
    min-height: calc(100vh - 250px);
    padding: calc(var(--cym-header-height) + 92px) 24px 72px;
    overflow: hidden;
}

.error404-gridline {
    position: absolute;
    inset: var(--cym-header-height) 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 78, 166, 0.18), transparent);
}

.error404-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: clamp(56px, 8vw, 128px);
}

.error404-copy {
    max-width: 690px;
}

.error404-code {
    margin-bottom: 22px;
    color: var(--cym-blue);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.28em;
}

.error404-title {
    max-width: 680px;
    margin: 0;
    color: var(--cym-blue-deep);
    font-family: "Manrope", sans-serif;
    font-size: clamp(3.3rem, 7vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.94;
}

.error404-description {
    max-width: 620px;
    margin: 30px 0 0;
    color: var(--cym-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.75;
}

.error404-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 26px;
    margin-top: 38px;
}

.error404-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 999px;
    background: var(--cym-blue);
    color: var(--cym-white);
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(10, 78, 166, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.error404-home:hover {
    transform: translateY(-2px);
    background: var(--cym-blue-deep);
    box-shadow: 0 20px 40px rgba(10, 78, 166, 0.26);
}

.error404-home .material-icons-round {
    font-size: 1.2rem;
}

.error404-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--cym-blue-deep);
    font-weight: 800;
}

.error404-whatsapp::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.error404-whatsapp:hover::after {
    transform: scaleX(1);
}

.error404-art {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.error404-orbit {
    position: absolute;
    width: min(34vw, 390px);
    aspect-ratio: 1;
    border: 1px solid rgba(10, 78, 166, 0.17);
    border-radius: 50%;
}

.error404-orbit::before,
.error404-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.error404-orbit::before {
    inset: 14%;
    border: 1px dashed rgba(10, 78, 166, 0.13);
    animation: error404Spin 18s linear infinite;
}

.error404-orbit::after {
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    background: var(--cym-aqua);
    box-shadow: 0 0 0 9px rgba(121, 212, 212, 0.16);
}

.error404-mark {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    color: var(--cym-blue-deep);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.error404-mark-number {
    font-size: clamp(5.6rem, 10vw, 9rem);
    line-height: 1;
}

.error404-mark-symbol {
    margin: 0 9px;
    color: var(--cym-aqua);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    transform: rotate(8deg);
}

.error404-art-line {
    position: absolute;
    left: 50%;
    bottom: 68px;
    width: min(76%, 320px);
    height: 1px;
    transform: translateX(-50%);
    background: rgba(10, 78, 166, 0.2);
}

.error404-art-text {
    position: absolute;
    bottom: 24px;
    margin: 0;
    color: var(--cym-muted);
    font-size: 0.98rem;
    font-weight: 600;
    text-align: center;
}

.error404-bottomline {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 58px auto 0;
    padding-top: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(10, 78, 166, 0.12);
    color: var(--cym-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.error404-bottomline-item {
    white-space: nowrap;
}

.error404-bottomline-separator {
    width: 28px;
    height: 1px;
    background: var(--cym-aqua);
}

@keyframes error404Spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .error404-hero {
        min-height: auto;
        padding-top: calc(var(--cym-header-height) + 58px);
        padding-bottom: 56px;
    }

    .error404-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .error404-copy {
        max-width: none;
    }

    .error404-title {
        max-width: 620px;
        font-size: clamp(3.25rem, 13vw, 5.7rem);
    }

    .error404-art {
        min-height: 310px;
    }

    .error404-orbit {
        width: min(74vw, 310px);
    }

    .error404-bottomline {
        margin-top: 34px;
    }
}

@media (max-width: 560px) {
    .error404-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .error404-code {
        margin-bottom: 16px;
    }

    .error404-description {
        margin-top: 22px;
    }

    .error404-actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 30px;
    }

    .error404-home {
        width: 100%;
    }

    .error404-art {
        min-height: 270px;
    }

    .error404-art-line {
        bottom: 52px;
    }

    .error404-art-text {
        bottom: 8px;
    }

    .error404-bottomline {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .error404-bottomline-separator {
        width: 42px;
    }

    .error404-bottomline-item {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .error404-orbit::before {
        animation: none;
    }
}

/* Actualización solicitada por cliente: nueva paleta y uso de trabajos reales */
:root {
    --cym-blue: #b66a61;
    --cym-blue-deep: #62443f;
    --cym-aqua: #b9cbaa;
    --cym-aqua-soft: #edf3e8;
    --cym-mint: #e8f0e9;
    --cym-peach: #f7e1d5;
    --cym-lilac: #eee6ef;
    --cym-cream: #fffaf4;
    --cym-ink: #433c39;
    --cym-muted: #756b66;
    --cym-line: rgba(83, 65, 59, 0.12);
    --cym-shadow: 0 24px 70px rgba(87, 61, 52, 0.12);
}

.site-header.is-scrolled {
    background: rgba(255, 250, 244, 0.94);
    box-shadow: 0 14px 34px rgba(82, 57, 49, 0.07);
}

.site-header__nav a { color: #66554e; }
.site-header__contact { box-shadow: 0 14px 30px rgba(182, 106, 97, 0.22); }
.site-header__contact:hover { box-shadow: 0 18px 34px rgba(182, 106, 97, 0.28); }

.hero-section__background {
    background:
        radial-gradient(circle at 10% 20%, rgba(185, 203, 170, 0.34), transparent 36%),
        radial-gradient(circle at 92% 18%, rgba(238, 230, 239, 0.58), transparent 32%),
        linear-gradient(135deg, #fffaf4 0%, #fbf6ed 45%, #f8efe9 100%);
}
.hero-section__background::after { border-color: rgba(182, 106, 97, 0.055); }
.hero-section__copy > p { color: #70655f; }
.hero-section__whatsapp { box-shadow: 0 18px 38px rgba(182, 106, 97, 0.22); }
.hero-section__email { border-color: rgba(182, 106, 97, 0.18); }
.hero-section__whatsapp:hover { box-shadow: 0 22px 42px rgba(182, 106, 97, 0.28); }
.hero-section__ticker { border-color: rgba(103, 75, 66, 0.09); }
.hero-section__ticker-track span { color: #725f57; }

.promotional-section__instagram {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 18px 0 0 18px;
    color: var(--cym-blue-deep);
    font-weight: 800;
}
.promotional-section__instagram i { font-size: 1.05rem; color: var(--cym-blue); }

.globosfull-section {
    background: linear-gradient(145deg, #f1f4e9 0%, #f7efe9 56%, #f3eaf1 100%);
}
.globosfull-section__visual > img { display: none; }
.globosfull-section__collage {
    width: 100%;
    height: 650px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    overflow: hidden;
    border-radius: 42px;
    background: rgba(255,255,255,.8);
    box-shadow: var(--cym-shadow);
}
.globosfull-section__collage img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 20px;
}
.globosfull-section__collage-main { grid-row: 1 / 4; }

.experience-section { background: var(--cym-blue-deep); }
.experience-section__number { color: #e3c6bd; }

@media (max-width: 760px) {
    .promotional-section__instagram { margin-left: 0; display: flex; width: fit-content; }
    .globosfull-section__collage {
        height: 520px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.15fr .85fr;
    }
    .globosfull-section__collage-main { grid-column: 1 / 3; grid-row: 1; }
    .globosfull-section__collage img:nth-child(4) { display: none; }
}
