/* ==================================================
   IMPRESOS PUBLIGRAB
   STYLE.CSS — PARTE 1A
   Variables, estilos generales, loader,
   encabezado, menú y botones
================================================== */


/* ==================================================
   1. VARIABLES
================================================== */

:root {
    --yellow: #ffd400;
    --yellow-dark: #d9b400;
    --yellow-soft: #fff4a8;

    --black: #111111;
    --black-soft: #1c1c1c;
    --black-light: #292929;

    --white: #ffffff;

    --gray-50: #fafafa;
    --gray-100: #f3f3f3;
    --gray-200: #e5e5e5;
    --gray-300: #d0d0d0;
    --gray-400: #aaaaaa;
    --gray-500: #808080;
    --gray-600: #626262;
    --gray-700: #404040;
    --gray-800: #2d2d2d;

    --whatsapp: #25d366;

    --font-main:
        Arial,
        Helvetica,
        sans-serif;

    --container-width: 1200px;

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --shadow-small:
        0 8px 25px rgba(0, 0, 0, 0.08);

    --shadow-medium:
        0 18px 50px rgba(0, 0, 0, 0.14);

    --shadow-large:
        0 30px 80px rgba(0, 0, 0, 0.22);

    --transition-fast:
        0.2s ease;

    --transition:
        0.3s ease;

    --transition-slow:
        0.6s ease;
}


/* ==================================================
   2. REINICIO GENERAL
================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--black);
    background: var(--white);

    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

::selection {
    color: var(--black);
    background: var(--yellow);
}


/* ==================================================
   3. ELEMENTOS GENERALES
================================================== */

.container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );

    margin-inline: auto;
}

.section {
    position: relative;
    padding: 100px 0;
}

.center {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.hidden {
    display: none !important;
}


/* ==================================================
   4. ENCABEZADOS DE SECCIÓN
================================================== */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading > p,
.small-heading,
.eyebrow {
    margin-bottom: 10px;

    color: var(--yellow-dark);

    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2 {
    color: var(--black);

    font-size: clamp(2.1rem, 4vw, 3.8rem);
    font-weight: 1000;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.section-heading > span {
    display: block;

    width: 70px;
    height: 5px;

    margin: 22px auto;

    background: var(--yellow);
    border-radius: 999px;
}

.section-heading > div {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.section-heading-light h2 {
    color: var(--white);
}

.section-heading-light > div {
    color: var(--gray-300);
}


/* ==================================================
   5. BOTONES
================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;

    padding: 14px 25px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-align: center;

    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-yellow {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);

    box-shadow:
        0 12px 30px rgba(255, 212, 0, 0.24);
}

.button-yellow:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);

    box-shadow:
        0 16px 38px rgba(255, 212, 0, 0.34);
}

.button-dark {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.button-dark:hover {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
}

.button-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
}

.button-outline:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}


/* ==================================================
   6. ANIMACIONES AL HACER SCROLL
================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==================================================
   7. PANTALLA DE CARGA
================================================== */

.loader {
    position: fixed;
    z-index: 9999;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: var(--black);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.header .logo{

    width:85px;
    height:85px;

    object-fit:contain;

    background:transparent;

    border:none;

    border-radius:0;

    box-shadow:none;

    transition:.3s;
}

.header .logo:hover{

    transform:scale(1.08);

}

.loader-content strong {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.loader-content span {
    margin-top: 6px;

    color: var(--gray-400);

    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 212, 0, 0.35);
    }

    50% {
        transform: scale(1.08);

        box-shadow:
            0 0 0 20px rgba(255, 212, 0, 0);
    }
}


/* ==================================================
   8. ENCABEZADO
================================================== */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    width: 100%;

    color: var(--white);
    background: rgba(17, 17, 17, 0.72);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(16px);

    transition:
        background-color var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.header.scrolled {
    background: rgba(17, 17, 17, 0.97);

    border-color:
        rgba(255, 255, 255, 0.06);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25);
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    min-height: 82px;
}


/* ==================================================
   9. MARCA Y LOGO
================================================== */

.brand {
    display: flex;
    align-items: center;
    gap: 13px;

    min-width: max-content;
}

.logo {
    width: 52px;
    height: 52px;

    padding: 4px;

    object-fit: contain;

    background: var(--white);
    border-radius: 12px;
}

.brand > div,
.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-name {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-slogan {
    margin-top: 5px;

    color: var(--yellow);

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ==================================================
   10. MENÚ DE NAVEGACIÓN
================================================== */

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu > a {
    position: relative;

    padding: 11px 14px;

    border-radius: 999px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.9rem;
    font-weight: 800;

    transition:
        color var(--transition),
        background-color var(--transition);
}

.menu > a:hover,
.menu > a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
}

.menu > a.active::after {
    content: "";

    position: absolute;
    bottom: 4px;
    left: 50%;

    width: 18px;
    height: 3px;

    background: var(--yellow);
    border-radius: 999px;

    transform: translateX(-50%);
}

.menu .menu-quote {
    margin-left: 8px;

    color: var(--black);
    background: var(--yellow);
}

.menu .menu-quote:hover {
    color: var(--black);
    background: var(--yellow-dark);
}

.menu .menu-quote::after {
    display: none;
}


/* ==================================================
   11. BOTÓN DEL MENÚ MÓVIL
================================================== */

.menu-button {
    display: none;

    width: 48px;
    height: 48px;

    color: var(--white);
    background: transparent;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 12px;

    font-size: 1.6rem;
    line-height: 1;

    transition:
        background-color var(--transition),
        border-color var(--transition);
}

.menu-button:hover {
    background:
        rgba(255, 255, 255, 0.08);

    border-color: var(--yellow);
}


/* ==================================================
   12. ESTADOS DE FOCO
================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

/* ==================================================
   13. PORTADA PRINCIPAL
================================================== */

.hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100vh;
    padding: 145px 0 90px;

    overflow: hidden;

    background-image:
linear-gradient(
rgba(0,0,0,.80),
rgba(0,0,0,.82)
),
url("../images/portada/portada.jpg");

background-size:cover;

background-position:center;

background-repeat:no-repeat;

    color: var(--white);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Capa oscura sobre la fotografía */




/* Brillo decorativo amarillo */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.62) 48%,
            rgba(0, 0, 0, 0.28) 100%
        );

    pointer-events: none;
}


/* ==================================================
   14. CONTENIDO DE LA PORTADA
================================================== */

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;
    padding: 9px 15px;

    color: var(--yellow);
    background:
        rgba(255, 212, 0, 0.10);

    border:
        1px solid rgba(255, 212, 0, 0.35);

    border-radius: 999px;

    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-label::before {
    content: "";

    width: 9px;
    height: 9px;

    flex-shrink: 0;

    background: var(--yellow);
    border-radius: 50%;

    box-shadow:
        0 0 0 6px rgba(255, 212, 0, 0.14);
}

.hero h1 {
    max-width: 900px;

    font-size:
        clamp(3rem, 7vw, 6.4rem);

    font-weight: 1000;
    letter-spacing: -0.055em;
    line-height: 0.95;

    text-wrap: balance;
}

.hero-description {
    max-width: 680px;

    margin-top: 27px;

    color:
        rgba(255, 255, 255, 0.80);

    font-size:
        clamp(1rem, 2vw, 1.22rem);
}


/* ==================================================
   15. BOTONES DE LA PORTADA
================================================== */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 36px;
}

.hero-actions .button {
    min-width: 190px;
}


/* ==================================================
   16. CARACTERÍSTICAS DE LA PORTADA
================================================== */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;

    margin-top: 42px;
}

.hero-features span {
    position: relative;

    padding-left: 21px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 0.91rem;
    font-weight: 700;
}

.hero-features span::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--yellow);

    font-weight: 1000;
}


/* ==================================================
   17. ANIMACIÓN DECORATIVA DE LA PORTADA
================================================== */

.hero-content {
    animation:
        heroEntrance 1s ease both;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==================================================
   18. BARRA AMARILLA DE CATEGORÍAS
================================================== */

.category-strip {
    position: relative;
    z-index: 5;

    background: var(--yellow);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-grid {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
}

.category-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 96px;
    padding: 20px 16px;

    color: var(--black);

    border-right:
        1px solid rgba(17, 17, 17, 0.14);

    font-size: 0.91rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.category-grid a:last-child {
    border-right: none;
}

.category-grid a:hover {
    background:
        rgba(255, 255, 255, 0.34);

    transform: translateY(-4px);
}

.category-icon {
    flex-shrink: 0;

    font-size: 1.7rem;
    font-weight: 900;
}


/* ==================================================
   19. SERVICIOS DESTACADOS
================================================== */

.featured-services,
.cards-3 {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}

.service-card {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-9px);

    border-color: var(--yellow);

    box-shadow:
        var(--shadow-medium);
}


/* ==================================================
   20. IMAGEN DE LAS TARJETAS
================================================== */

.service-image,
.media-placeholder {
    position: relative;

    overflow: hidden;

    aspect-ratio: 16 / 10;

    background:
        linear-gradient(
            135deg,
            var(--gray-100),
            var(--gray-200)
        );
}

.service-image::after,
.media-placeholder::after {
    content: "Imagen pendiente";

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    padding: 20px;

    color: var(--gray-600);

    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
}

.service-image img,
.media-placeholder img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}

.service-card:hover img {
    transform: scale(1.06);
}


/* Oculta una imagen cuando no existe */

img.image-error {
    display: none !important;
}


/* ==================================================
   21. CONTENIDO DE LAS TARJETAS
================================================== */

.service-content,
.card-body {
    padding: 27px;
}

.service-category,
.tag {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--yellow-dark);

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-content h3,
.card-body h3 {
    margin-bottom: 12px;

    color: var(--black);

    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
}

.service-content p,
.card-body p {
    margin-bottom: 20px;

    color: var(--gray-600);
}


/* ==================================================
   22. ENLACES DE TARJETAS
================================================== */

.text-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding-bottom: 4px;

    color: var(--black);

    font-weight: 900;
}

.text-link::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 3px;

    background: var(--yellow);

    transform: scaleX(0.35);
    transform-origin: left;

    transition:
        transform var(--transition);
}

.text-link:hover::after {
    transform: scaleX(1);
}

/* ==================================================
   23. SECCIÓN NOSOTROS
================================================== */

.about-section {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image,
.about-photo {
    position: relative;
}

.about-image > img,
.about-photo .media-placeholder {
    width: 100%;
    min-height: 560px;

    overflow: hidden;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            var(--gray-100),
            var(--gray-200)
        );

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow-large);
}

.about-photo .media-placeholder {
    aspect-ratio: 4 / 5;
}


/* Insignia de experiencia */

.experience-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 185px;
    min-height: 155px;

    padding: 24px;

    color: var(--black);
    background: var(--yellow);

    border:
        8px solid var(--white);

    border-radius: 24px;

    box-shadow:
        var(--shadow-medium);
}

.experience-badge strong {
    font-size: 2.7rem;
    font-weight: 1000;
    line-height: 1;
}

.experience-badge span {
    margin-top: 8px;

    font-size: 0.85rem;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}


/* Texto de la sección */

.about-content h2,
.about-copy h2 {
    margin-bottom: 24px;

    font-size:
        clamp(2.2rem, 4.5vw, 4rem);

    font-weight: 1000;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.about-content > p:not(.small-heading),
.about-copy > p:not(.eyebrow) {
    margin-bottom: 18px;

    color: var(--gray-600);

    font-size: 1.03rem;
}


/* Lista con palomitas */

.check-list {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px 25px;

    margin: 30px 0 35px;
}

.check-list li {
    position: relative;

    padding-left: 30px;

    color: var(--gray-800);

    font-weight: 800;
}

.check-list li::before {
    content: "✓";

    position: absolute;
    top: 1px;
    left: 0;

    display: grid;
    place-items: center;

    width: 22px;
    height: 22px;

    color: var(--black);
    background: var(--yellow);

    border-radius: 50%;

    font-size: 0.75rem;
    font-weight: 1000;
}


/* ==================================================
   24. CONTADORES
================================================== */

.statistics-section,
.statistics {
    padding: 75px 0;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--black),
            var(--black-light)
        );
}

.statistics-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
}

.stat {
    position: relative;

    padding: 25px 30px;

    text-align: center;

    border-right:
        1px solid rgba(255, 255, 255, 0.12);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;

    margin-bottom: 8px;

    color: var(--yellow);

    font-size:
        clamp(2.5rem, 5vw, 4.4rem);

    font-weight: 1000;
    line-height: 1;
}

.stat span {
    color:
        rgba(255, 255, 255, 0.75);

    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* ==================================================
   25. PRODUCTOS PERSONALIZADOS
================================================== */

.personalized-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}

.product-card {
    position: relative;

    min-height: 370px;

    overflow: hidden;

    background: var(--black);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        var(--shadow-medium);
}


/* Fondo para imagen pendiente */

.product-card::before {
    content: "Imagen pendiente";

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    padding: 20px;

    color: var(--gray-400);

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.product-card img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;
    min-height: 370px;

    object-fit: cover;

    opacity: 0.72;

    transition:
        transform 0.6s ease,
        opacity var(--transition);
}

.product-card:hover img {
    transform: scale(1.08);
    opacity: 0.55;
}


/* Texto inferior */

.product-card > div {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 70px 22px 24px;

    color: var(--white);

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.95)
        );
}

.product-card h3 {
    margin-bottom: 6px;

    font-size: 1.35rem;
    font-weight: 1000;
}

.product-card p {
    color:
        rgba(255, 255, 255, 0.75);

    font-size: 0.85rem;
}


/* ==================================================
   26. PROCESO DE TRABAJO
================================================== */

.process-section {
    color: var(--white);
    background: var(--black);
}

.process-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}

.process-step {
    position: relative;

    min-height: 285px;

    padding: 35px 28px;

    overflow: hidden;

    background: var(--black-soft);

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius:
        var(--radius-medium);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.process-step:hover {
    transform: translateY(-7px);

    background: var(--black-light);

    border-color: var(--yellow);
}

.process-step > span {
    display: block;

    margin-bottom: 35px;

    color: var(--yellow);

    font-size: 3.3rem;
    font-weight: 1000;
    line-height: 1;
}

.process-step h3 {
    margin-bottom: 13px;

    font-size: 1.3rem;
}

.process-step p {
    color: var(--gray-400);
}

.process-step::after {
    content: "";

    position: absolute;
    right: -30px;
    bottom: -30px;

    width: 110px;
    height: 110px;

    background:
        rgba(255, 212, 0, 0.06);

    border-radius: 50%;
}


/* ==================================================
   27. GALERÍA DEL INICIO
================================================== */

.home-gallery {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.gallery-preview {
    position: relative;

    overflow: hidden;

    aspect-ratio: 4 / 3;

    background:
        linear-gradient(
            135deg,
            var(--gray-100),
            var(--gray-200)
        );

    border-radius:
        var(--radius-medium);
}

.gallery-preview::before {
    content: "Imagen pendiente";

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    color: var(--gray-600);

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-preview::after {
    content: "Ver galería";

    position: absolute;
    z-index: 2;
    inset: 0;

    display: grid;
    place-items: center;

    color: var(--white);

    background:
        rgba(0, 0, 0, 0.62);

    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    opacity: 0;

    transition:
        opacity var(--transition);
}

.gallery-preview:hover::after {
    opacity: 1;
}

.gallery-preview img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}

.gallery-preview:hover img {
    transform: scale(1.08);
}


/* ==================================================
   28. TESTIMONIOS
================================================== */

.testimonials-section {
    background: var(--gray-50);
}

.testimonials-slider {
    position: relative;

    max-width: 900px;

    margin-inline: auto;
}

.testimonial {
    display: none;

    padding: 45px;

    text-align: center;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);
}

.testimonial.active {
    display: block;

    animation:
        testimonialEntrance 0.5s ease;
}

@keyframes testimonialEntrance {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars {
    color: var(--yellow-dark);

    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.testimonial blockquote {
    max-width: 700px;

    margin: 18px auto;

    color: var(--gray-800);

    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial strong {
    display: block;
}

.testimonial > span {
    display: block;

    margin-top: 4px;

    color: var(--gray-500);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;

    margin-top: 18px;
}

.slider-button {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    color: var(--white);
    background: var(--black);

    border: none;
    border-radius: 50%;

    font-size: 1.5rem;

    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.slider-button:hover {
    transform: translateY(-3px);

    color: var(--black);
    background: var(--yellow);
}

/* ==================================================
   29. LLAMADO A LA ACCIÓN
================================================== */

.cta-section {
    position: relative;

    padding: 90px 0;

    overflow: hidden;

    color: var(--black);
    background: var(--yellow);
}

.cta-section::before {
    content: "";

    position: absolute;
    top: -170px;
    right: -130px;

    width: 420px;
    height: 420px;

    border:
        70px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.cta-text {
    max-width: 760px;
}

.cta-text span {
    display: block;

    margin-bottom: 10px;

    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cta-text h2 {
    font-size:
        clamp(2.1rem, 5vw, 4.6rem);

    font-weight: 1000;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.cta-text p {
    max-width: 650px;

    margin-top: 18px;

    color: rgba(17, 17, 17, 0.74);

    font-size: 1.05rem;
    font-weight: 700;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;

    min-width: 220px;
}


/* ==================================================
   30. ENCABEZADO INTERIOR DE PÁGINAS
================================================== */

.page-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 500px;
    padding: 155px 0 85px;

    overflow: hidden;

    color: var(--white);
    background:
        linear-gradient(
            120deg,
            rgba(0, 0, 0, 0.97),
            rgba(0, 0, 0, 0.76)
        ),
        url("../images/portada.jpg")
        center / cover no-repeat;
}

.page-hero::after {
    content: "";

    position: absolute;
    right: -100px;
    bottom: -180px;

    width: 440px;
    height: 440px;

    background:
        radial-gradient(
            circle,
            rgba(255, 212, 0, 0.2),
            transparent 68%
        );
}

.page-hero-content {
    position: relative;
    z-index: 1;

    max-width: 850px;
}

.page-hero h1 {
    margin-bottom: 20px;

    font-size:
        clamp(3rem, 7vw, 6rem);

    font-weight: 1000;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.page-hero p {
    max-width: 680px;

    color:
        rgba(255, 255, 255, 0.76);

    font-size: 1.1rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    color: var(--yellow);

    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--white);
}


/* ==================================================
   31. CATÁLOGO DE SERVICIOS
================================================== */

.services-layout {
    display: grid;
    grid-template-columns:
        280px 1fr;

    align-items: start;
    gap: 40px;
}

.services-sidebar {
    position: sticky;
    top: 115px;

    padding: 28px;

    background: var(--black);

    border-radius:
        var(--radius-medium);
}

.services-sidebar h3 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: 1.2rem;
}

.services-sidebar a {
    display: block;

    padding: 12px 0;

    color: var(--gray-300);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.09);

    font-weight: 800;

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.services-sidebar a:last-child {
    border-bottom: none;
}

.services-sidebar a:hover {
    padding-left: 8px;
    color: var(--yellow);
}

.service-category-block {
    margin-bottom: 65px;
}

.service-category-block:last-child {
    margin-bottom: 0;
}

.service-category-title {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 28px;
}

.service-category-title span {
    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    color: var(--black);
    background: var(--yellow);

    border-radius: 16px;

    font-size: 1.45rem;
    font-weight: 1000;
}

.service-category-title h2 {
    font-size:
        clamp(1.8rem, 4vw, 3rem);

    font-weight: 1000;
    letter-spacing: -0.035em;
}

.service-list {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.service-list li {
    position: relative;

    min-height: 62px;

    display: flex;
    align-items: center;

    padding: 16px 18px 16px 45px;

    background: var(--gray-50);

    border:
        1px solid var(--gray-200);

    border-radius: 12px;

    color: var(--gray-800);

    font-weight: 800;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.service-list li::before {
    content: "";

    position: absolute;
    left: 19px;

    width: 10px;
    height: 10px;

    background: var(--yellow);
    border-radius: 50%;
}

.service-list li:hover {
    transform: translateY(-4px);

    background: var(--white);
    border-color: var(--yellow);
}


/* ==================================================
   32. GALERÍA GENERAL
================================================== */

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin-bottom: 40px;
}

.filter-button {
    padding: 11px 18px;

    color: var(--gray-700);
    background: var(--gray-100);

    border:
        1px solid var(--gray-200);

    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 900;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.filter-button:hover,
.filter-button.active {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);

    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.gallery-item {
    position: relative;

    min-height: 320px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--gray-100),
            var(--gray-200)
        );

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);
}

.gallery-item::before {
    content: "Imagen pendiente";

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    color: var(--gray-600);

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.gallery-item img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;
    min-height: 320px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 28px;

    color: var(--white);

    background:
        linear-gradient(
            transparent 35%,
            rgba(0, 0, 0, 0.9)
        );

    opacity: 0;

    transition:
        opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
}

.gallery-overlay span {
    color: var(--yellow);

    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}


/* ==================================================
   33. VALORES, MISIÓN Y VISIÓN
================================================== */

.values-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.value-card {
    min-height: 290px;

    padding: 34px;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-7px);

    border-color: var(--yellow);

    box-shadow:
        var(--shadow-medium);
}

.value-icon {
    display: grid;
    place-items: center;

    width: 62px;
    height: 62px;

    margin-bottom: 25px;

    color: var(--black);
    background: var(--yellow);

    border-radius: 18px;

    font-size: 1.55rem;
    font-weight: 1000;
}

.value-card h3 {
    margin-bottom: 13px;

    font-size: 1.4rem;
    font-weight: 1000;
}

.value-card p {
    color: var(--gray-600);
}


/* ==================================================
   34. INFORMACIÓN DE CONTACTO
================================================== */

.contact-grid {
    display: grid;
    grid-template-columns:
        0.85fr 1.15fr;

    align-items: start;
    gap: 45px;
}

.contact-information {
    padding: 38px;

    color: var(--white);
    background: var(--black);

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow-medium);
}

.contact-information h2 {
    margin-bottom: 15px;

    font-size: 2rem;
    font-weight: 1000;
}

.contact-information > p {
    margin-bottom: 28px;

    color: var(--gray-400);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    color: var(--black);
    background: var(--yellow);

    border-radius: 13px;

    font-weight: 1000;
}

.contact-item strong {
    display: block;

    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--gray-300);
}

.contact-item a:hover {
    color: var(--yellow);
}


/* ==================================================
   35. FORMULARIO
================================================== */

.contact-form {
    padding: 38px;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow-small);
}

.form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--gray-800);

    font-size: 0.88rem;
    font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    color: var(--black);
    background: var(--gray-50);

    border:
        1px solid var(--gray-200);

    border-radius: 12px;

    outline: none;

    transition:
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group textarea {
    min-height: 155px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--yellow);

    box-shadow:
        0 0 0 4px rgba(255, 212, 0, 0.14);
}

.form-message {
    display: none;

    margin-top: 18px;
    padding: 14px 16px;

    border-radius: 10px;

    font-weight: 800;
}

.form-message.success {
    display: block;

    color: #155724;
    background: #d4edda;
}

.form-message.error {
    display: block;

    color: #721c24;
    background: #f8d7da;
}


/* ==================================================
   36. MAPA
================================================== */

.map-section {
    padding-top: 0;
}

.map-wrapper {
    min-height: 430px;

    overflow: hidden;

    background: var(--gray-200);

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow-small);
}

.map-wrapper iframe {
    display: block;

    width: 100%;
    min-height: 430px;

    border: 0;
}


/* ==================================================
   37. PREGUNTAS FRECUENTES
================================================== */

.faq-container {
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    margin-bottom: 14px;

    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    border-radius: 14px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.faq-item.active {
    border-color: var(--yellow);

    box-shadow:
        var(--shadow-small);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: 100%;

    padding: 20px 22px;

    color: var(--black);
    background: transparent;

    border: none;

    text-align: left;
    font-weight: 900;
}

.faq-question span:last-child {
    color: var(--yellow-dark);

    font-size: 1.5rem;

    transition:
        transform var(--transition);
}

.faq-item.active
.faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 22px 22px;

    color: var(--gray-600);
}


/* ==================================================
   38. CÓDIGO QR
================================================== */

.qr-section {
    background: var(--gray-50);
}

.qr-card {
    display: grid;
    grid-template-columns:
        280px 1fr;

    align-items: center;
    gap: 45px;

    max-width: 900px;

    margin-inline: auto;
    padding: 42px;

    background: var(--white);

    border:
        1px solid var(--gray-200);

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow-medium);
}

.qr-image {
    display: grid;
    place-items: center;

    width: 100%;
    aspect-ratio: 1;

    padding: 25px;

    background: var(--gray-100);

    border:
        4px solid var(--yellow);

    border-radius: 24px;
}

.qr-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.qr-content h2 {
    margin-bottom: 14px;

    font-size: 2.2rem;
    font-weight: 1000;
    letter-spacing: -0.035em;
}

.qr-content p {
    margin-bottom: 23px;

    color: var(--gray-600);
}


/* ==================================================
   39. PIE DE PÁGINA
================================================== */

.footer {
    color: var(--white);
    background: #090909;
}

.footer-main {
    display: grid;
    grid-template-columns:
        1.3fr 0.8fr 0.9fr 1fr;

    gap: 45px;

    padding: 80px 0 55px;
}

.footer-brand p {
    max-width: 360px;

    margin-top: 20px;

    color: var(--gray-400);
}

.footer-title {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 11px;
}

.footer-links a,
.footer-links span {
    color: var(--gray-400);

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-links a:hover {
    padding-left: 5px;
    color: var(--yellow);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 24px;
}

.social-link {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    color: var(--white);
    background: var(--black-light);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    font-weight: 900;

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.social-link:hover {
    transform: translateY(-4px);

    color: var(--black);
    background: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 22px 0;

    color: var(--gray-500);

    border-top:
        1px solid rgba(255, 255, 255, 0.09);

    font-size: 0.85rem;
}


/* ==================================================
   40. BOTÓN FLOTANTE DE WHATSAPP
================================================== */

.whatsapp-floating {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    color: var(--white);
    background: var(--whatsapp);

    border:
        4px solid var(--white);

    border-radius: 50%;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.25);

    font-size: 1.8rem;
    font-weight: 1000;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.whatsapp-floating:hover {
    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.32);
}


/* ==================================================
   41. BOTÓN VOLVER ARRIBA
================================================== */

.back-to-top {
    position: fixed;
    z-index: 850;
    right: 31px;
    bottom: 98px;

    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    color: var(--white);
    background: var(--black);

    border: none;
    border-radius: 50%;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--black);
    background: var(--yellow);
}


/* ==================================================
   42. TABLETAS
================================================== */

@media (max-width: 1050px) {

    .menu {
        position: fixed;
        top: 82px;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        width: min(360px, 88vw);
        height: calc(100vh - 82px);

        padding: 25px;

        overflow-y: auto;

        background: rgba(17, 17, 17, 0.99);

        border-left:
            1px solid rgba(255, 255, 255, 0.08);

        transform: translateX(105%);

        transition:
            transform 0.4s ease;
    }

    .menu.open {
        transform: translateX(0);
    }

    .menu > a {
        padding: 15px 16px;

        border-radius: 10px;
    }

    .menu > a.active::after {
        display: none;
    }

    .menu .menu-quote {
        margin-top: 8px;
        margin-left: 0;

        text-align: center;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .category-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .category-grid a {
        border-bottom:
            1px solid rgba(17, 17, 17, 0.14);
    }

    .featured-services,
    .cards-3 {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-grid {
        gap: 45px;
    }

    .product-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-sidebar {
        position: static;

        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .services-sidebar h3 {
        width: 100%;
    }

    .services-sidebar a {
        padding: 9px 13px;

        border:
            1px solid rgba(255, 255, 255, 0.12);

        border-radius: 999px;
    }

    .services-sidebar a:hover {
        padding-left: 13px;
    }

    .service-list {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* ==================================================
   43. TELÉFONOS Y TABLETAS PEQUEÑAS
================================================== */

@media (max-width: 760px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container-width)
        );
    }

    .section {
        padding: 75px 0;
    }

    .navigation {
        min-height: 74px;
    }

    .menu {
        top: 74px;
        height: calc(100vh - 74px);
    }

    .logo {
        width: 46px;
        height: 46px;
    }

    .brand-name {
        font-size: 0.86rem;
    }

    .brand-slogan {
        font-size: 0.66rem;
    }

    .hero {
        min-height: auto;
        padding: 135px 0 75px;

        background-position: 60% center;
    }

    .hero::before {
        background:
            rgba(0, 0, 0, 0.82);
    }

    .hero h1 {
        font-size:
            clamp(2.8rem, 14vw, 4.7rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .category-grid a {
        min-height: 82px;

        border-right:
            1px solid rgba(17, 17, 17, 0.14);
    }

    .featured-services,
    .cards-3,
    .values-grid,
    .gallery-grid,
    .home-gallery {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image > img,
    .about-photo .media-placeholder {
        min-height: 430px;
    }

    .experience-badge {
        right: 15px;
        bottom: 15px;

        width: 155px;
        min-height: 130px;
    }

    .experience-badge strong {
        font-size: 2.2rem;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .statistics-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 25px;
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 32px 22px;
    }

    .testimonial blockquote {
        font-size: 1.08rem;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
    }

    .page-hero {
        min-height: 430px;
        padding: 135px 0 70px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-information,
    .contact-form {
        padding: 28px 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }

    .qr-card {
        grid-template-columns: 1fr;

        padding: 28px;
        text-align: center;
    }

    .qr-image {
        max-width: 260px;
        margin-inline: auto;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
        padding-top: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ==================================================
   44. TELÉFONOS PEQUEÑOS
================================================== */

@media (max-width: 480px) {

    .brand-text {
        display: none;
    }

    .hero-label {
        font-size: 0.7rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-grid a {
        min-height: 68px;

        border-right: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .service-content,
    .card-body {
        padding: 22px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;

        width: 56px;
        height: 56px;
    }

    .back-to-top {
        right: 20px;
        bottom: 82px;
    }
}


/* ==================================================
   45. ACCESIBILIDAD Y MOVIMIENTO REDUCIDO
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==================================================
   HEADER PROFESIONAL Y MENÚ DESPLEGABLE
================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(17, 17, 17, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: max-content;
}

.logo {
    width: 44px;
    height: 44px;

    object-fit: contain;

    background: white;
    border-radius: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-name {
    color: white;

    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-slogan {
    margin-top: 5px;

    color: var(--yellow);

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu > a,
.menu-dropdown-button {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 9px 12px;

    color: rgba(255, 255, 255, 0.84);
    background: transparent;

    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 800;

    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.menu > a:hover,
.menu > a.active,
.menu-dropdown-button:hover,
.menu-dropdown-button.active {
    color: white;
    background: rgba(255, 255, 255, 0.09);
}

.menu .menu-quote {
    margin-left: 8px;

    color: var(--black);
    background: var(--yellow);
}

.menu .menu-quote:hover {
    color: var(--black);
    background: var(--yellow-dark);
}


/* CONTENEDOR DEL DESPLEGABLE */

.menu-dropdown {
    position: relative;
}


/* PANEL OCULTO */

.menu-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;

    width: 330px;

    padding: 12px;

    background: #151515;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* MOSTRAR AL PASAR EL MOUSE */

.menu-dropdown:hover .menu-dropdown-panel,
.menu-dropdown:focus-within .menu-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* ENLACES DEL DESPLEGABLE */

.menu-dropdown-panel > a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;

    padding: 12px;

    color: white;

    border-radius: 12px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.menu-dropdown-panel > a:hover {
    background: rgba(255, 212, 0, 0.1);
    transform: translateX(4px);
}

.menu-dropdown-panel > a > span {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    color: var(--black);
    background: var(--yellow);

    border-radius: 11px;

    font-size: 1.1rem;
    font-weight: 900;
}

.menu-dropdown-panel strong {
    display: block;

    margin-bottom: 2px;

    font-size: 0.92rem;
}

.menu-dropdown-panel small {
    display: block;

    color: var(--gray-400);

    font-size: 0.73rem;
    line-height: 1.25;
}


/* BOTÓN MÓVIL */

.menu-button {
    display: none;

    width: 46px;
    height: 46px;

    color: white;
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;

    font-size: 1.45rem;
}


/* AJUSTE DE LA PORTADA */

.page-hero {
    padding-top: 125px;
}


/* ==================================================
   RESPONSIVE DEL HEADER
================================================== */

@media (max-width: 1050px) {

    .menu-button {
        display: grid;
        place-items: center;
    }

    .menu {
        position: fixed;
        top: 72px;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        width: min(360px, 88vw);
        height: calc(100vh - 72px);

        padding: 22px;

        overflow-y: auto;

        background: #111;

        transform: translateX(105%);

        transition: transform 0.35s ease;
    }

    .menu.open {
        transform: translateX(0);
    }

    .menu > a,
    .menu-dropdown-button {
        justify-content: space-between;

        padding: 14px 15px;

        border-radius: 10px;
    }

    .menu .menu-quote {
        margin-top: 8px;
        margin-left: 0;

        justify-content: center;
    }

    .menu-dropdown {
        width: 100%;
    }

    .menu-dropdown-panel {
        position: static;

        width: 100%;
        max-height: 0;

        margin-top: 0;
        padding: 0;

        overflow: hidden;

        background: transparent;

        border: none;
        border-radius: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        transition:
            max-height 0.35s ease,
            margin-top 0.35s ease;
    }

    .menu-dropdown:hover .menu-dropdown-panel,
    .menu-dropdown:focus-within .menu-dropdown-panel {
        max-height: 500px;
        margin-top: 8px;

        transform: none;
    }

    .menu-dropdown-panel > a {
        padding: 10px;
    }

    .menu-dropdown-panel > a > span {
        width: 36px;
        height: 36px;
    }
}


@media (max-width: 620px) {

    .brand-name {
        font-size: 0.8rem;
    }

    .brand-slogan {
        font-size: 0.6rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }
}

/* ==================================================
   BUSCADOR DEL SITIO
================================================== */

.search-open {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    color: var(--white);
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    font-size: 1rem;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.search-open:hover {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);

    transform: translateY(-2px);
}


/* Fondo completo */

.search-modal {
    position: fixed;
    z-index: 5000;
    inset: 0;

    display: grid;
    place-items: start center;

    padding: 110px 20px 30px;

    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.search-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Caja central */

.search-box {
    width: min(720px, 100%);
    max-height: calc(100vh - 150px);

    padding: 28px;

    overflow-y: auto;

    color: var(--white);
    background: #171717;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);

    transform: translateY(-20px);

    transition: transform 0.3s ease;
}

.search-modal.open .search-box {
    transform: translateY(0);
}


/* Parte superior */

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 22px;
}

.search-header h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.1;
}

.search-close {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    color: var(--white);
    background: rgba(255, 255, 255, 0.08);

    border: 0;
    border-radius: 50%;

    font-size: 1.2rem;
}

.search-close:hover {
    color: var(--black);
    background: var(--yellow);
}


/* Campo de búsqueda */

.search-label {
    display: block;

    margin-bottom: 8px;

    color: var(--gray-300);

    font-size: 0.85rem;
    font-weight: 800;
}

.search-input {
    width: 100%;

    padding: 16px 18px;

    color: var(--white);
    background: #242424;

    border: 2px solid transparent;
    border-radius: 14px;

    outline: none;

    font-size: 1rem;
}

.search-input:focus {
    border-color: var(--yellow);

    box-shadow:
        0 0 0 4px rgba(255, 212, 0, 0.12);
}


/* Resultados */

.search-results {
    display: grid;
    gap: 10px;

    margin-top: 20px;
}

.search-result {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 14px;

    padding: 14px;

    color: var(--white);
    background: #222;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.search-result:hover {
    background: rgba(255, 212, 0, 0.08);
    border-color: var(--yellow);

    transform: translateX(4px);
}

.search-result-icon {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    color: var(--black);
    background: var(--yellow);

    border-radius: 12px;

    font-size: 1.2rem;
}

.search-result strong {
    display: block;

    margin-bottom: 3px;
}

.search-result small {
    display: block;

    color: var(--gray-400);
}

.search-help,
.search-empty {
    padding: 20px;

    color: var(--gray-400);
    background: #222;

    border-radius: 14px;

    text-align: center;
}


/* Celulares */

@media (max-width: 1050px) {

    .search-open {
        width: 100%;
        height: 48px;

        border-radius: 10px;
    }
}

@media (max-width: 620px) {

    .search-modal {
        padding: 85px 12px 20px;
    }

    .search-box {
        padding: 20px;
    }
}

/* ==================================================
   ENCABEZADO BLANCO DEFINITIVO
================================================== */

.header,
.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    color: #111111;
    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #e5e5e5;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* Nombre de la empresa */

.header .brand-name {
    color: #111111;
}

.header .brand-slogan {
    color: #d9b400;
}


/* Logo */

.header .logo {
    background: #ffffff;
    border: 1px solid #eeeeee;
}


/* Enlaces principales */

.header .menu > a,
.header .menu-dropdown-button {
    color: #333333;
}

.header .menu > a:hover,
.header .menu > a.active,
.header .menu-dropdown-button:hover,
.header .menu-dropdown-button.active {
    color: #000000;
    background: #f1f1f1;
}


/* Línea amarilla del enlace activo */

.header .menu > a.active::after {
    background: #ffd400;
}


/* Botón Cotizar */

.header .menu .menu-quote {
    color: #111111;
    background: #ffd400;
}

.header .menu .menu-quote:hover {
    color: #111111;
    background: #e5bd00;
}


/* Botón de búsqueda */

.header .search-open {
    color: #222222;
    background: #f4f4f4;

    border-color: #dddddd;
}

.header .search-open:hover {
    color: #111111;
    background: #ffd400;
    border-color: #ffd400;
}


/* Menú desplegable */

.header .menu-dropdown-panel {
    color: #222222;
    background: #ffffff;

    border-color: #e4e4e4;

    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
}

.header .menu-dropdown-panel > a {
    color: #222222;
}

.header .menu-dropdown-panel > a:hover {
    color: #111111;
    background: rgba(255, 212, 0, 0.14);
}

.header .menu-dropdown-panel small {
    color: #666666;
}


/* Botón del menú móvil */

.header .menu-button {
    color: #111111;
    background: #f4f4f4;

    border-color: #dddddd;
}

.header .menu-button:hover {
    color: #111111;
    background: #ffd400;
    border-color: #ffd400;
}


/* Menú lateral en tablet y celular */

@media (max-width: 1050px) {

    .header .menu {
        background: #ffffff;
        border-left: 1px solid #e5e5e5;

        box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.12);
    }

    .header .menu > a,
    .header .menu-dropdown-button {
        color: #222222;
    }
tarjetas-presentacion.jpg
    .header .menu > a:hover,
    .header .menu > a.active,
    .header .menu-dropdown-button:hover,
    .header .menu-dropdown-button.active {
        color: #000000;
        background: #f1f1f1;
    }

    .header .menu-dropdown-panel {
        background: #fafafa;
    }
}

/* =========================================
   PORTADA EXCLUSIVA DE INICIO
========================================= */

.home-page .hero {
    position: relative;

    background-image: url("../images/portada.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* Capa oscura para que el texto se lea */

.home-page .hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.68) 48%,
        rgba(0, 0, 0, 0.30) 100%
    );

    pointer-events: none;
}


/* Mantiene el texto encima */

.home-page .hero-content {
    position: relative;
    z-index: 2;
}

/*==================================================
        PÁGINA WEBS
==================================================*/

.web-page{

    background:#f7f8fb;

}


/*=====================================
            HERO
======================================*/

.web-hero{

    position:relative;

    overflow:hidden;

    padding:170px 0 120px;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    #101010,
    #232323);

}


.web-hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-250px;
    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,212,0,.22),
    transparent 70%);

}


.web-hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
    1fr
    520px;

    gap:80px;

    align-items:center;

}


/*=====================================
        TEXTO
======================================*/

.web-hero-content h1{

    margin:18px 0 28px;

    font-size:
    clamp(3rem,6vw,5.8rem);

    line-height:.95;

    font-weight:900;

}


.web-hero-content h1 span{

    color:#FFD400;

}


.web-hero-description{

    max-width:620px;

    color:
    rgba(255,255,255,.78);

    font-size:1.12rem;

    line-height:1.8;

}


.web-eyebrow{

    display:inline-block;

    color:#FFD400;

    font-size:.82rem;

    font-weight:900;

    letter-spacing:.18em;

    text-transform:uppercase;

}


/*=====================================
        BOTONES
======================================*/

.web-hero-actions{

    display:flex;

    gap:18px;

    margin-top:42px;

    flex-wrap:wrap;

}


.web-button-outline{

    color:#fff;

    background:transparent;

    border:2px solid rgba(255,255,255,.35);

}


.web-button-outline:hover{

    color:#111;

    background:#fff;

}


/*=====================================
        BENEFICIOS
======================================*/

.web-hero-benefits{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin-top:45px;

}


.web-hero-benefits div{

    display:flex;

    align-items:center;

    gap:10px;

}


.web-hero-benefits span{

    display:grid;

    place-items:center;

    width:30px;
    height:30px;

    color:#111;

    background:#FFD400;

    border-radius:50%;

    font-weight:900;

}


.web-hero-benefits p{

    font-weight:700;

}


/*=====================================
        MAQUETA
======================================*/

.web-browser-preview{

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    box-shadow:
    0 40px 80px
    rgba(0,0,0,.35);

    transition:.45s;

}


.web-browser-preview:hover{

    transform:
    translateY(-8px);

}


.web-browser-bar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 20px;

    background:#ececec;

}


.web-browser-dots{

    display:flex;

    gap:8px;

}


.web-browser-dots span{

    width:12px;
    height:12px;

    border-radius:50%;

}


.web-browser-dots span:nth-child(1){

    background:#ff5f57;

}

.web-browser-dots span:nth-child(2){

    background:#febc2e;

}

.web-browser-dots span:nth-child(3){

    background:#28c840;

}


.web-browser-address{

    padding:8px 24px;

    background:#fff;

    border-radius:999px;

    color:#888;

    font-size:.78rem;

}

/* ==================================================
   PÁGINA WEBS — PARTE 2
   Maqueta del navegador, estadísticas,
   servicios y sección de lo que incluye
================================================== */


/* ==================================================
   CONTENIDO INTERNO DEL NAVEGADOR
================================================== */

.web-browser-content {
    min-height: 430px;
    padding: 24px;

    color: #111111;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f4f5f7
        );
}


/* Barra interior */

.web-preview-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e2e2e2;
}

.web-preview-logo {
    padding: 8px 13px;

    color: #111111;
    background: #ffd400;

    border-radius: 8px;

    font-size: 0.72rem;
    font-weight: 1000;
    letter-spacing: 0.06em;
}

.web-preview-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.web-preview-links span {
    display: block;

    width: 34px;
    height: 6px;

    background: #d2d2d2;
    border-radius: 999px;
}


/* Parte principal */

.web-preview-main {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 32px;

    min-height: 330px;
    padding-top: 30px;
}

.web-preview-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.web-preview-copy > span {
    display: block;

    border-radius: 999px;
}

.web-preview-label {
    width: 90px;
    height: 9px;

    margin-bottom: 18px;

    background: #ffd400;
}

.web-preview-title {
    width: 100%;
    height: 21px;

    margin-bottom: 10px;

    background: #171717;
}

.web-preview-title.short {
    width: 72%;

    margin-bottom: 22px;
}

.web-preview-text {
    width: 95%;
    height: 8px;

    margin-bottom: 9px;

    background: #cccccc;
}

.web-preview-text.medium {
    width: 68%;
}

.web-preview-buttons {
    display: flex;
    gap: 10px;

    margin-top: 24px;
}

.web-preview-buttons span {
    display: block;

    width: 92px;
    height: 30px;

    background: #ffd400;
    border-radius: 999px;
}

.web-preview-buttons span:last-child {
    background: #e5e5e5;

    border: 1px solid #d3d3d3;
}


/* Tarjetas decorativas */

.web-preview-visual {
    position: relative;

    min-height: 255px;
}

.web-preview-card {
    position: absolute;

    width: 145px;
    height: 170px;

    border-radius: 20px;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.4s ease;
}

.card-one {
    top: 18px;
    left: 0;

    background:
        linear-gradient(
            145deg,
            #ffd400,
            #d89d00
        );

    transform: rotate(-8deg);
}

.card-two {
    top: 58px;
    right: 0;

    background:
        linear-gradient(
            145deg,
            #181818,
            #4d4d4d
        );

    transform: rotate(8deg);
}

.card-three {
    right: 55px;
    bottom: 0;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #dddddd
        );

    border: 1px solid #d3d3d3;
}

.web-browser-preview:hover .card-one {
    transform:
        rotate(-4deg)
        translateY(-5px);
}

.web-browser-preview:hover .card-two {
    transform:
        rotate(4deg)
        translateY(-7px);
}

.web-browser-preview:hover .card-three {
    transform:
        translateY(-9px);
}


/* ==================================================
   ESTADÍSTICAS DEL HERO
================================================== */

.web-hero-stats {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    margin-top: 75px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 20px;
}

.web-hero-stats > div {
    padding: 25px 20px;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(10px);
}

.web-hero-stats strong {
    display: block;

    margin-bottom: 7px;

    color: #ffd400;

    font-size:
        clamp(1.8rem, 4vw, 3rem);

    font-weight: 1000;
    line-height: 1;
}

.web-hero-stats span {
    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* ==================================================
   SERVICIOS WEB
================================================== */

.web-services-section {
    background: #f7f8fb;
}

.web-services-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.web-service-card {
    position: relative;

    min-height: 460px;

    padding: 34px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6e6e6;
    border-radius: 24px;

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.web-service-card:hover {
    transform: translateY(-9px);

    border-color: #ffd400;

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.13);
}

.web-service-number {
    position: absolute;
    top: 18px;
    right: 22px;

    color: #ededed;

    font-size: 3.5rem;
    font-weight: 1000;
    line-height: 1;
}

.web-service-icon {
    display: grid;
    place-items: center;

    width: 66px;
    height: 66px;

    margin-bottom: 28px;

    color: #111111;
    background: #ffd400;

    border-radius: 18px;

    font-size: 1.7rem;

    box-shadow:
        0 12px 28px rgba(255, 212, 0, 0.22);
}

.web-service-card h3 {
    margin-bottom: 15px;

    color: #111111;

    font-size: 1.45rem;
    font-weight: 1000;
    line-height: 1.15;
}

.web-service-card > p {
    margin-bottom: 24px;

    color: #666666;
}

.web-service-card ul {
    display: grid;
    gap: 11px;

    margin-bottom: 28px;
}

.web-service-card li {
    position: relative;

    padding-left: 24px;

    color: #3f3f3f;

    font-size: 0.9rem;
    font-weight: 700;
}

.web-service-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #c5a300;

    font-weight: 1000;
}

.web-service-card .text-link {
    margin-top: auto;
}


/* ==================================================
   QUÉ INCLUYE
================================================== */

.web-included-section {
    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 212, 0, 0.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #101010,
            #242424
        );
}

.web-included-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(430px, 1.05fr);

    align-items: center;
    gap: 75px;
}

.web-included-content h2 {
    max-width: 680px;

    margin-bottom: 24px;

    font-size:
        clamp(2.4rem, 5vw, 4.5rem);

    font-weight: 1000;
    letter-spacing: -0.05em;
    line-height: 1;
}

.web-included-content > p:not(.web-eyebrow) {
    max-width: 650px;

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 1.05rem;
}

.web-included-list {
    display: grid;
    gap: 18px;

    margin-top: 34px;
}

.web-included-list > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;

    padding: 17px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 15px;
}

.web-included-list > div > span {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    color: #111111;
    background: #ffd400;

    border-radius: 50%;

    font-weight: 1000;
}

.web-included-list strong {
    display: block;

    margin-bottom: 4px;
}

.web-included-list p {
    color:
        rgba(255, 255, 255, 0.63);

    font-size: 0.88rem;
}


/* ==================================================
   PANEL DE CÓDIGO
================================================== */

.web-included-panel {
    position: relative;
}

.web-code-window {
    overflow: hidden;

    background: #121212;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 24px;

    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.42);

    transform:
        perspective(1200px)
        rotateY(-4deg);

    transition:
        transform 0.45s ease;
}

.web-code-window:hover {
    transform:
        perspective(1200px)
        rotateY(0)
        translateY(-6px);
}

.web-code-window-top {
    display: flex;
    align-items: center;
    gap: 8px;

    min-height: 52px;
    padding: 0 18px;

    background: #1f1f1f;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.web-code-window-top > span {
    width: 11px;
    height: 11px;

    border-radius: 50%;
}

.web-code-window-top > span:nth-child(1) {
    background: #ff5f57;
}

.web-code-window-top > span:nth-child(2) {
    background: #febc2e;
}

.web-code-window-top > span:nth-child(3) {
    background: #28c840;
}

.web-code-window-top small {
    margin-left: auto;

    color: #888888;

    font-size: 0.75rem;
}

.web-code-layout {
    display: grid;
    grid-template-columns:
        190px 1fr;

    min-height: 410px;
}

.web-code-sidebar {
    display: flex;
    flex-direction: column;
    gap: 13px;

    padding: 24px 18px;

    color: #a9a9a9;
    background: #181818;

    border-right:
        1px solid rgba(255, 255, 255, 0.07);

    font-family:
        Consolas,
        Monaco,
        monospace;

    font-size: 0.74rem;
}

.web-code-sidebar .folder {
    color: #ffd400;
}

.web-code-lines {
    display: flex;
    flex-direction: column;
    gap: 15px;

    padding: 34px 28px;
}

.web-code-lines span {
    display: block;

    width: 72%;
    height: 8px;

    background:
        linear-gradient(
            90deg,
            #ffd400 0 18%,
            #6bcfff 18% 52%,
            #d596ff 52% 100%
        );

    border-radius: 999px;

    opacity: 0.72;
}

.web-code-lines span.long {
    width: 92%;
}

.web-code-lines span.medium {
    width: 63%;
}

.web-code-lines span.short {
    width: 42%;
}


/* Etiquetas flotantes */

.web-floating-badge {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 15px;

    color: #111111;
    background: #ffffff;

    border-radius: 999px;

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.25);

    font-size: 0.8rem;
    font-weight: 900;
}

.web-badge-mobile {
    left: -26px;
    bottom: 45px;
}

.web-badge-secure {
    top: 72px;
    right: -22px;
}


/* ==================================================
   RESPONSIVE DE ESTA PARTE
================================================== */

@media (max-width: 1050px) {

    .web-hero-grid,
    .web-included-grid {
        grid-template-columns: 1fr;
    }

    .web-browser-preview,
    .web-included-panel {
        max-width: 760px;
        width: 100%;

        margin-inline: auto;
    }

    .web-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .web-code-window {
        transform: none;
    }
}


@media (max-width: 760px) {

    .web-preview-main {
        grid-template-columns: 1fr;
    }

    .web-preview-visual {
        display: none;
    }

    .web-hero-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .web-services-grid {
        grid-template-columns: 1fr;
    }

    .web-code-layout {
        grid-template-columns: 1fr;
    }

    .web-code-sidebar {
        display: none;
    }

    .web-floating-badge {
        position: static;

        display: inline-flex;

        margin-top: 12px;
        margin-right: 6px;
    }
}


@media (max-width: 480px) {

    .web-hero-stats {
        grid-template-columns: 1fr;
    }

    .web-service-card {
        min-height: auto;
        padding: 27px 22px;
    }

    .web-browser-content {
        padding: 16px;
    }

    .web-code-lines {
        padding: 25px 20px;
    }
}

/* ==================================================
   PÁGINA WEBS — PARTE 3
   Proceso, paquetes y formulario
================================================== */


/* ==================================================
   PROCESO DE TRABAJO
================================================== */

.web-process-section {
    background: #ffffff;
}

.web-process-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.web-process-card {
    position: relative;

    min-height: 310px;

    padding: 34px 30px;

    overflow: hidden;

    background: #f7f8fb;

    border: 1px solid #e8e8e8;
    border-radius: 22px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.web-process-card:hover {
    transform: translateY(-8px);

    border-color: #ffd400;

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.11);
}

.web-process-number {
    position: absolute;
    top: 20px;
    right: 22px;

    color: #e9e9e9;

    font-size: 4rem;
    font-weight: 1000;
    line-height: 1;
}

.web-process-icon {
    display: grid;
    place-items: center;

    width: 62px;
    height: 62px;

    margin-bottom: 25px;

    color: #111111;
    background: #ffd400;

    border-radius: 18px;

    font-size: 1.6rem;

    box-shadow:
        0 12px 28px rgba(255, 212, 0, 0.23);
}

.web-process-card h3 {
    margin-bottom: 13px;

    color: #111111;

    font-size: 1.35rem;
    font-weight: 1000;
}

.web-process-card p {
    color: #686868;
}


/* Línea decorativa */

.web-process-card::after {
    content: "";

    position: absolute;
    right: -45px;
    bottom: -45px;

    width: 130px;
    height: 130px;

    background:
        rgba(255, 212, 0, 0.07);

    border-radius: 50%;
}


/* ==================================================
   PAQUETES
================================================== */

.web-packages-section {
    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 212, 0, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0d0d0d,
            #232323
        );
}

.web-packages-section .section-heading h2 {
    color: #ffffff;
}

.web-packages-section .section-heading > div {
    color:
        rgba(255, 255, 255, 0.67);
}

.web-packages-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: stretch;
    gap: 25px;
}

.web-package-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 610px;

    padding: 38px 32px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: 26px;

    backdrop-filter: blur(12px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.web-package-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(255, 212, 0, 0.7);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.32);
}

.web-package-card.featured {
    color: #111111;
    background: #ffffff;

    border-color: #ffd400;

    transform: scale(1.035);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.34);
}

.web-package-card.featured:hover {
    transform:
        scale(1.035)
        translateY(-9px);
}

.web-package-recommended {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 7px 12px;

    color: #111111;
    background: #ffd400;

    border-radius: 999px;

    font-size: 0.68rem;
    font-weight: 1000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.web-package-label {
    margin-bottom: 11px;

    color: #ffd400;

    font-size: 0.76rem;
    font-weight: 1000;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.web-package-card.featured .web-package-label {
    color: #b89300;
}

.web-package-card h3 {
    margin-bottom: 14px;

    font-size: 1.75rem;
    font-weight: 1000;
    line-height: 1.1;
}

.web-package-description {
    min-height: 78px;

    color:
        rgba(255, 255, 255, 0.65);
}

.web-package-card.featured
.web-package-description {
    color: #686868;
}


/* Precio */

.web-package-price {
    display: flex;
    flex-direction: column;

    margin: 30px 0;

    padding: 22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.web-package-card.featured
.web-package-price {
    border-color: #e6e6e6;
}

.web-package-price span {
    margin-bottom: 3px;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.web-package-card.featured
.web-package-price span {
    color: #777777;
}

.web-package-price strong {
    color: #ffd400;

    font-size: 2.15rem;
    font-weight: 1000;
    line-height: 1;
}

.web-package-card.featured
.web-package-price strong {
    color: #111111;
}

.web-package-price small {
    margin-top: 6px;

    color:
        rgba(255, 255, 255, 0.46);
}

.web-package-card.featured
.web-package-price small {
    color: #777777;
}


/* Lista */

.web-package-card ul {
    display: grid;
    gap: 13px;

    margin-bottom: 32px;
}

.web-package-card li {
    position: relative;

    padding-left: 26px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    font-weight: 700;
}

.web-package-card.featured li {
    color: #3f3f3f;
}

.web-package-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ffd400;

    font-weight: 1000;
}

.web-package-card.featured li::before {
    color: #b89300;
}


/* Botones */

.web-package-card .button {
    width: 100%;

    margin-top: auto;
}

.web-package-button {
    color: #ffffff;
    background: transparent;

    border-color:
        rgba(255, 255, 255, 0.42);
}

.web-package-button:hover {
    color: #111111;
    background: #ffffff;
    border-color: #ffffff;
}


/* Nota inferior */

.web-packages-note {
    max-width: 900px;

    margin: 35px auto 0;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.88rem;
    text-align: center;
}


/* ==================================================
   COTIZACIÓN WEB
================================================== */

.web-quote-section {
    background: #f7f8fb;
}

.web-quote-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(500px, 1.2fr);

    align-items: start;
    gap: 55px;
}

.web-quote-content {
    position: sticky;
    top: 120px;

    padding: 38px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 212, 0, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #101010,
            #242424
        );

    border-radius: 26px;

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.2);
}

.web-quote-content h2 {
    margin-bottom: 20px;

    font-size:
        clamp(2.2rem, 4.5vw, 4rem);

    font-weight: 1000;
    letter-spacing: -0.05em;
    line-height: 1;
}

.web-quote-content > p:not(.web-eyebrow) {
    color:
        rgba(255, 255, 255, 0.68);
}


/* Contactos */

.web-quote-contact {
    display: grid;
    gap: 12px;

    margin: 30px 0;
}

.web-quote-contact a {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 14px;

    padding: 15px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 15px;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.web-quote-contact a:hover {
    transform: translateX(5px);

    background:
        rgba(255, 212, 0, 0.09);

    border-color:
        rgba(255, 212, 0, 0.5);
}

.web-quote-contact a > span {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    color: #111111;
    background: #ffd400;

    border-radius: 14px;

    font-size: 1.2rem;
}

.web-quote-contact strong,
.web-quote-contact small {
    display: block;
}

.web-quote-contact small {
    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.62);
}


/* Consejo */

.web-quote-advice {
    padding: 20px;

    background:
        rgba(255, 212, 0, 0.1);

    border:
        1px solid rgba(255, 212, 0, 0.26);

    border-radius: 16px;
}

.web-quote-advice strong {
    display: block;

    margin-bottom: 7px;

    color: #ffd400;
}

.web-quote-advice p {
    color:
        rgba(255, 255, 255, 0.7);

    font-size: 0.88rem;
}


/* ==================================================
   FORMULARIO WEB
================================================== */

.web-quote-form {
    padding: 38px;

    background: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 26px;

    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.09);
}

.web-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.web-quote-form .form-group {
    gap: 8px;
}

.web-quote-form label {
    color: #222222;

    font-size: 0.87rem;
    font-weight: 900;
}

.web-quote-form input,
.web-quote-form select,
.web-quote-form textarea {
    width: 100%;

    padding: 15px 16px;

    color: #111111;
    background: #f7f8fb;

    border: 1px solid #dddddd;
    border-radius: 12px;

    outline: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.web-quote-form textarea {
    min-height: 155px;
    resize: vertical;
}

.web-quote-form input:focus,
.web-quote-form select:focus,
.web-quote-form textarea:focus {
    background: #ffffff;
    border-color: #ffd400;

    box-shadow:
        0 0 0 4px rgba(255, 212, 0, 0.13);
}

.web-quote-form .button {
    width: 100%;
}

.web-form-note {
    margin-top: 18px;

    color: #888888;

    font-size: 0.8rem;
    text-align: center;
}


/* ==================================================
   RESPONSIVE DE ESTA PARTE
================================================== */

@media (max-width: 1050px) {

    .web-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .web-packages-grid {
        grid-template-columns: 1fr;

        max-width: 760px;

        margin-inline: auto;
    }

    .web-package-card.featured {
        transform: none;
    }

    .web-package-card.featured:hover {
        transform: translateY(-9px);
    }

    .web-quote-grid {
        grid-template-columns: 1fr;
    }

    .web-quote-content {
        position: static;
    }
}


@media (max-width: 760px) {

    .web-process-grid {
        grid-template-columns: 1fr;
    }

    .web-form-grid {
        grid-template-columns: 1fr;
    }

    .web-quote-form,
    .web-quote-content {
        padding: 28px 22px;
    }
}


@media (max-width: 480px) {

    .web-process-card,
    .web-package-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .web-package-recommended {
        position: static;

        display: inline-flex;

        margin-bottom: 18px;
    }

    .web-package-description {
        min-height: auto;
    }
}

/* ==================================================
   PÁGINA WEBS — PARTE 4
   Preguntas frecuentes, llamado final,
   WhatsApp especial y ajustes finales
================================================== */


/* ==================================================
   PREGUNTAS FRECUENTES WEB
================================================== */

.web-faq-section {
    background: #ffffff;
}

.web-faq-section .faq-container {
    max-width: 900px;
}

.web-faq-section .faq-item {
    background: #f7f8fb;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    box-shadow: none;
}

.web-faq-section .faq-item.active {
    background: #ffffff;
    border-color: #ffd400;

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.08);
}

.web-faq-section .faq-question {
    padding: 22px 24px;

    color: #111111;

    font-size: 1rem;
    font-weight: 900;
}

.web-faq-section .faq-question:hover {
    background:
        rgba(255, 212, 0, 0.07);
}

.web-faq-section .faq-question span:last-child {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    color: #111111;
    background: #ffd400;

    border-radius: 50%;

    font-size: 1.3rem;
    line-height: 1;
}

.web-faq-section .faq-answer p {
    padding:
        0
        24px
        24px;

    color: #666666;
}


/* ==================================================
   LLAMADO FINAL
================================================== */

.web-final-cta {
    position: relative;

    padding: 95px 0;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 212, 0, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #111111,
            #282828
        );
}

.web-final-cta::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -120px;

    width: 460px;
    height: 460px;

    border:
        72px solid rgba(255, 255, 255, 0.035);

    border-radius: 50%;

    pointer-events: none;
}

.web-final-cta-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 55px;
}

.web-final-cta-content {
    max-width: 820px;
}

.web-final-cta-content h2 {
    margin-bottom: 20px;

    font-size:
        clamp(2.6rem, 6vw, 5.2rem);

    font-weight: 1000;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.web-final-cta-content > p:not(.web-eyebrow) {
    max-width: 680px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 1.05rem;
}

.web-final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 13px;

    min-width: 245px;
}

.web-final-cta-actions .button {
    width: 100%;
}


/* ==================================================
   WHATSAPP ESPECIAL DE WEBS
================================================== */

.web-whatsapp-floating {
    background:
        linear-gradient(
            135deg,
            #25d366,
            #16a44c
        );

    box-shadow:
        0 16px 38px rgba(37, 211, 102, 0.32);
}

.web-whatsapp-floating::before {
    content: "Páginas web";

    position: absolute;
    right: calc(100% + 12px);

    min-width: max-content;

    padding: 8px 12px;

    color: #111111;
    background: #ffffff;

    border-radius: 999px;

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.16);

    font-size: 0.76rem;
    font-weight: 900;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.web-whatsapp-floating:hover::before {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* ==================================================
   ENLACE NEW DEL MENÚ
================================================== */

.menu-new-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu-new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 20px;

    padding: 0 8px;

    color: #111111;
    background: #ffd400;

    border-radius: 999px;

    font-size: 0.56rem;
    font-weight: 1000;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    animation:
        webNewPulse 2.2s infinite;
}

@keyframes webNewPulse {

    0% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 212, 0, 0.52);
    }

    70% {
        transform: scale(1.06);

        box-shadow:
            0 0 0 9px rgba(255, 212, 0, 0);
    }

    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 212, 0, 0);
    }
}


/* ==================================================
   DETALLES GENERALES DE LA PÁGINA WEBS
================================================== */

.web-page main {
    overflow: hidden;
}

.web-page .section-heading > p,
.web-page .web-eyebrow {
    color: #c5a300;
}

.web-page .section-heading > span {
    background: #ffd400;
}

.web-page .text-link::after {
    background: #ffd400;
}

.web-page .button-yellow {
    color: #111111;
    background: #ffd400;
    border-color: #ffd400;
}

.web-page .button-yellow:hover {
    color: #111111;
    background: #e5bd00;
    border-color: #e5bd00;
}


/* ==================================================
   ANIMACIÓN SUAVE DE ELEMENTOS WEB
================================================== */

.web-browser-preview,
.web-service-card,
.web-process-card,
.web-package-card,
.web-code-window,
.web-quote-form,
.web-quote-content {
    will-change: transform;
}


/* ==================================================
   AJUSTES PARA TABLETAS
================================================== */

@media (max-width: 1050px) {

    .web-final-cta-grid {
        grid-template-columns: 1fr;
    }

    .web-final-cta-actions {
        width: min(100%, 520px);
    }

    .menu-new-link {
        width: 100%;
        justify-content: space-between;
    }
}


/* ==================================================
   AJUSTES PARA TELÉFONOS
================================================== */

@media (max-width: 760px) {

    .web-hero {
        padding:
            130px
            0
            80px;
    }

    .web-hero-grid {
        gap: 50px;
    }

    .web-hero-content h1 {
        font-size:
            clamp(2.7rem, 14vw, 4.5rem);
    }

    .web-hero-actions {
        flex-direction: column;
    }

    .web-hero-actions .button {
        width: 100%;
    }

    .web-hero-benefits {
        flex-direction: column;
        gap: 14px;
    }

    .web-final-cta {
        padding: 75px 0;
    }

    .web-final-cta-actions {
        width: 100%;
    }

    .web-final-cta-content h2 {
        font-size:
            clamp(2.5rem, 13vw, 4rem);
    }

    .web-whatsapp-floating::before {
        display: none;
    }

    .web-faq-section .faq-question {
        padding: 19px 18px;
    }

    .web-faq-section .faq-answer p {
        padding:
            0
            18px
            20px;
    }
}


/* ==================================================
   TELÉFONOS PEQUEÑOS
================================================== */

@media (max-width: 480px) {

    .web-browser-bar {
        padding: 13px;
    }

    .web-browser-address {
        min-width: 0;
        max-width: 145px;

        padding: 7px 12px;

        overflow: hidden;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .web-preview-links {
        display: none;
    }

    .web-final-cta-content h2 {
        font-size: 2.65rem;
    }

    .menu-new-badge {
        min-width: 34px;
        height: 18px;

        font-size: 0.52rem;
    }
}


/* ==================================================
   ACCESIBILIDAD: REDUCIR MOVIMIENTO
================================================== */

@media (prefers-reduced-motion: reduce) {

    .menu-new-badge {
        animation: none;
    }

    .web-browser-preview:hover,
    .web-service-card:hover,
    .web-process-card:hover,
    .web-package-card:hover,
    .web-code-window:hover {
        transform: none;
    }
}

