:root {
    --bg: #050505;
    --panel: #0a0a0a;
    --panel-soft: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.58);
    --soft-muted: rgba(255, 255, 255, 0.28);
    --line: rgba(255, 255, 255, 0.08);
    --accent: #ff6321;
    --accent-2: #ff8c00;
    --success: #25d366;
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Archivo", sans-serif;
    --container: min(1380px, calc(100vw - 48px));
    --shadow-accent: 0 0 50px rgba(255, 99, 33, 0.35);
    --shadow-card: 0 30px 100px rgba(0, 0, 0, 0.35);
    --radius-panel: 3rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::selection {
    background: var(--accent);
    color: #000;
}

a,
button {
    color: inherit;
}

button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

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

svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-shell {
    position: relative;
    min-height: 100vh;
    background: var(--bg);
}

.site-shell.is-loading {
    height: 100vh;
    overflow: hidden;
}

.background-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(150px);
}

.bg-orb-left {
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: rgba(255, 99, 33, 0.2);
    animation: orbPulse 4s ease-in-out infinite;
}

.bg-orb-right {
    right: -10%;
    bottom: -10%;
    width: 50%;
    height: 50%;
    background: rgba(255, 99, 33, 0.1);
    filter: blur(200px);
}

.scanlines {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1), opacity 1.2s ease, filter 1.2s ease;
}

.loading-screen.is-finished {
    transform: scale(20);
    opacity: 0;
    filter: blur(20px);
    pointer-events: none;
}

.loading-pulse {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(200px);
    opacity: 0.28;
    animation: pulse 1.5s infinite;
}

.loading-content {
    position: relative;
    z-index: 1;
    width: min(640px, calc(100vw - 32px));
    padding: 0 16px;
    text-align: center;
}

.loading-title,
.hero-title,
.section-title,
.cta-panel h2,
.impact-card h4,
.service-card h3,
.brand-wordmark,
.loading-meta,
.hero-subtitle,
.hero-badge,
.button,
.service-link,
.stats-mini-card p,
.stats-mini-card strong,
.impact-card p,
.footer-links,
.scroll-indicator,
.topbar-link {
    text-transform: uppercase;
}

.loading-title,
.hero-title,
.section-title,
.cta-panel h2,
.brand-wordmark,
.impact-card h4,
.service-card h3 {
    font-family: var(--font-display);
    letter-spacing: -0.04em;
    line-height: 0.8;
}

.loading-title {
    margin: 0 0 32px;
    font-size: clamp(4.2rem, 12vw, 9rem);
}

.loading-title span,
.brand-wordmark span,
.hero-title span,
.section-title span {
    color: var(--accent);
}

.loading-progress-shell {
    max-width: 560px;
    margin: 0 auto;
}

.loading-progress {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.loading-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.loading-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.65rem);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.loading-explosion {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transform: scale(0);
}

.loading-explosion.is-active {
    animation: explode 1s ease-out forwards;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.brand-wordmark {
    display: inline-block;
    font-size: clamp(2rem, 3vw, 3rem);
}

.brand-mark {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    overflow: visible;
}

.brand-mark-large {
    width: 132px;
    height: 132px;
    margin: 0 auto 28px;
    border-radius: 0;
    box-shadow: none;
}

.brand-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.topbar-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    transition: color 0.3s ease;
}

.topbar-link:hover {
    color: var(--accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.18em;
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    transform: translateY(-2px) scale(1.03);
}

.button-primary,
.button-whatsapp,
.button-dark,
.button-outline {
    border-radius: 999px;
}

.button-whatsapp {
    background: var(--accent);
    color: #000;
    padding: 22px 36px;
    box-shadow: var(--shadow-accent);
}

.button-primary {
    background: #fff;
    color: #000;
    padding: 28px 42px;
    font-size: clamp(1.05rem, 2vw, 1.7rem);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
}

.button-outline {
    border: 4px solid var(--accent);
    color: var(--accent);
    padding: 24px 40px;
    font-size: clamp(1.05rem, 2vw, 1.7rem);
}

.button-outline:hover {
    background: var(--accent);
    color: #000;
}

.button-dark {
    padding: 28px 52px;
    background: #000;
    color: var(--accent);
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: min(8vw, 96px);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
    padding: 16px 32px;
    border: 1px solid rgba(255, 99, 33, 0.3);
    border-radius: 999px;
    background: rgba(255, 99, 33, 0.1);
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.45em;
}

.hero-badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    animation: ping 1.6s infinite;
}

.hero-title,
.section-title,
.cta-panel h2 {
    position: relative;
    margin: 0;
    font-size: clamp(5rem, 15vw, 15rem);
    font-style: italic;
}

.hero-title {
    margin-bottom: 44px;
}

.hero-title::before,
.hero-title::after,
.section-title::before,
.section-title::after {
    content: attr(data-glitch);
    position: absolute;
    inset: 0;
    white-space: pre-line;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.08s ease, opacity 0.08s ease;
}

.hero-title::before,
.section-title::before {
    color: #00e6ff;
}

.hero-title::after,
.section-title::after {
    color: #ff2d95;
}

.hero-title:hover::before,
.section-title:hover::before {
    opacity: 0.45;
    transform: translate(4px, -4px);
}

.hero-title:hover::after,
.section-title:hover::after {
    opacity: 0.4;
    transform: translate(-4px, 4px);
}

.hero-subtitle,
.cta-panel p {
    margin: 0 0 48px;
    font-size: clamp(1.7rem, 3.8vw, 3rem);
    line-height: 0.95;
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

.hero-subtitle span,
.cta-panel p {
    color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-visual {
    position: relative;
}

.hero-visual-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-radius: 5rem;
    box-shadow: 0 0 100px rgba(255, 99, 33, 0.2);
}

.hero-visual-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(circle at 50% 110%, rgba(255, 99, 33, 0.55), transparent 35%),
        linear-gradient(180deg, rgba(255, 99, 33, 0.12), rgba(0, 0, 0, 0.04) 32%, rgba(0, 0, 0, 0.88) 100%),
        linear-gradient(135deg, #141414, #050505 55%);
}

.hero-visual-noise {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero-visual-gridline {
    position: absolute;
    background: rgba(255, 255, 255, 0.14);
}

.hero-visual-gridline-v {
    top: 12%;
    bottom: 12%;
    left: 50%;
    width: 1px;
}

.hero-visual-gridline-h {
    left: 12%;
    right: 12%;
    top: 50%;
    height: 1px;
}

.hero-visual-badge {
    position: absolute;
    top: 8%;
    left: 9%;
    z-index: 2;
    max-width: 240px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.4rem;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

.hero-visual-badge span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-visual-badge strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-visual-badge-alt {
    top: auto;
    left: auto;
    right: 9%;
    bottom: 9%;
}

.hero-visual-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 99, 33, 0.4), transparent 45%);
}

.hero-visual-caption {
    position: absolute;
    left: 64px;
    right: 64px;
    bottom: 72px;
}

.hero-visual-caption p {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 5vw, 6rem);
    line-height: 0.8;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-visual-caption span {
    color: #fff;
}

.hero-visual-bar {
    width: 128px;
    height: 8px;
    background: var(--accent);
}

.hero-accent {
    position: absolute;
    width: 192px;
    height: 192px;
    border-color: var(--accent);
    z-index: 0;
}

.hero-accent-top {
    top: -48px;
    left: -48px;
    border-top: 8px solid;
    border-left: 8px solid;
}

.hero-accent-bottom {
    right: -48px;
    bottom: -48px;
    border-right: 8px solid;
    border-bottom: 8px solid;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.8em;
    animation: bob 2.5s infinite;
}

.marquee-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 34px 0;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.1);
    font-style: italic;
}

.marquee-track span span {
    color: var(--accent);
}

.services-section,
.impact-section,
.cta-section {
    position: relative;
    z-index: 1;
    padding: clamp(100px, 16vw, 240px) 0;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: clamp(56px, 10vw, 160px);
}

.services-copy {
    max-width: 860px;
}

.services-copy p {
    margin: 28px 0 0;
    max-width: 700px;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.1;
    font-weight: 700;
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 20px;
}

.stats-mini-card {
    padding: 34px;
    border-left: 8px solid var(--accent);
    border-radius: 24px;
    background: var(--panel-soft);
}

.stats-mini-card p {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.26em;
    font-weight: 900;
}

.stats-mini-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 5vw, 5.2rem);
    line-height: 0.8;
    letter-spacing: -0.05em;
}

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-panel);
    background: var(--panel);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.service-image {
    position: absolute;
    inset: 0 0 auto 0;
    height: 180px;
    background-position: center;
    background-size: cover;
    opacity: 0.18;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(10, 10, 10, 0.95) 85%);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 99, 33, 0.5);
}

.service-card:hover .service-image {
    opacity: 0.32;
    transform: scale(1.04);
}

.service-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(255, 99, 33, 0.2), transparent 55%);
    opacity: 0;
    filter: blur(26px);
    transition: opacity 0.5s ease;
}

.service-card:hover .service-glow,
.service-card:hover .service-external {
    opacity: 1;
}

.service-external {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0;
    color: var(--accent);
    transform: translateX(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover .service-external {
    transform: translateX(0);
}

.service-icon {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 96px;
    margin-bottom: 34px;
    padding: 22px;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: background 0.5s ease, color 0.5s ease;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #000;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    font-size: clamp(2.6rem, 3.5vw, 4rem);
    line-height: 0.85;
}

.service-card:hover h3 {
    color: var(--accent);
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    transition: color 0.4s ease;
}

.service-card:hover p {
    color: #fff;
}

.service-price {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.05);
}

.service-price span {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.service-price strong {
    display: block;
    margin-top: 10px;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 900;
}

.service-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    text-shadow: 0 0 14px rgba(255, 99, 33, 0.28);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.38em;
    transition: transform 0.4s ease;
}

.service-card:hover .service-link {
    transform: translateX(8px);
}

.impact-section {
    overflow: hidden;
    background: var(--accent);
}

.impact-ring {
    position: absolute;
    top: -160px;
    right: -160px;
    width: 320px;
    height: 320px;
    border: 40px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.impact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    color: #000;
}

.impact-card {
    text-align: center;
}

.impact-card .icon,
.impact-brand {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
}

.impact-card h4 {
    margin: 0 0 10px;
    font-size: clamp(4.8rem, 7vw, 7rem);
    line-height: 0.8;
}

.impact-card p {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    font-style: italic;
}

.cta-panel {
    position: relative;
    padding: clamp(48px, 10vw, 140px);
    border-radius: 4rem;
    overflow: hidden;
    text-align: center;
    background: var(--accent);
    color: #000;
}

.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cta-panel:hover::before {
    opacity: 0.05;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    font-size: clamp(4.8rem, 10vw, 10rem);
    margin-bottom: 32px;
    color: #000;
}

.cta-panel h2 span {
    color: rgba(0, 0, 0, 0.14);
}

.cta-panel p {
    margin-bottom: 44px;
    color: rgba(0, 0, 0, 0.8);
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 88px 0 72px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-top {
    margin-bottom: 72px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.45em;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-social {
    width: 56px;
    height: 56px;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-social:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.floating-whatsapp {
    position: fixed;
    right: 64px;
    bottom: 64px;
    z-index: 50;
    width: 92px;
    height: 92px;
    padding: 22px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 2.5rem;
    background: var(--success);
    color: #fff;
    box-shadow: 0 0 60px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08) rotate(8deg);
}

.icon {
    display: inline-flex;
    flex: 0 0 auto;
}

.icon-sm {
    width: 24px;
    height: 24px;
}

.icon-md {
    width: 32px;
    height: 32px;
}

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

.icon-xl {
    width: 96px;
    height: 96px;
}

.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--card-delay, 0s);
}

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

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

.reveal-right {
    transform: translateX(30px) rotate(4deg);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    80%, 100% { transform: scale(2.4); opacity: 0; }
}

@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.38; }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-1000px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes explode {
    from { transform: scale(0); opacity: 1; }
    to { transform: scale(10); opacity: 0; }
}

@media (max-width: 1180px) {
    .hero-grid,
    .services-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        height: auto;
        min-height: 96px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hero-visual {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .services-grid {
        gap: 24px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    :root {
        --container: min(100vw - 32px, 100%);
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar {
        position: sticky;
        top: 0;
    }

    .topbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        min-height: 88px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .topbar-actions {
        width: auto;
        flex: 0 0 auto;
        justify-content: flex-end;
        gap: 12px;
    }

    .topbar-link {
        display: none;
    }

    .button {
        min-height: 58px;
        text-align: center;
    }

    .button-whatsapp {
        width: auto;
        min-width: 0;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        box-shadow: 0 0 30px rgba(255, 99, 33, 0.22);
    }

    .button-primary,
    .button-outline,
    .button-dark {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .button-primary,
    .button-outline,
    .button-dark {
        font-size: clamp(1rem, 2.8vw, 1.35rem);
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hero {
        padding-top: 52px;
        padding-bottom: 56px;
    }

    .hero-badge {
        margin-bottom: 28px;
        max-width: fit-content;
        padding: 14px 20px;
        font-size: 0.74rem;
        letter-spacing: 0.22em;
    }

    .hero-title {
        margin-bottom: 28px;
        font-size: clamp(4.2rem, 13vw, 7rem);
    }

    .hero-subtitle {
        margin-bottom: 32px;
        font-size: clamp(1.3rem, 5.5vw, 2.2rem);
        line-height: 1;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-visual-frame {
        border-width: 6px;
        border-radius: 3rem;
    }

    .hero-visual-badge {
        max-width: 190px;
        padding: 12px 14px;
    }

    .hero-visual-badge strong {
        font-size: 1rem;
    }

    .hero-actions,
    .stats-mini,
    .footer-links {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .stats-mini {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stats-mini-card {
        padding: 24px 22px;
    }

    .hero-visual-caption {
        left: 28px;
        right: 28px;
        bottom: 32px;
    }

    .hero-accent {
        width: 96px;
        height: 96px;
    }

    .services-section,
    .impact-section,
    .cta-section {
        padding: 84px 0;
    }

    .services-header {
        gap: 28px;
        margin-bottom: 48px;
    }

    .services-copy p {
        margin-top: 20px;
        font-size: 1.15rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.56);
    }

    .service-card {
        padding: 30px 24px 26px;
        border-radius: 2.5rem;
    }

    .service-image {
        height: 150px;
        opacity: 0.22;
    }

    .service-external {
        top: 20px;
        right: 20px;
        opacity: 1;
        transform: none;
    }

    .service-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 24px;
        padding: 18px;
        border-radius: 1.5rem;
    }

    .service-card h3 {
        margin-bottom: 14px;
        font-size: clamp(2.15rem, 7vw, 3.25rem);
    }

    .service-card p {
        margin-bottom: 22px;
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.72);
    }

    .service-price {
        padding: 18px;
        margin-bottom: 22px;
        border-radius: 1.25rem;
    }

    .service-price strong {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .service-link {
        font-size: 0.78rem;
        letter-spacing: 0.24em;
    }

    .impact-grid {
        gap: 28px;
    }

    .impact-card .icon,
    .impact-brand {
        width: 74px;
        height: 74px;
        margin-bottom: 18px;
    }

    .impact-card h4 {
        font-size: clamp(3.6rem, 11vw, 5.2rem);
    }

    .impact-card p {
        font-size: 1rem;
        letter-spacing: 0.16em;
    }

    .cta-panel {
        padding: 40px 24px;
        border-radius: 2.75rem;
    }

    .cta-panel h2 {
        margin-bottom: 22px;
        font-size: clamp(3.6rem, 12vw, 6.2rem);
    }

    .cta-panel p {
        margin-bottom: 28px;
        font-size: clamp(1.15rem, 4.8vw, 1.8rem);
        line-height: 1.05;
    }

    .site-footer {
        padding: 64px 0 120px;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .footer-bottom {
        padding-top: 28px;
    }

    .footer-bottom p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .floating-whatsapp {
        right: 20px;
        bottom: max(20px, env(safe-area-inset-bottom));
        width: 68px;
        height: 68px;
        padding: 16px;
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 24px, 100%);
    }

    html {
        font-size: 15px;
    }

    .loading-meta {
        flex-direction: column;
        align-items: center;
    }

    .brand-wordmark {
        font-size: 1.6rem;
    }

    .brand-lockup {
        gap: 12px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand-mark-large {
        width: 96px;
        height: 96px;
    }

    .stats-mini {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        min-height: 74px;
        gap: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .topbar-actions {
        gap: 10px;
    }

    .button-whatsapp {
        padding: 12px 14px;
        border-radius: 999px;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .button-whatsapp .icon {
        width: 18px;
        height: 18px;
    }

    .hero {
        padding-top: 36px;
        padding-bottom: 44px;
    }

    .hero-badge {
        width: fit-content;
        max-width: 100%;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 14px;
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .hero-title {
        font-size: clamp(3rem, 16vw, 4.5rem);
        line-height: 0.84;
    }

    .hero-subtitle {
        margin-bottom: 26px;
        font-size: clamp(0.98rem, 5.2vw, 1.35rem);
        line-height: 1.06;
    }

    .hero-actions {
        gap: 12px;
    }

    .button-primary,
    .button-outline,
    .button-dark {
        min-height: 54px;
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 0.95rem;
        letter-spacing: 0.14em;
    }

    .hero-visual-frame {
        border-radius: 2.25rem;
    }

    .hero-visual-media {
        aspect-ratio: 5 / 6;
    }

    .hero-visual-badge {
        max-width: 150px;
        padding: 10px 11px;
        border-radius: 1rem;
    }

    .hero-visual-badge span {
        margin-bottom: 6px;
        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }

    .hero-visual-badge strong {
        font-size: 0.82rem;
    }

    .hero-visual-caption {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .hero-visual-caption p {
        margin-bottom: 12px;
        font-size: clamp(2.2rem, 11vw, 3.3rem);
    }

    .hero-visual-bar {
        width: 84px;
        height: 6px;
    }

    .hero-accent {
        width: 62px;
        height: 62px;
    }

    .hero-accent-top {
        top: -18px;
        left: -18px;
        border-top-width: 5px;
        border-left-width: 5px;
    }

    .hero-accent-bottom {
        right: -18px;
        bottom: -18px;
        border-right-width: 5px;
        border-bottom-width: 5px;
    }

    .services-section,
    .impact-section,
    .cta-section {
        padding: 68px 0;
    }

    .services-header {
        margin-bottom: 36px;
    }

    .services-copy p {
        font-size: 1rem;
    }

    .stats-mini-card strong {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .service-card,
    .cta-panel {
        border-radius: 2.2rem;
    }

    .service-card {
        padding: 24px 18px 22px;
    }

    .service-image {
        height: 132px;
    }

    .service-card h3 {
        font-size: clamp(1.9rem, 10vw, 2.6rem);
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .service-price span,
    .service-link,
    .footer-links {
        letter-spacing: 0.18em;
    }

    .impact-ring {
        top: -90px;
        right: -90px;
        width: 180px;
        height: 180px;
        border-width: 20px;
    }

    .cta-panel {
        padding: 34px 18px;
    }

    .cta-panel p {
        margin-bottom: 22px;
    }

    .footer-links {
        gap: 18px;
        font-size: 0.72rem;
        line-height: 1.6;
    }

    .footer-socials {
        gap: 12px;
    }

    .footer-social {
        width: 48px;
        height: 48px;
        padding: 12px;
        border-radius: 14px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 62px;
        height: 62px;
        padding: 14px;
    }
}
