/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    /* Identidad OtterStudio */
    --color-primary: #F2558F;
    --color-primary-hover: #D93D78;
    --color-primary-soft: #F8A9C5;
    --color-primary-light: #FFF0F6;

    /* Marca */
    --color-black: #151316;
    --color-dark: #282128;
    --color-white: #FFFFFF;

    /* Fondos */
    --color-background: #FFFCFD;
    --color-soft: #FFF4F8;

    /* Texto */
    --color-text: #201A1D;
    --color-text-secondary: #746A6F;

    /* Bordes */
    --color-border: #F0DDE5;

    /* Superficies auxiliares */
    --color-surface: #FFFFFF;
    --color-surface-soft: #FFFAFC;
    --color-primary-surface: #FFF5F8;

    /* Sombras */
    --shadow-soft: 0 10px 30px rgba(57, 28, 40, 0.05);
    --shadow-card: 0 14px 34px rgba(57, 28, 40, 0.08);
    --shadow-card-hover: 0 22px 48px rgba(111, 42, 69, 0.12);

    /* Radios */
    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 24px;

    --content-width: 1180px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background-color: var(--color-background);
    color: var(--color-text);

    line-height: 1.5;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

:focus-visible {
    outline: 3px solid rgba(242, 85, 143, 0.28);
    outline-offset: 3px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color: var(--color-black);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.site-header-container {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    height: 86px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* Logo */

.site-logo {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.3px;
}

.site-logo img {
    display: block;
    width: 78px;
    height: 78px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.site-logo span {
    white-space: nowrap;
}

/* Navegación */

.site-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.site-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #FFFFFF;
}

.site-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background-color: var(--color-primary);

    transition: width 0.2s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

.site-nav a.active {
    color: var(--color-white);
}

.site-nav a.active::after {
    width: 100%;
}

/* =========================================================
   MAIN
   ========================================================= */

.site-main {
    min-height: 100vh;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #FFF7FA 50%,
            #FFF0F5 100%
        );

    border-bottom: 1px solid var(--color-border);
}

/* Contenedor */

.hero-container {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    margin: 0 auto;
    padding: 80px 0;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 55px;
}

/* =========================================================
   TEXTO HERO
   ========================================================= */

.hero-text {
    position: relative;

    z-index: 2;

    min-width: 0;
}

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-text h1 {
    max-width: 600px;

    margin: 0;

    font-size: clamp(
        56px,
        7vw,
        92px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;

    color: var(--color-black);
}

.hero-description {
    max-width: 520px;

    margin-top: 28px;

    color: var(--color-text-secondary);

    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

/* =========================================================
   IMAGEN HERO
   ========================================================= */

.hero-visual {
    position: relative;

    min-width: 0;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 540px;
    height: 480px;

    overflow: hidden;

    border-radius:
        44% 56% 48% 52% /
        42% 45% 55% 58%;

    box-shadow:
        0 24px 60px
        rgba(0, 0, 0, 0.14);
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

/* =========================================================
   FORMAS DECORATIVAS HERO
   ========================================================= */

.hero-shape {
    position: absolute;

    pointer-events: none;

    z-index: 1;
}

.hero-shape-one {
    width: 330px;
    height: 330px;

    top: 5px;
    right: -20px;

    background-color: var(--color-primary-soft);

    border-radius:
        58% 42% 68% 32% /
        42% 60% 40% 58%;

    opacity: 0.65;

    transform: rotate(15deg);
}

.hero-shape-two {
    width: 190px;
    height: 190px;

    bottom: 15px;
    left: 0;

    background-color: var(--color-black);

    border-radius:
        37% 63% 48% 52% /
        62% 42% 58% 38%;

    opacity: 0.96;

    transform: rotate(-18deg);
}

/* =========================================================
   BADGE HERO
   ========================================================= */

.hero-badge {
    position: absolute;

    z-index: 3;

    right: 0;
    bottom: 45px;

    min-width: 125px;

    padding: 14px 18px;

    background-color: var(--color-black);

    color: #FFFFFF;

    border-radius: 10px;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.18);

    transform: rotate(3deg);
}

.hero-badge span {
    display: block;

    color: var(--color-primary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-badge strong {
    display: block;

    margin-top: 2px;

    font-size: 20px;
    font-weight: 800;
}

/* =========================================================
   BOTONES PÚBLICOS
   ========================================================= */

.btn-public {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.15s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.btn-public:hover {
    transform: translateY(-2px);
}

.btn-public-primary {
    background-color:
        var(--color-primary);

    color: #FFFFFF;
}

.btn-public-primary:hover {
    background-color:
        var(--color-primary-hover);
}

.btn-public-secondary {
    background-color:
        var(--color-black);

    color: #FFFFFF;
}

.btn-public-secondary:hover {
    background-color: #2A2A2A;
}

/* =========================================================
   SECCIONES
   ========================================================= */

.public-section {
    padding: 90px 0;
}

.public-section-soft {
    background-color:
        var(--color-soft);

    border-top:
        1px solid var(--color-border);

    border-bottom:
        1px solid var(--color-border);
}

.public-section > * {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    margin-left: auto;
    margin-right: auto;
}

.public-section-header {
    margin-bottom: 35px;
}

.public-section-header > span {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.public-section-header h2 {
    font-size: clamp(
        30px,
        4vw,
        46px
    );

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.public-section-header p {
    max-width: 580px;

    margin-top: 12px;

    color:
        var(--color-text-secondary);

    font-size: 16px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.public-link {
    color: var(--color-primary);

    font-size: 14px;
    font-weight: 700;
}

.public-link:hover {
    color: var(--color-primary-hover);
}

/* =========================================================
   SERVICIOS
   ========================================================= */

.services-section {
    position: relative;
}

.services-header {
    max-width: 700px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

/* =========================================================
   TARJETA
   ========================================================= */

.service-card {
    position: relative;

    min-height: 410px;

    padding: 42px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.10);
}

/* =========================================================
   TATTOO
   ========================================================= */

.service-card-tattoo {
    background-color: var(--color-black);
    color: #FFFFFF;
}

/* =========================================================
   PIERCING
   ========================================================= */

.service-card-piercing {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

/* =========================================================
   NÚMERO
   ========================================================= */

.service-number {
    position: absolute;

    top: 26px;
    right: 32px;

    z-index: 2;

    color: rgba(255, 255, 255, 0.24);

    font-size: 58px;
    font-weight: 900;

    line-height: 1;
}

/* =========================================================
   CONTENIDO
   ========================================================= */

.service-content {
    position: relative;

    z-index: 2;

    max-width: 440px;
}

.service-label {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-card-tattoo .service-label {
    color: var(--color-primary);
}

.service-card-piercing .service-label {
    color: var(--color-black);
}

.service-card h3 {
    margin-bottom: 20px;

    font-size: clamp(
        32px,
        4vw,
        48px
    );

    line-height: 1.02;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.service-card p {
    max-width: 410px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   ENLACE
   ========================================================= */

.service-link {
    position: relative;

    z-index: 3;

    margin-top: auto;

    align-self: flex-start;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-top: 30px;

    font-size: 14px;
    font-weight: 800;
}

.service-link span {
    font-size: 20px;

    transition:
        transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(5px);
}

/* =========================================================
   FORMAS DECORATIVAS
   ========================================================= */

.service-decoration {
    position: absolute;

    pointer-events: none;

    border-radius:
        59% 41% 66% 34% /
        43% 58% 42% 57%;
}

.service-decoration-dark {
    width: 220px;
    height: 220px;

    right: -70px;
    bottom: -90px;

    background-color:
        rgba(240, 107, 154, 0.20);

    transform: rotate(22deg);
}

.service-decoration-pink {
    width: 250px;
    height: 250px;

    right: -80px;
    bottom: -110px;

    background-color:
        rgba(23, 23, 25, 0.14);

    transform: rotate(-18deg);
}

/* =========================================================
   PROMOCIONES
   ========================================================= */

.promotions-section {
    position: relative;

    background-color: var(--color-soft);

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* =========================================================
   GRID DE PROMOCIONES
   ========================================================= */

.promotions-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

/* =========================================================
   TARJETA DE PROMOCIÓN
   ========================================================= */

.promotion-card {
    position: relative;

    min-width: 0;
    min-height: 340px;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    background-color: var(--color-black);

    color: #FFFFFF;

    border-radius: 18px;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 22px 45px
        rgba(0, 0, 0, 0.13);
}

/* =========================================================
   IMAGEN DE PROMOCIÓN
   ========================================================= */

.promotion-image {
    min-width: 0;
    min-height: 340px;

    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.promotion-card:hover
.promotion-image img {
    transform: scale(1.04);
}

/* =========================================================
   CONTENIDO DE PROMOCIÓN
   ========================================================= */

.promotion-content {
    position: relative;

    min-width: 0;

    padding: 36px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;
}

.promotion-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.promotion-content h3 {
    max-width: 380px;

    font-size:
        clamp(
            26px,
            3vw,
            38px
        );

    line-height: 1.05;

    letter-spacing: -1px;

    font-weight: 900;

    overflow-wrap: anywhere;
}

.promotion-content p {
    max-width: 400px;

    margin-top: 14px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   VIGENCIA DE PROMOCIÓN
   ========================================================= */

.promotion-date {
    display: block;

    margin-top: 15px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 11px;
    font-weight: 700;
}

/* =========================================================
   ENLACE DE PROMOCIÓN
   ========================================================= */

.promotion-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 800;
}

.promotion-link span {
    font-size: 18px;

    transition:
        transform 0.2s ease;
}

.promotion-link:hover {
    color: var(--color-primary-soft);
}

.promotion-link:hover span {
    transform: translateX(5px);
}

/* =========================================================
   PROMOCIÓN SIN IMAGEN
   ========================================================= */

.promotion-card:not(:has(.promotion-image)) {
    grid-template-columns: 1fr;

    background:
        linear-gradient(
            135deg,
            var(--color-black),
            var(--color-dark)
        );
}

.promotion-card:not(:has(.promotion-image))
.promotion-content {
    min-height: 340px;
}

/* =========================================================
   PORTAFOLIO
   ========================================================= */

.portfolio-section {
    background-color: #FFFFFF;
}

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}

.portfolio-card {
    overflow: hidden;

    background-color: var(--color-white);

    border: 1px solid var(--color-border);

    border-radius: 16px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.10);
}

/* Imagen */

.portfolio-image {
    position: relative;

    overflow: hidden;

    height: 380px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.035);
}

/* Etiqueta Tattoo / Perforación */

.portfolio-type {
    position: absolute;

    left: 16px;
    bottom: 16px;

    padding: 7px 11px;

    background-color:
        rgba(23, 23, 25, 0.88);

    color: #FFFFFF;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    backdrop-filter: blur(6px);
}

/* Información */

.portfolio-info {
    padding: 19px 20px 21px;
}

.portfolio-info h3 {
    font-size: 18px;
    font-weight: 800;
}

.portfolio-info p {
    margin-top: 7px;

    color: var(--color-text-secondary);

    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   DISEÑOS
   ========================================================= */

.designs-section {
    position: relative;
}

.designs-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}

/* Tarjeta */

.design-card {
    overflow: hidden;

    background-color: #FFFFFF;

    border: 1px solid var(--color-border);
    border-radius: 18px;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.design-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.09);
}

/* Imagen */

.design-image {
    position: relative;

    height: 350px;

    padding: 18px;

    background-color: #FFFFFF;

    overflow: hidden;
}

.design-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.35s ease;
}

.design-card:hover .design-image img {
    transform: scale(1.025);
}

/* Estado */

.design-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 2;

    display: inline-flex;

    padding: 7px 11px;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.08);
}

.design-badge-available {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.design-badge-unavailable {
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.72);
}

/* Información */

.design-card-info {
    padding: 20px;

    border-top: 1px solid var(--color-border);
}

.design-card-info h3 {
    font-size: 19px;
    font-weight: 800;
}

.design-card-info p {
    margin-top: 8px;

    color: var(--color-text-secondary);

    font-size: 13px;
    line-height: 1.6;
}

/* CTA del diseño */

.design-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 800;
}

.design-link span {
    font-size: 18px;

    transition:
        transform 0.2s ease;
}

.design-link:hover span {
    transform: translateX(4px);
}

/* =========================================================
   VACÍOS
   ========================================================= */

.public-empty {
    padding: 40px;

    text-align: center;

    color: var(--color-text-secondary);

    background-color:
        var(--color-soft);

    border:
        1px solid var(--color-border);

    border-radius: 10px;
}

/* =========================================================
   CTA
   ========================================================= */

.public-cta {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    margin: 90px auto;

    padding: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background-color:
        var(--color-black);

    color: #FFFFFF;

    border-radius: 16px;
}

.public-cta > div > span {
    display: inline-block;

    margin-bottom: 6px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.public-cta h2 {
    font-size: 38px;
}

.public-cta p {
    margin-top: 8px;

    color:
        rgba(255, 255, 255, 0.7);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 0;

    background-color:
        var(--color-black);

    color: #FFFFFF;
}

.site-footer-container {
    width:
        min(
            calc(100% - 40px),
            var(--content-width)
        );

    margin: 0 auto;

    padding: 65px 0;

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 0.7fr);

    gap: 55px;
}

/* =========================================================
   MARCA
   ========================================================= */

.footer-brand {
    max-width: 330px;
}

.footer-brand-title {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}

.footer-brand-title img {
    width: 58px;
    height: 58px;

    object-fit: cover;

    border-radius: 50%;

    border:
        2px solid
        var(--color-primary);
}

.footer-brand-title strong {
    display: block;

    font-size: 22px;
    font-weight: 800;
}

.footer-brand-title span {
    display: block;

    margin-top: 3px;

    color:
        var(--color-primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.footer-brand > p {
    color:
        rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.7;
}

.footer-address {
    margin-top: 14px;
}

/* =========================================================
   COLUMNAS
   ========================================================= */

.footer-title {
    display: block;

    margin-bottom: 18px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-links a {
    color:
        rgba(255, 255, 255, 0.76);

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color:
        var(--color-primary);

    transform:
        translateX(3px);
}

/* =========================================================
   PARTE INFERIOR
   ========================================================= */

.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.footer-bottom > div {
    width:
        min(
            calc(100% - 40px),
            var(--content-width)
        );

    min-height: 70px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 11px;
}

.footer-admin {
    color:
        rgba(255, 255, 255, 0.24);

    transition:
        color 0.2s ease;
}

.footer-admin:hover {
    color:
        var(--color-primary);
}

/* =========================================================
   REDES SOCIALES
   ========================================================= */

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;

    color: #FFFFFF;

    font-size: 19px;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.social-icon:hover {
    background-color: var(--color-primary);

    border-color: var(--color-primary);

    color: #FFFFFF;

    transform: translateY(-3px);
}

/* =========================================================
   AGENDAR CITA
   ========================================================= */

.booking-page {
    padding:
        80px
        24px
        100px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            var(--color-soft) 100%
        );
}

.booking-container {
    width: 100%;
    max-width: 960px;

    margin: 0 auto;
}

/* Encabezado */

.booking-header {
    max-width: 700px;

    margin-bottom: 45px;
}

.booking-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-header h1 {
    margin-bottom: 15px;

    color: var(--color-black);

    font-size: clamp(
        38px,
        6vw,
        64px
    );

    line-height: 1.02;
}

.booking-header p {
    max-width: 570px;

    color: var(
        --color-text-secondary
    );

    font-size: 17px;
}

/* Formulario */

.booking-form {
    overflow: hidden;

    background-color:
        var(--color-white);

    border:
        1px solid
        var(--color-border);

    border-radius: 22px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.06);
}

.booking-section {
    position: relative;

    padding:
        40px
        45px;

    border-bottom:
        1px solid
        var(--color-border);
}

.booking-step {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    margin-bottom: 18px;

    background-color:
        var(--color-primary-light);

    color:
        var(--color-primary-hover);

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}

.booking-section-title {
    margin-bottom: 25px;
}

.booking-section-title h2 {
    margin-bottom: 5px;

    font-size: 24px;
}

.booking-section-title p {
    color:
        var(--color-text-secondary);

    font-size: 14px;
}

/* Servicios */

.booking-service-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 16px;
}

.booking-service {
    position: relative;

    cursor: pointer;
}

.booking-service input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.booking-service-content {
    display: flex;

    flex-direction: column;

    min-height: 135px;

    padding: 24px;

    background-color: #ffffff;

    border:
        2px solid
        var(--color-border);

    border-radius: 15px;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.booking-service:hover
.booking-service-content {
    transform:
        translateY(-2px);

    border-color:
        var(--color-primary-soft);
}

.booking-service input:checked
+ .booking-service-content {
    background-color:
        var(--color-primary-light);

    border-color:
        var(--color-primary);
}

.booking-service-content strong {
    margin-bottom: 8px;

    color:
        var(--color-black);

    font-size: 19px;
}

.booking-service-content small {
    color:
        var(--color-text-secondary);

    font-size: 13px;

    line-height: 1.6;
}

/* Campos */

.booking-fields {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 20px;
}

.booking-field {
    margin-bottom: 20px;
}

.booking-field:last-child {
    margin-bottom: 0;
}

.booking-field-full {
    grid-column: 1 / -1;
}

.booking-field label {
    display: block;

    margin-bottom: 8px;

    color:
        var(--color-black);

    font-size: 14px;
    font-weight: 600;
}

.booking-field label span {
    color:
        var(--color-text-secondary);

    font-size: 12px;
    font-weight: 400;
}

.booking-field input,
.booking-field textarea,
.booking-field select {
    width: 100%;

    padding: 13px 14px;

    background-color: #ffffff;

    border:
        1px solid
        var(--color-border);

    border-radius: 9px;

    color:
        var(--color-text);

    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-field select:focus {
    border-color:
        var(--color-primary);

    box-shadow:
        0 0 0 3px
        var(--color-primary-light);
}

.booking-field textarea {
    resize: vertical;
}

.booking-field small {
    display: block;

    margin-top: 7px;

    color:
        var(--color-text-secondary);

    font-size: 12px;
}

/* Envío */

.booking-submit {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        30px
        45px;

    background-color:
        var(--color-black);

    color: #ffffff;
}

.booking-submit strong {
    display: block;

    margin-bottom: 3px;

    font-size: 16px;
}

.booking-submit p {
    color: #bdbdbd;

    font-size: 13px;
}

/* Diseño seleccionado */

.booking-reference {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 22px;

    padding: 18px;

    background-color: #ffffff;

    border:
        1px solid
        var(--color-border);

    border-radius: 16px;
}

.booking-reference img {
    width: 105px;
    height: 105px;

    flex-shrink: 0;

    object-fit: contain;

    background-color:
        var(--color-soft);

    border-radius: 11px;
}

.booking-reference span,
.booking-promotion > span {
    display: block;

    margin-bottom: 4px;

    color:
        var(--color-primary);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.booking-reference h3 {
    margin-bottom: 5px;
}

.booking-reference p {
    color:
        var(--color-text-secondary);

    font-size: 13px;
}

/* Promoción */

.booking-promotion {
    margin-bottom: 22px;

    padding: 20px 24px;

    background-color:
        var(--color-black);

    color: #ffffff;

    border-radius: 15px;
}

.booking-promotion strong {
    display: block;

    font-size: 20px;
}

.booking-promotion p {
    margin-top: 5px;

    color: #cccccc;

    font-size: 13px;
}

/* Errores */

.booking-errors {
    margin-bottom: 22px;

    padding: 18px 22px;

    background-color: #fff0f0;

    border:
        1px solid #f2cccc;

    border-radius: 12px;

    color: #9f2d2d;

    font-size: 14px;
}

.booking-errors p
+ p {
    margin-top: 5px;
}

/* Éxito */

.booking-success {
    padding: 55px;

    background-color:
        var(--color-white);

    border:
        1px solid
        var(--color-border);

    border-radius: 20px;

    text-align: center;
}

.booking-success > span {
    display: inline-block;

    margin-bottom: 12px;

    color:
        var(--color-primary);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
}

.booking-success h2 {
    margin-bottom: 12px;

    font-size: 32px;
}

.booking-success p {
    max-width: 550px;

    margin:
        0 auto 28px;

    color:
        var(--color-text-secondary);
}

/* =========================================================
   HORARIOS DISPONIBLES
   ========================================================= */

.booking-time-field {
    margin-top: 8px;
}

.booking-times {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.booking-time {
    min-width: 82px;
    padding: 11px 16px;

    border: 1px solid var(--color-border);
    border-radius: 10px;

    background: var(--color-white);
    color: var(--color-black);

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-time:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.booking-time.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);

    box-shadow:
        0 6px 16px rgba(231, 84, 128, 0.18);
}

.booking-time-message {
    width: 100%;

    margin: 0;
    padding: 14px 16px;

    border-radius: 10px;

    background: var(--color-soft);
    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
   CITAS · MÚLTIPLES SERVICIOS Y CANTIDADES
   ========================================================= */

.booking-services-selector {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.booking-service-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;

    padding: 16px 18px;

    background: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.booking-service-option.is-hidden,
.booking-time-field.is-hidden,
.booking-calendar-legend.is-hidden {
    display: none;
}

.booking-service-option.is-selected {
    border-color: rgba(242, 85, 143, 0.55);

    box-shadow:
        0 8px 22px
        rgba(242, 85, 143, 0.08);
}

.booking-service-option-info {
    min-width: 0;
}

.booking-service-option-info > strong {
    display: block;

    margin-bottom: 5px;

    color: var(--color-black);

    font-size: 15px;
}

.booking-service-option-info > span {
    display: block;

    color: var(--color-text-secondary);

    font-size: 13px;
    line-height: 1.45;
}

.booking-service-promo-tag {
    display: inline-block;

    margin-top: 8px;
    padding: 5px 9px;

    background: var(--color-soft);
    color: var(--color-primary);

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
}

.booking-quantity {
    display: grid;
    grid-template-columns: 36px 50px 36px;
    align-items: center;
    gap: 6px;
}

.booking-quantity-button {
    width: 36px;
    height: 36px;

    padding: 0;

    background: var(--color-white);
    color: var(--color-black);

    border: 1px solid var(--color-border);
    border-radius: 10px;

    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
}

.booking-quantity-button:hover:not(:disabled) {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.booking-quantity-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.booking-quantity input {
    width: 50px;
    height: 36px;

    padding: 0 5px;

    background: var(--color-white);
    color: var(--color-black);

    border: 1px solid var(--color-border);
    border-radius: 10px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.booking-quantity input[readonly] {
    background: var(--color-soft);
}

.booking-services-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    margin-top: 18px;
    padding: 14px;

    background: var(--color-soft);

    border: 1px solid var(--color-border);
    border-radius: 14px;
}

.booking-services-summary > div {
    min-width: 0;
}

.booking-services-summary span {
    display: block;

    margin-bottom: 4px;

    color: var(--color-text-secondary);

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.booking-services-summary strong {
    display: block;

    color: var(--color-black);

    font-size: 14px;

    overflow-wrap: anywhere;
}

.booking-services-note {
    margin: 10px 0 0;

    color: var(--color-text-secondary);

    font-size: 12px;
    line-height: 1.55;
}

.booking-promotion-offer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;

    margin-top: 12px;
}

.booking-promotion-offer span {
    font-size: 13px;
    font-weight: 700;
}

.booking-promotion-offer strong {
    color: var(--color-primary);

    font-size: 18px;
}

.booking-calendar-legend-piercing {
    display: flex;
}

@media (max-width: 650px) {

    .booking-service-option {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .booking-quantity {
        justify-content: start;
    }

    .booking-services-summary {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PÁGINA DE TRABAJOS
   ========================================================= */

.works-page {
    padding: 80px 24px 100px;
}

.works-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.works-header {
    max-width: 720px;
    margin-bottom: 38px;
}

.works-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.works-header h1 {
    margin: 0 0 16px;

    color: var(--color-black);

    font-size: clamp(42px, 6vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.works-header p {
    max-width: 620px;
    margin: 0;

    color: var(--color-text-secondary);

    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   FILTROS
   ========================================================= */

.works-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 36px;
}

.works-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    border: 1px solid var(--color-border);
    border-radius: 999px;

    background: var(--color-white);
    color: var(--color-black);

    font-size: 14px;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.works-filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);

    transform: translateY(-1px);
}

.works-filter.active {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

/* =========================================================
   GRID
   ========================================================= */

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.work-card {
    overflow: hidden;

    border: 1px solid var(--color-border);
    border-radius: 18px;

    background: var(--color-white);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.work-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.08);
}

.work-image {
    position: relative;

    height: 420px;

    overflow: hidden;

    background: var(--color-soft);
}

.work-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.025);
}

.work-type {
    position: absolute;
    top: 16px;
    left: 16px;

    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(23, 23, 23, 0.88);
    color: var(--color-white);

    font-size: 12px;
    font-weight: 700;

    backdrop-filter: blur(6px);
}

.work-content {
    padding: 20px 20px 22px;
}

.work-content h2 {
    margin: 0 0 8px;

    color: var(--color-black);

    font-size: 20px;
    line-height: 1.25;
}

.work-content p {
    margin: 0;

    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   VACÍO
   ========================================================= */

.works-empty {
    padding: 60px 24px;

    border: 1px solid var(--color-border);
    border-radius: 18px;

    background: var(--color-soft);

    text-align: center;
}

.works-empty span {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.works-empty h2 {
    margin: 0 0 10px;

    color: var(--color-black);

    font-size: 26px;
}

.works-empty p {
    max-width: 480px;
    margin: 0 auto;

    color: var(--color-text-secondary);

    line-height: 1.6;
}

/* =========================================================
   CTA
   ========================================================= */

.works-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 70px;
    padding: 36px 40px;

    border-radius: 20px;

    background: var(--color-black);
    color: var(--color-white);
}

.works-cta span {
    display: inline-block;
    margin-bottom: 8px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.works-cta h2 {
    margin: 0 0 8px;

    color: var(--color-white);

    font-size: 32px;
}

.works-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    line-height: 1.6;
}

/* =========================================================
   PÁGINA DE DISEÑOS
   ========================================================= */

.design-page {
    padding: 80px 24px 100px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            var(--color-soft) 100%
        );
}

.design-page-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

/* ENCABEZADO */

.design-page-header {
    max-width: 760px;
    margin-bottom: 38px;
}

.design-page-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.design-page-header h1 {
    margin: 0 0 18px;

    color: var(--color-black);

    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.design-page-header p {
    max-width: 650px;
    margin: 0;

    color: var(--color-text-secondary);

    font-size: 17px;
    line-height: 1.7;
}

/* FILTROS */

.design-page-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 38px;
}

.design-page-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    border: 1px solid var(--color-border);
    border-radius: 999px;

    background: var(--color-white);
    color: var(--color-black);

    font-size: 14px;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.design-page-filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);

    transform: translateY(-1px);
}

.design-page-filter.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* GRID */

.design-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}

/* TARJETA */

.design-page-card {
    overflow: hidden;

    background: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: 20px;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.design-page-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 42px
        rgba(0, 0, 0, 0.09);
}

.design-page-card.is-unavailable {
    opacity: 0.78;
}

/* IMAGEN */

.design-page-image {
    position: relative;

    height: 390px;

    padding: 24px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--color-primary-light)
        );
}

.design-page-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.35s ease;
}

.design-page-card:hover
.design-page-image img {
    transform: scale(1.025);
}

/* ESTADO */

.design-page-status {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    box-shadow:
        0 5px 14px
        rgba(0, 0, 0, 0.09);
}

.design-page-status.available {
    background: var(--color-primary);
    color: var(--color-white);
}

.design-page-status.unavailable {
    background: var(--color-black);
    color: var(--color-white);
}

/* CONTENIDO */

.design-page-content {
    padding: 22px;
}

.design-page-content h2 {
    margin: 0;

    color: var(--color-black);

    font-size: 20px;
    line-height: 1.3;
}

.design-page-content p {
    margin-top: 9px;

    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.65;
}

/* ENLACE */

.design-page-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: var(--color-primary);

    font-size: 14px;
    font-weight: 800;
}

.design-page-link span {
    font-size: 19px;

    transition:
        transform 0.2s ease;
}

.design-page-link:hover span {
    transform: translateX(5px);
}

.design-page-sold {
    display: inline-block;

    margin-top: 20px;

    color: var(--color-text-secondary);

    font-size: 13px;
    font-weight: 700;
}

/* VACÍO */

.design-page-empty {
    padding: 60px 24px;

    border: 1px solid var(--color-border);
    border-radius: 18px;

    background: var(--color-white);

    text-align: center;
}

.design-page-empty span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.design-page-empty h2 {
    margin: 0 0 10px;

    color: var(--color-black);

    font-size: 26px;
}

.design-page-empty p {
    margin: 0;

    color: var(--color-text-secondary);
}

/* CTA */

.design-page-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 70px;
    padding: 38px 42px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--color-black),
            var(--color-dark)
        );

    color: var(--color-white);
}

.design-page-cta span {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.design-page-cta h2 {
    margin: 0 0 8px;

    color: var(--color-white);

    font-size: 32px;
}

.design-page-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    line-height: 1.6;
}

/* =========================================================
   PÁGINA DE CONTACTO
   ========================================================= */

.contact-page {
    padding: 80px 24px 100px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            var(--color-soft) 100%
        );
}

.contact-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

/* Encabezado */

.contact-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.contact-label,
.contact-card-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-header h1 {
    margin: 0 0 18px;

    color: var(--color-black);

    font-size: clamp(46px, 7vw, 78px);

    line-height: 0.98;

    letter-spacing: -0.04em;
}

.contact-header p {
    max-width: 650px;

    color: var(--color-text-secondary);

    font-size: 17px;
    line-height: 1.7;
}

/* Layout */

.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 26px;
}

/* Tarjetas principales */

.contact-info,
.contact-actions {
    padding: 38px;

    border:
        1px solid
        var(--color-border);

    border-radius: 22px;

    background:
        var(--color-white);

    box-shadow:
        0 14px 38px
        rgba(0, 0, 0, 0.045);
}

.contact-info h2,
.contact-actions h2 {
    margin: 0;

    color: var(--color-black);

    font-size: 30px;
    line-height: 1.15;

    letter-spacing: -0.02em;
}

.contact-description {
    margin-top: 14px;

    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.7;
}

/* Datos */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 24px;

    margin-top: 34px;
}

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 16px;
}

.contact-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--color-primary-light);

    color:
        var(--color-primary);

    font-size: 17px;
}

.contact-detail > div:last-child {
    min-width: 0;
}

.contact-detail span {
    display: block;

    margin-bottom: 4px;

    color:
        var(--color-text-secondary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
    color: var(--color-black);

    font-size: 15px;
    font-weight: 700;

    line-height: 1.6;

    overflow-wrap: anywhere;
}

.contact-detail a:hover {
    color: var(--color-primary);
}

/* Acciones */

.contact-action-list {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 30px;
}

.contact-action {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 78px;

    padding: 14px 16px;

    border:
        1px solid
        var(--color-border);

    border-radius: 15px;

    background:
        var(--color-white);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-action:hover {
    transform:
        translateY(-2px);

    border-color:
        var(--color-primary-soft);

    box-shadow:
        0 10px 24px
        rgba(0, 0, 0, 0.06);
}

.contact-action-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        var(--color-primary-light);

    color:
        var(--color-primary);

    font-size: 19px;
}

.contact-action-content {
    min-width: 0;

    flex: 1;
}

.contact-action-content span {
    display: block;

    margin-bottom: 2px;

    color:
        var(--color-text-secondary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-action-content strong {
    display: block;

    color: var(--color-black);

    font-size: 15px;

    overflow-wrap: anywhere;
}

.contact-action-arrow {
    flex-shrink: 0;

    color:
        var(--color-text-secondary);

    font-size: 13px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-action:hover
.contact-action-arrow {
    color:
        var(--color-primary);

    transform:
        translate(2px, -2px);
}

/* WhatsApp destacado */

.contact-action-whatsapp {
    background:
        var(--color-black);

    border-color:
        var(--color-black);
}

.contact-action-whatsapp
.contact-action-icon {
    background:
        var(--color-primary);

    color:
        var(--color-white);
}

.contact-action-whatsapp
.contact-action-content span {
    color:
        rgba(255, 255, 255, 0.55);
}

.contact-action-whatsapp
.contact-action-content strong {
    color:
        var(--color-white);
}

.contact-action-whatsapp
.contact-action-arrow {
    color:
        rgba(255, 255, 255, 0.55);
}

.contact-action-whatsapp:hover {
    border-color:
        var(--color-primary);
}

/* CTA */

.contact-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 65px;

    padding: 38px 42px;

    border-radius: 22px;

    background:
        var(--color-black);

    color:
        var(--color-white);
}

.contact-cta > div > span {
    display: inline-block;

    margin-bottom: 8px;

    color:
        var(--color-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-cta h2 {
    margin: 0 0 8px;

    color:
        var(--color-white);

    font-size: 32px;
}

.contact-cta p {
    max-width: 540px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.68);

    line-height: 1.6;
}

/* =========================================================
   HOME - ETIQUETAS PORTAFOLIO Y DISEÑOS
   ========================================================= */

.portfolio-section .public-section-header > div > span,
.designs-section .public-section-header > div > span {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    padding: 7px 12px;
    margin-bottom: 10px;

    border: 1px solid rgba(242, 85, 143, 0.22);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #fff0f6,
            #ffe5ef
        );

    color: var(--color-primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
    text-transform: uppercase;

    box-shadow:
        0 5px 15px rgba(242, 85, 143, 0.08);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .site-footer-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .design-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .design-page-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .works-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .works-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        gap: 18px;
    }

    .portfolio-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 65px 0;
    }

    .hero-text {
        max-width: 700px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-image {
        width: 82%;
        height: 460px;
    }

    .hero-text h1 {
        letter-spacing: -3px;
    }

    .designs-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    /* Promociones */

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotion-card {
        grid-template-columns:
            minmax(0, 0.85fr)
            minmax(0, 1.15fr);
    }
}

@media (max-width: 700px) {
    .booking-page {
        padding:
            55px
            18px
            75px;
    }

    .booking-service-grid,
    .booking-fields {
        grid-template-columns: 1fr;
    }

    .booking-field-full {
        grid-column: auto;
    }

    .booking-section {
        padding:
            30px
            25px;
    }

    .booking-submit {
        align-items: stretch;

        flex-direction: column;

        padding:
            25px;
    }

    .booking-submit .btn-public {
        width: 100%;
    }

    .booking-reference {
        align-items: flex-start;
    }

    .site-header-container {
        height: auto;

        padding: 18px 0;

        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;

        flex-wrap: wrap;

        gap: 12px 20px;
    }

    .site-logo img {
        width: 46px;
        height: 46px;
    }

    .site-logo {
        font-size: 19px;
    }

    .hero-container {
        padding: 55px 0;

        gap: 35px;
    }

    .hero-text h1 {
        font-size: 55px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-image {
        width: 92%;
        height: 410px;
    }

    .hero-shape-one {
        width: 240px;
        height: 240px;
    }

    .hero-shape-two {
        width: 140px;
        height: 140px;
    }

    .hero-badge {
        right: 5px;
        bottom: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card img {
        height: 420px;
    }

    .section-header-row {
        align-items: flex-start;

        flex-direction: column;
    }

    .public-cta {
        padding: 35px;

        align-items: flex-start;

        flex-direction: column;
    }

    .site-footer-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px 0;
    }

    .designs-grid {
        grid-template-columns: 1fr;
    }

    .design-image {
        height: 420px;
    }

    /* Promociones */

    .promotion-card {
        grid-template-columns: 1fr;
    }

    .promotion-image {
        min-height: 280px;
        height: 280px;
    }

    .promotion-content {
        padding: 30px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .design-page {
        padding: 55px 18px 75px;
    }

    .design-page-grid {
        grid-template-columns: 1fr;
    }

    .design-page-image {
        height: 430px;
    }

    .design-page-cta {
        padding: 28px 24px;
    }

    .design-page-cta h2 {
        font-size: 27px;
    }

    .works-page {
        padding: 55px 18px 75px;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .work-image {
        height: 440px;
    }

    .works-cta {
        padding: 28px 24px;
    }

    .works-cta h2 {
        font-size: 27px;
    }
}

@media (max-width: 600px) {
.footer-bottom > div {
        min-height: 90px;

        padding: 20px 0;

        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 8px;
    }

    .booking-time {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 75px;
    }
}

@media (max-width: 480px) {
    .booking-header h1 {
        font-size: 38px;
    }

    .booking-reference {
        flex-direction: column;
    }

    .booking-reference img {
        width: 100%;
        height: 180px;
    }

    .booking-success {
        padding:
            40px
            24px;
    }

    .site-header-container,
    .hero-container,
    .public-section > *,
    .public-cta,
    .site-footer-container,
    .footer-bottom > div {
        width: min(
            calc(100% - 28px),
            var(--content-width)
        );
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .public-section {
        padding: 65px 0;
    }

    .portfolio-card img {
        height: 340px;
    }

    .public-cta {
        margin-top: 65px;
        margin-bottom: 65px;
    }

    .public-cta h2 {
        font-size: 30px;
    }

    .hero-image {
        width: 100%;
        height: 360px;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-badge {
        right: 0;
        bottom: 10px;
    }

    /* Promociones */

    .promotion-image {
        min-height: 240px;
        height: 240px;
    }

    .promotion-content {
        padding: 25px;
    }

    .promotion-content h3 {
        font-size: 27px;
    }

    .contact-page {
        padding: 55px 18px 75px;
    }

    .contact-info,
    .contact-actions {
        padding: 28px 24px;
    }

    .contact-header h1 {
        font-size: 48px;
    }

    .contact-cta {
        padding: 28px 24px;
    }

    .contact-cta h2 {
        font-size: 27px;
    }
}

/* =========================================================
   AJUSTES VISUALES GENERALES
   ========================================================= */

/* ---------- BASE ---------- */

body {
    background:
        radial-gradient(
            circle at 8% 5%,
            rgba(242, 85, 143, 0.045),
            transparent 22rem
        ),
        var(--color-background);
}

/* ---------- HEADER ---------- */

.site-header {
    background:
        linear-gradient(
            135deg,
            #151316 0%,
            #21181d 100%
        );

    border-bottom:
        1px solid rgba(242, 85, 143, 0.28);

    box-shadow:
        0 8px 30px rgba(36, 18, 26, 0.12);

    backdrop-filter: blur(16px);
}

.site-logo img {
    border:
        2px solid
        var(--color-primary);

    box-shadow:
        0 0 0 4px rgba(242, 85, 143, 0.10);
}

.site-logo span {
    letter-spacing: -0.02em;
}

.site-nav a {
    padding: 8px 2px;

    color:
        rgba(255, 255, 255, 0.76);
}

.site-nav a:hover {
    color:
        var(--color-primary-soft);
}

.site-nav a::after {
    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--color-primary),
            #ff8bb5
        );
}

/* ---------- HERO ---------- */

.hero {
    min-height: 680px;

    background:
        radial-gradient(
            circle at 86% 16%,
            rgba(242, 85, 143, 0.23),
            transparent 22rem
        ),
        radial-gradient(
            circle at 15% 82%,
            rgba(248, 169, 197, 0.22),
            transparent 20rem
        ),
        linear-gradient(
            135deg,
            #fffdfd 0%,
            #fff4f8 46%,
            #ffe7f0 100%
        );

    border-bottom:
        1px solid
        rgba(242, 85, 143, 0.16);
}

.hero::before {
    content: "";

    position: absolute;

    top: -150px;
    left: -170px;

    width: 410px;
    height: 410px;

    border:
        1px solid
        rgba(242, 85, 143, 0.15);

    border-radius:
        58% 42% 51% 49% /
        47% 55% 45% 53%;

    pointer-events: none;
}

.hero-label,
.public-section-header > span,
.works-label,
.design-page-label,
.contact-label,
.contact-card-label,
.booking-label {
    padding: 7px 11px;

    border:
        1px solid
        rgba(242, 85, 143, 0.18);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.62);

    box-shadow:
        0 5px 18px rgba(242, 85, 143, 0.07);
}

.hero-text h1 {
    text-wrap: balance;

    color:
        var(--color-black);

    text-shadow:
        0 14px 35px rgba(242, 85, 143, 0.06);
}

.hero-description {
    color: #675d62;
}

.hero-image {
    border:
        8px solid
        rgba(255, 255, 255, 0.76);

    box-shadow:
        0 28px 70px rgba(62, 24, 39, 0.18),
        0 0 0 1px rgba(242, 85, 143, 0.08);
}

.hero-shape-one {
    background:
        linear-gradient(
            145deg,
            #ffb6d0,
            var(--color-primary)
        );

    opacity: 0.58;
}

.hero-shape-two {
    background:
        linear-gradient(
            145deg,
            var(--color-black),
            #3d2631
        );
}

.hero-badge {
    border:
        1px solid
        rgba(242, 85, 143, 0.35);

    border-radius: 15px;

    box-shadow:
        0 16px 32px rgba(31, 18, 23, 0.22);
}

/* ---------- BOTONES ---------- */

.btn-public {
    min-height: 50px;

    padding:
        0 24px;

    border-radius: 999px;

    box-shadow:
        0 7px 18px rgba(30, 18, 23, 0.08);

    transition:
        transform 0.18s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-public:hover {
    transform:
        translateY(-3px);
}

.btn-public-primary {
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #eb4b86
        );

    box-shadow:
        0 10px 24px rgba(242, 85, 143, 0.24);
}

.btn-public-primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--color-primary-hover),
            #c9326a
        );

    box-shadow:
        0 14px 30px rgba(217, 61, 120, 0.28);
}

.btn-public-secondary {
    background:
        linear-gradient(
            135deg,
            var(--color-black),
            #2b2025
        );

    border:
        1px solid
        rgba(242, 85, 143, 0.20);
}

/* ---------- SECCIONES ---------- */

.public-section {
    position: relative;

    padding:
        100px 0;
}

.public-section-soft,
.promotions-section {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(242, 85, 143, 0.09),
            transparent 26rem
        ),
        linear-gradient(
            180deg,
            #fff8fb 0%,
            #fff1f6 100%
        );

    border-top:
        1px solid
        rgba(242, 85, 143, 0.12);

    border-bottom:
        1px solid
        rgba(242, 85, 143, 0.12);
}

.public-section-header h2 {
    color:
        var(--color-black);

    text-wrap: balance;
}

.public-section-header p {
    color:
        #75676d;
}

.public-link {
    display: inline-flex;

    align-items: center;

    min-height: 38px;

    padding:
        0 14px;

    border:
        1px solid
        rgba(242, 85, 143, 0.20);

    border-radius: 999px;

    background:
        var(--color-primary-light);
}

/* ---------- SERVICIOS ---------- */

.service-card {
    border-radius: 26px;

    box-shadow:
        0 14px 35px rgba(41, 24, 31, 0.07);
}

.service-card-tattoo {
    background:
        radial-gradient(
            circle at 92% 92%,
            rgba(242, 85, 143, 0.20),
            transparent 16rem
        ),
        linear-gradient(
            145deg,
            #141214,
            #251a20
        );
}

.service-card-piercing {
    background:
        radial-gradient(
            circle at 95% 100%,
            rgba(255, 255, 255, 0.20),
            transparent 18rem
        ),
        linear-gradient(
            135deg,
            #f65f98,
            #e74280
        );

    box-shadow:
        0 18px 45px rgba(242, 85, 143, 0.18);
}

.service-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 24px 55px rgba(56, 27, 39, 0.15);
}

.service-number {
    color:
        rgba(255, 255, 255, 0.19);
}

.service-card-piercing .service-label {
    color:
        #3a1825;
}

/* ---------- PROMOCIONES ---------- */

.promotion-card {
    border:
        1px solid
        rgba(242, 85, 143, 0.20);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #171316,
            #2d1d24
        );

    box-shadow:
        0 18px 42px rgba(38, 19, 27, 0.10);
}

.promotion-card:hover {
    box-shadow:
        0 26px 56px rgba(67, 27, 43, 0.17);
}

.promotion-content::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -90px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background:
        rgba(242, 85, 143, 0.10);

    pointer-events: none;
}

.promotion-link {
    position: relative;
    z-index: 2;
}

/* ---------- TARJETAS PORTAFOLIO / DISEÑOS ---------- */

.portfolio-card,
.design-card,
.work-card,
.design-page-card {
    border:
        1px solid
        rgba(240, 221, 229, 0.95);

    border-radius: 22px;

    box-shadow:
        0 12px 30px rgba(57, 28, 40, 0.045);
}

.portfolio-card:hover,
.design-card:hover,
.work-card:hover,
.design-page-card:hover {
    border-color:
        rgba(242, 85, 143, 0.40);

    box-shadow:
        0 22px 48px rgba(111, 42, 69, 0.12);
}

.portfolio-type,
.work-type {
    background:
        rgba(242, 85, 143, 0.92);

    border:
        1px solid
        rgba(255, 255, 255, 0.30);

    box-shadow:
        0 5px 16px rgba(109, 33, 61, 0.18);
}

.design-image,
.design-page-image {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff6f9
        );
}

.design-badge-available,
.design-page-badge-available {
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #e74280
        );

    box-shadow:
        0 6px 18px rgba(242, 85, 143, 0.20);
}

.design-card-info,
.design-page-content,
.portfolio-info,
.work-content {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafb 100%
        );
}

/* ---------- CTA GENERAL ---------- */

.public-cta {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 90% 30%,
            rgba(255, 255, 255, 0.18),
            transparent 16rem
        ),
        linear-gradient(
            135deg,
            #f35a94,
            #d83c77
        );

    box-shadow:
        0 24px 55px rgba(197, 47, 105, 0.20);
}

.public-cta::after {
    content: "";

    position: absolute;

    right: -65px;
    bottom: -105px;

    width: 250px;
    height: 250px;

    border:
        38px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 50%;

    pointer-events: none;
}

.public-cta > * {
    position: relative;
    z-index: 2;
}

.public-cta > div > span {
    color:
        rgba(255, 255, 255, 0.82);
}

.public-cta .btn-public-primary {
    background:
        var(--color-black);

    color:
        var(--color-white);

    box-shadow:
        0 10px 24px rgba(40, 18, 28, 0.18);
}

.public-cta .btn-public-primary:hover {
    background:
        #2b2025;
}

/* ---------- FOOTER ---------- */

.site-footer {
    position: relative;

    margin-top: 0;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(242, 85, 143, 0.15),
            transparent 23rem
        ),
        linear-gradient(
            145deg,
            #141214,
            #21171c
        );

    border-top:
        4px solid
        var(--color-primary);
}

.footer-brand-title img {
    box-shadow:
        0 0 0 5px rgba(242, 85, 143, 0.09);
}

.footer-title {
    color:
        var(--color-primary-soft);
}

.social-icon {
    background:
        rgba(242, 85, 143, 0.08);

    border-color:
        rgba(242, 85, 143, 0.22);
}

.social-icon:hover {
    box-shadow:
        0 8px 22px rgba(242, 85, 143, 0.23);
}

/* ---------- AGENDAR CITA ---------- */

.booking-page {
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(242, 85, 143, 0.14),
            transparent 24rem
        ),
        linear-gradient(
            180deg,
            #fffdfd 0%,
            #fff3f7 100%
        );
}

.booking-form {
    border-color:
        rgba(242, 85, 143, 0.15);

    border-radius: 28px;

    box-shadow:
        0 24px 65px rgba(91, 36, 57, 0.09);
}

.booking-section {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fffcfd
        );
}

.booking-step {
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #e84580
        );

    color:
        var(--color-white);

    box-shadow:
        0 7px 18px rgba(242, 85, 143, 0.22);
}

.booking-service-content {
    border-radius: 18px;
}

.booking-service input:checked
+ .booking-service-content {
    background:
        linear-gradient(
            145deg,
            #fff0f6,
            #ffe5ef
        );

    border-color:
        var(--color-primary);

    box-shadow:
        0 10px 24px rgba(242, 85, 143, 0.11);
}

.booking-field input,
.booking-field textarea,
.booking-field select {
    border-radius: 12px;

    background:
        #fffdfd;
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-field select:focus {
    box-shadow:
        0 0 0 4px
        rgba(242, 85, 143, 0.12);
}

.booking-submit {
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(242, 85, 143, 0.19),
            transparent 14rem
        ),
        linear-gradient(
            135deg,
            #171316,
            #2a1b22
        );
}

.booking-time {
    border-radius: 999px;
}

.booking-time:hover {
    background:
        var(--color-primary-light);
}

.booking-time.active {
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #e53f7d
        );

    box-shadow:
        0 8px 22px rgba(242, 85, 143, 0.23);
}

.booking-reference {
    border-color:
        rgba(242, 85, 143, 0.20);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff8fb
        );

    box-shadow:
        0 10px 28px rgba(86, 34, 54, 0.05);
}

.booking-promotion {
    background:
        linear-gradient(
            135deg,
            #21161b,
            #3a202b
        );

    border:
        1px solid
        rgba(242, 85, 143, 0.28);
}

/* ---------- PÁGINAS TRABAJOS / DISEÑOS / CONTACTO ---------- */

.works-page,
.design-page,
.contact-page {
    background:
        radial-gradient(
            circle at 92% 5%,
            rgba(242, 85, 143, 0.12),
            transparent 25rem
        ),
        linear-gradient(
            180deg,
            #fffdfd 0%,
            #fff5f8 100%
        );
}

.works-header h1,
.design-page-header h1,
.contact-header h1,
.booking-header h1 {
    text-wrap: balance;

    text-shadow:
        0 12px 30px rgba(242, 85, 143, 0.055);
}

.works-filter,
.design-page-filter {
    min-height: 44px;

    border-color:
        rgba(242, 85, 143, 0.20);

    background:
        rgba(255, 255, 255, 0.80);

    box-shadow:
        0 5px 14px rgba(77, 32, 49, 0.035);
}

.works-filter.active,
.design-page-filter.active {
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #e43f7c
        );

    border-color:
        transparent;

    color:
        var(--color-white);

    box-shadow:
        0 8px 20px rgba(242, 85, 143, 0.20);
}

/* ---------- CTA DE PÁGINAS ---------- */

.works-cta,
.design-page-cta,
.contact-cta {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(242, 85, 143, 0.25);

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 90% 25%,
            rgba(242, 85, 143, 0.24),
            transparent 16rem
        ),
        linear-gradient(
            135deg,
            #191417,
            #2c1c23
        );

    box-shadow:
        0 18px 44px rgba(51, 24, 35, 0.10);
}

/* ---------- CONTACTO ---------- */

.contact-info,
.contact-actions {
    border-color:
        rgba(242, 85, 143, 0.17);

    border-radius: 26px;

    box-shadow:
        0 16px 40px rgba(75, 29, 46, 0.055);
}

.contact-actions {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(242, 85, 143, 0.10),
            transparent 18rem
        ),
        var(--color-white);
}

.contact-item,
.contact-action {
    border-color:
        rgba(242, 85, 143, 0.13);
}

/* =========================================================
   CONTACTO — HOVERS
   ========================================================= */

/* Instagram, Facebook, TikTok, etc. */
.contact-action:not(.contact-action-whatsapp):hover {
    transform: translateY(-2px);

    background: var(--color-primary-light);
    border-color: var(--color-primary-soft);

    box-shadow:
        0 10px 24px
        rgba(242, 85, 143, 0.10);
}

.contact-action:not(.contact-action-whatsapp):hover
.contact-action-content span {
    color: var(--color-primary);
}

.contact-action:not(.contact-action-whatsapp):hover
.contact-action-content strong {
    color: var(--color-black);
}

.contact-action:not(.contact-action-whatsapp):hover
.contact-action-icon {
    background: var(--color-primary);
    color: #ffffff;
}

.contact-action:not(.contact-action-whatsapp):hover
.contact-action-arrow {
    color: var(--color-primary);
    transform: translate(2px, -2px);
}

/* WhatsApp destacado */
.contact-action-whatsapp:hover {
    transform: translateY(-2px);

    background: var(--color-primary);
    border-color: var(--color-primary);

    box-shadow:
        0 12px 28px
        rgba(242, 85, 143, 0.20);
}

.contact-action-whatsapp:hover
.contact-action-content span {
    color: rgba(255, 255, 255, 0.72);
}

.contact-action-whatsapp:hover
.contact-action-content strong {
    color: #ffffff;
}

.contact-action-whatsapp:hover
.contact-action-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.contact-action-whatsapp:hover
.contact-action-arrow {
    color: #ffffff;
    transform: translate(2px, -2px);
}

/* ---------- VACÍOS ---------- */

.public-empty,
.works-empty,
.design-page-empty {
    border-color:
        rgba(242, 85, 143, 0.18);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fffdfd,
            #fff2f7
        );
}

/* ---------- RESPONSIVE V2 ---------- */

@media (max-width: 700px) {

    .site-header {
        position: relative;
    }

    .site-nav a {
        padding:
            7px 10px;

        border-radius: 999px;

        background:
            rgba(255, 255, 255, 0.045);
    }

    .site-nav a:hover {
        background:
            rgba(242, 85, 143, 0.15);
    }

    .hero {
        min-height: auto;
    }

    .hero-label,
    .public-section-header > span,
    .works-label,
    .design-page-label,
    .contact-label,
    .booking-label {
        padding:
            6px 9px;
    }

    .service-card {
        border-radius: 22px;
    }

    .public-cta,
    .works-cta,
    .design-page-cta,
    .contact-cta {
        border-radius: 22px;
    }
}

@media (max-width: 480px) {

    .btn-public {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .public-section {
        padding:
            72px 0;
    }

    .portfolio-card,
    .design-card,
    .work-card,
    .design-page-card {
        border-radius: 18px;
    }

    .contact-info,
    .contact-actions {
        border-radius: 20px;
    }
}

/* =========================================================
   AJUSTES DE DENSIDAD Y PROPORCIONES
   ========================================================= */

/* HEADER */

.site-header-container {
    height: 105px;
}

.site-logo img {
    width: 46px;
    height: 46px;
}

.site-logo {
    font-size: 19px;
}

.site-nav {
    gap: 24px;
}

.site-nav a {
    font-size: 13px;
}

/* HERO */

.hero {
    min-height: 540px;
}

.hero-container {
    padding: 48px 0;
    gap: 42px;
}

.hero-label {
    margin-bottom: 14px;
}

.hero-text h1 {
    max-width: 560px;

    font-size: clamp(
        46px,
        5.6vw,
        74px
    );

    letter-spacing: -3px;
}

.hero-description {
    max-width: 500px;

    margin-top: 20px;

    font-size: 16px;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 26px;
}

.hero-visual {
    min-height: 410px;
}

.hero-image {
    width: 86%;
    max-width: 470px;
    height: 390px;
}

.hero-shape-one {
    width: 270px;
    height: 270px;
}

.hero-shape-two {
    width: 155px;
    height: 155px;
}

.hero-badge {
    right: 10px;
    bottom: 30px;

    min-width: 112px;

    padding: 11px 15px;
}

.hero-badge strong {
    font-size: 18px;
}

/* BOTONES */

.btn-public {
    min-height: 46px;

    padding: 0 21px;

    font-size: 13px;
}

/* SECCIONES GENERALES */

.public-section {
    padding: 66px 0;
}

.public-section-header {
    margin-bottom: 25px;
}

.public-section-header > span {
    margin-bottom: 7px;
}

.public-section-header h2 {
    font-size: clamp(
        28px,
        3.3vw,
        40px
    );
}

.public-section-header p {
    max-width: 560px;

    margin-top: 9px;

    font-size: 15px;
    line-height: 1.6;
}

.section-header-row {
    gap: 24px;
}

/* SERVICIOS */

.services-grid {
    gap: 20px;
}

.service-card {
    min-height: 330px;

    padding: 30px 32px;
}

.service-number {
    top: 22px;
    right: 26px;

    font-size: 46px;
}

.service-label {
    margin-bottom: 13px;
}

.service-card h3 {
    margin-bottom: 14px;

    font-size: clamp(
        28px,
        3.1vw,
        39px
    );

    line-height: 1.04;
}

.service-card p {
    max-width: 390px;

    font-size: 14px;
    line-height: 1.58;
}

.service-link {
    padding-top: 19px;

    font-size: 13px;
}

.service-decoration-dark {
    width: 185px;
    height: 185px;
}

.service-decoration-pink {
    width: 205px;
    height: 205px;
}

/* PROMOCIONES */

.promotions-grid {
    gap: 20px;
}

.promotion-card {
    min-height: 285px;
}

.promotion-image {
    min-height: 285px;
}

.promotion-content {
    padding: 28px;
}

.promotion-content h3 {
    font-size: clamp(
        24px,
        2.6vw,
        33px
    );
}

.promotion-content p {
    margin-top: 10px;

    font-size: 13px;
    line-height: 1.55;
}

.promotion-date {
    margin-top: 11px;
}

.promotion-link {
    margin-top: 18px;
}

.promotion-card:not(:has(.promotion-image))
.promotion-content {
    min-height: 285px;
}

/* HOME - TRABAJOS */

.portfolio-grid {
    gap: 20px;
}

.portfolio-image {
    height: 285px;
}

.portfolio-info {
    padding: 15px 17px 17px;
}

.portfolio-info h3 {
    font-size: 17px;
}

.portfolio-info p {
    margin-top: 5px;

    font-size: 12.5px;
}

/* HOME - DISEÑOS */

.designs-grid {
    gap: 20px;
}

.design-image {
    height: 275px;

    padding: 14px;
}

.design-card-info {
    padding: 16px 18px 18px;
}

.design-card-info h3 {
    font-size: 17px;
}

.design-card-info p {
    margin-top: 6px;

    font-size: 12.5px;
}

.design-link {
    margin-top: 13px;
}

/* CTA PRINCIPAL */

.public-cta {
    margin: 58px auto;

    padding: 32px 36px;
}

.public-cta h2 {
    font-size: 31px;
}

.public-cta p {
    margin-top: 5px;

    font-size: 14px;
}

/* FOOTER */

.site-footer {
    margin-top: 0;
}

.site-footer-container {
    padding: 43px 0;

    gap: 42px;
}

.footer-brand-title {
    margin-bottom: 16px;
}

.footer-brand-title img {
    width: 50px;
    height: 50px;
}

.footer-brand-title strong {
    font-size: 20px;
}

.footer-title {
    margin-bottom: 14px;
}

.footer-links {
    gap: 9px;
}

.social-icon {
    width: 40px;
    height: 40px;

    font-size: 17px;
}

.footer-bottom > div {
    min-height: 60px;
}

/* =========================================================
   AGENDAR CITA
   ========================================================= */

.booking-page {
    padding:
        58px
        24px
        72px;
}

.booking-container {
    max-width: 920px;
}

.booking-header {
    margin-bottom: 30px;
}

.booking-header h1 {
    margin-bottom: 11px;

    font-size: clamp(
        36px,
        5vw,
        54px
    );
}

.booking-header p {
    font-size: 15px;
}

.booking-form {
    border-radius: 24px;
}

.booking-section {
    padding:
        30px
        36px;
}

.booking-step {
    width: 33px;
    height: 33px;

    margin-bottom: 13px;
}

.booking-section-title {
    margin-bottom: 19px;
}

.booking-section-title h2 {
    font-size: 21px;
}

.booking-service-content {
    min-height: 112px;

    padding: 20px;
}

.booking-service-content strong {
    font-size: 17px;
}

.booking-fields {
    gap: 16px;
}

.booking-field {
    margin-bottom: 15px;
}

.booking-field input,
.booking-field textarea,
.booking-field select {
    padding: 11px 13px;
}

.booking-submit {
    padding:
        24px
        36px;
}

.booking-reference {
    gap: 17px;

    padding: 14px;
}

.booking-reference img {
    width: 88px;
    height: 88px;
}

.booking-promotion {
    padding: 17px 20px;
}

.booking-time {
    min-width: 76px;

    padding: 9px 14px;

    font-size: 13px;
}

/* =========================================================
   TRABAJOS
   ========================================================= */

.works-page {
    padding:
        58px
        24px
        72px;
}

.works-header {
    margin-bottom: 28px;
}

.works-header h1 {
    margin-bottom: 12px;

    font-size: clamp(
        38px,
        5vw,
        58px
    );
}

.works-header p {
    font-size: 15px;
    line-height: 1.6;
}

.works-filters {
    margin-bottom: 27px;
}

.works-filter {
    min-height: 38px;

    padding: 0 16px;

    font-size: 13px;
}

.works-grid {
    gap: 20px;
}

.work-image {
    height: 330px;
}

.work-content {
    padding: 16px 18px 18px;
}

.work-content h2 {
    font-size: 18px;
}

.work-content p {
    font-size: 13px;
}

.works-cta {
    margin-top: 50px;

    padding: 30px 34px;
}

.works-cta h2 {
    font-size: 28px;
}

/* =========================================================
   DISEÑOS
   ========================================================= */

.design-page {
    padding:
        58px
        24px
        72px;
}

.design-page-header {
    margin-bottom: 28px;
}

.design-page-header h1 {
    margin-bottom: 12px;

    font-size: clamp(
        38px,
        5vw,
        58px
    );
}

.design-page-header p {
    font-size: 15px;
    line-height: 1.6;
}

.design-page-filters {
    margin-bottom: 27px;
}

.design-page-filter {
    min-height: 38px;

    padding: 0 16px;

    font-size: 13px;
}

.design-page-grid {
    gap: 20px;
}

.design-page-image {
    height: 320px;
}

.design-page-content {
    padding: 16px 18px 18px;
}

.design-page-content h2,
.design-page-content h3 {
    font-size: 18px;
}

.design-page-content p {
    font-size: 13px;
}

.design-page-link {
    margin-top: 14px;
}

.design-page-cta {
    margin-top: 50px;

    padding: 30px 34px;
}

.design-page-cta h2 {
    font-size: 28px;
}

/* =========================================================
   CONTACTO
   ========================================================= */

.contact-page {
    padding:
        58px
        24px
        72px;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header h1 {
    margin-bottom: 12px;

    font-size: clamp(
        40px,
        5.4vw,
        62px
    );
}

.contact-header p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-layout {
    gap: 20px;
}

.contact-info,
.contact-actions {
    padding: 30px;
}

.contact-info h2,
.contact-actions h2 {
    font-size: 26px;
}

.contact-description {
    margin-top: 10px;
}

.contact-cta {
    margin-top: 50px;

    padding: 30px 34px;
}

.contact-cta h2 {
    font-size: 28px;
}

/* =========================================================
   CARRUSELES DE PUBLICACIONES
   ========================================================= */

.publication-carousel {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.publication-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.publication-carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.publication-carousel-slide.is-active {
    display: block;
}

.design-page-image .publication-carousel-slide img,
.design-image .publication-carousel-slide img {
    object-fit: contain;
}

.publication-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publication-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);
    color: #201a1d;

    font-size: 14px;

    box-shadow:
        0 6px 20px rgba(32, 26, 29, 0.16);

    cursor: pointer;

    transform: translateY(-50%);
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.publication-carousel-arrow:hover {
    background: #ffffff;

    transform:
        translateY(-50%)
        scale(1.06);

    box-shadow:
        0 8px 24px rgba(32, 26, 29, 0.22);
}

.publication-carousel-prev {
    left: 12px;
}

.publication-carousel-next {
    right: 12px;
}

.publication-carousel-counter {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 8;

    padding: 6px 9px;

    border-radius: 999px;

    background: rgba(21, 19, 22, 0.7);
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;

    backdrop-filter: blur(6px);
}

.publication-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 13px;
    z-index: 8;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    transform: translateX(-50%);
}

.publication-carousel-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.58);

    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.15);

    transition:
        width 0.18s ease,
        background 0.18s ease;
}

.publication-carousel-dot.is-active {
    width: 16px;

    border-radius: 999px;

    background: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Evitar que etiquetas existentes choquen con el contador
|--------------------------------------------------------------------------
*/

.work-image .publication-carousel-counter {
    top: auto;
    right: 13px;
    bottom: 13px;
}

.work-image .publication-carousel-dots {
    bottom: 17px;
}

.design-page-image .publication-carousel-counter {
    top: 14px;
    right: 14px;
}

/*
|--------------------------------------------------------------------------
| Móvil
|--------------------------------------------------------------------------
*/

@media (max-width: 700px) {

    .publication-carousel-arrow {
        width: 36px;
        height: 36px;

        background: rgba(255, 255, 255, 0.86);
    }

    .publication-carousel-prev {
        left: 9px;
    }

    .publication-carousel-next {
        right: 9px;
    }

    .publication-carousel-counter {
        top: 10px;
        right: 10px;
    }

    .publication-carousel-dots {
        bottom: 11px;
    }

    .work-image .publication-carousel-counter {
        right: 10px;
        bottom: 10px;
    }

    .work-image .publication-carousel-dots {
        bottom: 14px;
    }
}

/* =========================================================
   RESPONSIVE COMPACTO
   ========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 44px 0;
    }

    .hero-visual {
        min-height: 375px;
    }

    .hero-image {
        height: 360px;
    }

    .promotion-card {
        min-height: 270px;
    }

    .promotion-image {
        min-height: 270px;
    }
}

@media (max-width: 700px) {

    .site-header-container {
        height: auto;
    }

    .hero-container {
        padding: 42px 0;
    }

    .hero-text h1 {
        font-size: 50px;
    }

    .hero-visual {
        min-height: 365px;
    }

    .hero-image {
        width: 90%;
        height: 350px;
    }

    .public-section {
        padding: 56px 0;
    }

    .service-card {
        min-height: 300px;

        padding: 27px;
    }

    .portfolio-image,
    .design-image {
        height: 340px;
    }

    .booking-section {
        padding:
            26px
            24px;
    }

    .booking-submit {
        padding: 23px 24px;
    }
}

@media (max-width: 480px) {

    .hero-container {
        padding: 36px 0;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-description {
        margin-top: 16px;

        font-size: 15px;
    }

    .hero-actions {
        margin-top: 21px;
    }

    .hero-image {
        height: 325px;
    }

    .hero-visual {
        min-height: 335px;
    }

    .public-section {
        padding: 50px 0;
    }

    .portfolio-image,
    .design-image {
        height: 310px;
    }

    .work-image,
    .design-page-image {
        height: 350px;
    }

    .public-cta,
    .works-cta,
    .design-page-cta,
    .contact-cta {
        margin-top: 42px;

        padding:
            27px
            23px;
    }

    .site-footer {
        margin-top: 0;
    }

    .site-footer-container {
        padding:
            36px 0;
    }

    .booking-page,
    .works-page,
    .design-page,
    .contact-page {
        padding:
            46px
            18px
            60px;
    }

    .contact-info,
    .contact-actions {
        padding:
            25px
            22px;
    }
}

/* =========================================================
   PULIDO VISUAL GLOBAL
   ========================================================= */

/* Evita saltos al navegar hacia anclas con header fijo */
html {
    scroll-padding-top: 88px;
}

/* Jerarquía tipográfica */
.hero-text h1,
.public-section-header h2,
.booking-header h1,
.works-header h1,
.design-page-header h1,
.contact-header h1 {
    text-wrap: balance;
}

.hero-description,
.public-section-header p,
.booking-header p,
.works-header p,
.design-page-header p,
.contact-header p {
    text-wrap: pretty;
}

/* Botones */
.btn-public {
    border: 0;
    cursor: pointer;
}

.btn-public:active {
    transform: translateY(0) scale(0.985);
}

/* Tarjetas */
.portfolio-card,
.design-card,
.work-card,
.design-page-card,
.promotion-card {
    will-change: transform;
}

.portfolio-card:hover,
.design-card:hover,
.work-card:hover,
.design-page-card:hover {
    border-color: rgba(242, 85, 143, 0.38);
}

/* Imágenes: fondo consistente mientras cargan */
.portfolio-image,
.design-image,
.work-image,
.design-page-image,
.promotion-image {
    background-color: var(--color-soft);
}

/* Formularios */
.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: #A99DA2;
}

.booking-field input:hover,
.booking-field textarea:hover,
.booking-field select:hover {
    border-color: rgba(242, 85, 143, 0.42);
}

/* Los enlaces de sección se sienten como controles reales */
.public-link {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.public-link:hover {
    transform: translateY(-1px);
}

/* Carrusel */
.publication-carousel-arrow:focus-visible {
    outline-offset: 2px;
}

.publication-carousel-dot {
    border: 0;
    padding: 0;
}

/* Mejor renderizado en navegadores sin backdrop-filter */
@supports not (backdrop-filter: blur(6px)) {
    .portfolio-type,
    .work-type,
    .publication-carousel-counter {
        background: rgba(21, 19, 22, 0.88);
    }
}

/* Respeta usuarios que prefieren menos animación */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   RESPONSIVE MÓVIL FINAL
   ========================================================= */

/* =========================================================
   TABLET / MÓVIL GRANDE
   ========================================================= */

@media (max-width: 760px) {

    /* ---------- ESTRUCTURA GENERAL ---------- */

    .site-header-container,
    .hero-container,
    .public-section > *,
    .public-cta,
    .site-footer-container,
    .footer-bottom > div {
        width: min(
            calc(100% - 32px),
            var(--content-width)
        );
    }

    .public-section {
        padding: 48px 0;
    }

    .public-section-header {
        margin-bottom: 22px;
    }

    .public-section-header h2 {
        font-size: clamp(29px, 8vw, 36px);
        line-height: 1.04;
        letter-spacing: -1.2px;
    }

    .public-section-header p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.55;
    }

    /* ---------- HEADER ---------- */

    .site-header {
        position: sticky;
        top: 0;
    }

    .site-header-container {
        height: auto;

        padding: 10px 0 8px;

        display: block;
    }

    .site-logo {
        width: fit-content;

        gap: 9px;

        font-size: 17px;
    }

    .site-logo img {
        width: 40px;
        height: 40px;
    }

    .site-nav {
        width: 100%;

        margin-top: 9px;

        display: flex;
        flex-wrap: nowrap;

        gap: 7px;

        overflow-x: auto;
        scrollbar-width: none;

        padding-bottom: 2px;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        flex: 0 0 auto;

        padding: 7px 11px;

        border:
            1px solid
            rgba(255, 255, 255, 0.07);

        border-radius: 999px;

        background:
            rgba(255, 255, 255, 0.045);

        font-size: 11.5px;
        white-space: nowrap;
    }

    .site-nav a::after {
        display: none;
    }

    /* ---------- HERO ---------- */

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 38px 0 34px;
    }

    .hero-text {
        max-width: 100%;

        text-align: center;
    }

    .hero-label {
        margin: 0 auto 13px;

        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .hero-text h1 {
        max-width: 100%;

        font-size: clamp(42px, 13vw, 56px);

        line-height: 0.94;
        letter-spacing: -2.5px;
    }

    .hero-description {
        max-width: 510px;

        margin:
            16px auto 0;

        font-size: 14.5px;
        line-height: 1.55;
    }

    .hero-actions {
        justify-content: center;

        gap: 9px;

        margin-top: 20px;
    }

    .hero-actions .btn-public {
        width: auto;
        min-width: 138px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-image {
        width: min(88%, 390px);
        height: 292px;

        border-width: 6px;
    }

    .hero-shape-one {
        width: 205px;
        height: 205px;

        top: 0;
        right: 2%;
    }

    .hero-shape-two {
        width: 112px;
        height: 112px;

        bottom: 1px;
        left: 5%;
    }

    .hero-badge {
        right: 6%;
        bottom: 18px;

        min-width: 96px;

        padding: 9px 12px;
    }

    .hero-badge span {
        font-size: 9px;
    }

    .hero-badge strong {
        font-size: 15px;
    }

    /* ---------- SERVICIOS ---------- */

    .services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .service-card {
        min-height: 255px;

        padding: 24px;

        border-radius: 20px;
    }

    .service-number {
        top: 18px;
        right: 20px;

        font-size: 38px;
    }

    .service-label {
        margin-bottom: 10px;
    }

    .service-card h3 {
        max-width: 80%;

        margin-bottom: 11px;

        font-size: 30px;
        line-height: 1.03;
    }

    .service-card p {
        max-width: 92%;

        font-size: 13px;
        line-height: 1.5;
    }

    .service-link {
        padding-top: 15px;

        font-size: 12.5px;
    }

    /* ---------- ENCABEZADOS CON ENLACE ---------- */

    .section-header-row {
        align-items: flex-start;
        flex-direction: column;

        gap: 13px;
    }

    .section-header-row > div {
        width: 100%;
    }

    .public-link {
        min-height: 34px;

        padding: 0 12px;

        font-size: 12px;
    }

    /* ---------- PROMOCIONES ---------- */

    .promotions-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .promotion-card {
        min-height: 0;

        grid-template-columns:
            minmax(115px, 0.8fr)
            minmax(0, 1.2fr);

        border-radius: 20px;
    }

    .promotion-image {
        min-height: 230px;
        height: 100%;
    }

    .promotion-content {
        padding: 22px 18px;
    }

    .promotion-label {
        margin-bottom: 8px;

        font-size: 9px;
    }

    .promotion-content h3 {
        font-size: 24px;
    }

    .promotion-content p {
        margin-top: 8px;

        font-size: 12px;
        line-height: 1.5;
    }

    .promotion-date {
        margin-top: 9px;

        font-size: 10px;
    }

    .promotion-link {
        margin-top: 13px;

        font-size: 12px;
    }

    /* ---------- HOME: PORTAFOLIO ---------- */

    .portfolio-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .portfolio-image {
        height: 220px;
    }

    .portfolio-type {
        left: 10px;
        bottom: 10px;

        padding: 5px 9px;

        font-size: 8.5px;
    }

    .portfolio-info {
        padding: 13px 14px 15px;
    }

    .portfolio-info h3 {
        font-size: 15px;
    }

    .portfolio-info p {
        font-size: 11.5px;
        line-height: 1.45;
    }

    /* ---------- HOME: DISEÑOS ---------- */

    .designs-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .design-image {
        height: 220px;

        padding: 10px;
    }

    .design-badge {
        top: 10px;
        left: 10px;

        padding: 5px 8px;

        font-size: 8px;
    }

    .design-card-info {
        padding: 13px 14px 15px;
    }

    .design-card-info h3 {
        font-size: 15px;
    }

    .design-card-info p {
        font-size: 11.5px;
        line-height: 1.45;
    }

    .design-link {
        margin-top: 10px;

        font-size: 11.5px;
    }

    /* ---------- CTA GENERAL ---------- */

    .public-cta {
        margin: 42px auto;

        padding: 27px 24px;

        flex-direction: column;
        align-items: flex-start;

        gap: 18px;

        border-radius: 21px;
    }

    .public-cta h2 {
        font-size: 28px;
    }

    .public-cta p {
        font-size: 13px;
    }

    .public-cta .btn-public {
        width: 100%;
    }

    /* ---------- PÁGINAS INTERNAS ---------- */

    .booking-page,
    .works-page,
    .design-page,
    .contact-page {
        padding:
            42px
            16px
            58px;
    }

    .booking-header,
    .works-header,
    .design-page-header,
    .contact-header {
        margin-bottom: 25px;
    }

    .booking-header h1,
    .works-header h1,
    .design-page-header h1,
    .contact-header h1 {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 0.98;
    }

    .booking-header p,
    .works-header p,
    .design-page-header p,
    .contact-header p {
        font-size: 14px;
        line-height: 1.55;
    }

    /* ---------- BOOKING ---------- */

    .booking-service-grid,
    .booking-fields {
        grid-template-columns: 1fr;
    }

    .booking-section {
        padding: 24px 20px;
    }

    .booking-section-title {
        margin-bottom: 16px;
    }

    .booking-section-title h2 {
        font-size: 20px;
    }

    .booking-service-content {
        min-height: 98px;

        padding: 17px;
    }

    .booking-field {
        margin-bottom: 13px;
    }

    .booking-submit {
        padding: 22px 20px;

        flex-direction: column;
        align-items: stretch;

        gap: 16px;
    }

    .booking-submit .btn-public {
        width: 100%;
    }

    .booking-times {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 7px;
    }

    .booking-time {
        min-width: 0;

        padding: 9px 8px;

        font-size: 12px;
    }

    /* ---------- TRABAJOS / DISEÑOS INTERNOS ---------- */

    .works-grid,
    .design-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .work-image,
    .design-page-image {
        height: 260px;
    }

    .work-content,
    .design-page-content {
        padding: 14px;
    }

    .work-content h2,
    .design-page-content h2,
    .design-page-content h3 {
        font-size: 16px;
    }

    .work-content p,
    .design-page-content p {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .works-cta,
    .design-page-cta,
    .contact-cta {
        margin-top: 40px;

        padding: 25px 22px;

        border-radius: 21px;
    }

    /* ---------- CONTACTO ---------- */

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .contact-info,
    .contact-actions {
        padding: 24px 21px;

        border-radius: 20px;
    }

    .contact-info h2,
    .contact-actions h2 {
        font-size: 24px;
    }

    /* ---------- FOOTER ---------- */

    .site-footer {
        margin-top: 0;
    }

    .site-footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 26px 20px;

        padding: 34px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 100%;
    }

    .footer-brand-title {
        margin-bottom: 12px;
    }

    .footer-brand-title img {
        width: 44px;
        height: 44px;
    }

    .footer-brand-title strong {
        font-size: 18px;
    }

    .footer-title {
        margin-bottom: 11px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .social-icon {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    .footer-bottom > div {
        min-height: 72px;

        padding: 14px 0;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 5px;
    }
}

/* =========================================================
   CELULARES ESTÁNDAR
   ========================================================= */

@media (max-width: 520px) {

    /* ---------- HEADER ---------- */

    .site-header-container,
    .hero-container,
    .public-section > *,
    .public-cta,
    .site-footer-container,
    .footer-bottom > div {
        width: min(
            calc(100% - 26px),
            var(--content-width)
        );
    }

    .site-nav {
        margin-left: -2px;
    }

    /* ---------- HERO ---------- */

    .hero-container {
        padding:
            31px 0
            29px;

        gap: 23px;
    }

    .hero-label {
        font-size: 9px;
    }

    .hero-text h1 {
        font-size: clamp(39px, 12vw, 48px);
    }

    .hero-description {
        max-width: 360px;

        font-size: 13.5px;
    }

    .hero-actions {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .hero-actions .btn-public {
        width: 100%;
        min-width: 0;

        min-height: 43px;

        padding: 0 12px;

        font-size: 12px;
    }

    .hero-visual {
        min-height: 272px;
    }

    .hero-image {
        width: 89%;
        height: 265px;
    }

    .hero-shape-one {
        width: 178px;
        height: 178px;
    }

    .hero-shape-two {
        width: 90px;
        height: 90px;
    }

    .hero-badge {
        right: 4%;
        bottom: 12px;

        min-width: 86px;

        padding: 8px 10px;
    }

    /* ---------- SECCIONES ---------- */

    .public-section {
        padding: 42px 0;
    }

    .public-section-header {
        margin-bottom: 18px;
    }

    .public-section-header h2 {
        font-size: 29px;
    }

    .public-section-header p {
        font-size: 13px;
    }

    .portfolio-section .public-section-header > div > span,
    .designs-section .public-section-header > div > span {
        padding: 5px 9px;

        font-size: 9px;
    }

    /* ---------- SERVICIOS ---------- */

    .service-card {
        min-height: 238px;

        padding: 21px;
    }

    .service-number {
        font-size: 34px;
    }

    .service-card h3 {
        font-size: 27px;
    }

    .service-card p {
        max-width: 100%;

        font-size: 12.5px;
    }

    /* ---------- PROMOCIONES ---------- */

    .promotion-card {
        grid-template-columns: 1fr;
    }

    .promotion-image {
        min-height: 185px;
        height: 185px;
    }

    .promotion-content {
        padding: 19px;
    }

    .promotion-content h3 {
        font-size: 23px;
    }

    /* ---------- HOME: PORTAFOLIO / DISEÑOS ---------- */

    .portfolio-grid,
    .designs-grid {
        gap: 10px;
    }

    .portfolio-image,
    .design-image {
        height: 190px;
    }

    .portfolio-info,
    .design-card-info {
        padding:
            11px
            12px
            13px;
    }

    .portfolio-info h3,
    .design-card-info h3 {
        font-size: 14px;
    }

    .portfolio-info p,
    .design-card-info p {
        display: -webkit-box;

        overflow: hidden;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;

        font-size: 10.5px;
    }

    /* ---------- BOOKING ---------- */

    .booking-page,
    .works-page,
    .design-page,
    .contact-page {
        padding:
            36px
            13px
            50px;
    }

    .booking-form {
        border-radius: 20px;
    }

    .booking-section {
        padding:
            22px
            17px;
    }

    .booking-step {
        width: 30px;
        height: 30px;
    }

    .booking-fields {
        gap: 12px;
    }

    .booking-times {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .booking-reference {
        flex-direction: row;

        gap: 12px;

        padding: 12px;
    }

    .booking-reference img {
        width: 74px;
        height: 74px;
    }

    .booking-submit {
        padding:
            20px
            17px;
    }

    /* ---------- TRABAJOS / DISEÑOS INTERNOS ---------- */

    .works-grid,
    .design-page-grid {
        gap: 10px;
    }

    .work-image,
    .design-page-image {
        height: 220px;
    }

    .work-content,
    .design-page-content {
        padding: 12px;
    }

    .work-content h2,
    .design-page-content h2,
    .design-page-content h3 {
        font-size: 14px;
    }

    .work-content p,
    .design-page-content p {
        display: -webkit-box;

        overflow: hidden;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;

        font-size: 10.5px;
    }

    /* ---------- CTA ---------- */

    .public-cta,
    .works-cta,
    .design-page-cta,
    .contact-cta {
        padding:
            23px
            20px;
    }

    .public-cta h2,
    .works-cta h2,
    .design-page-cta h2,
    .contact-cta h2 {
        font-size: 25px;
    }

    /* ---------- FOOTER ---------- */

    .site-footer-container {
        gap: 22px 16px;
    }

    .footer-brand > p {
        font-size: 12px;
    }
}

/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 390px) {

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-image {
        height: 245px;
    }

    .hero-visual {
        min-height: 252px;
    }

    .portfolio-image,
    .design-image {
        height: 170px;
    }

    .work-image,
    .design-page-image {
        height: 200px;
    }

    .booking-times {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .site-footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}



/* =========================================================
   GESTIÓN PÚBLICA DE CITA
   ========================================================= */

.manage-booking-page {
    min-height: 72vh;
    padding: 58px 24px 76px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(242, 85, 143, 0.13),
            transparent 24rem
        ),
        linear-gradient(
            180deg,
            #fffdfd 0%,
            #fff4f8 100%
        );
}

.manage-booking-container {
    width: min(960px, 100%);
    margin: 0 auto;
}

.manage-booking-header {
    max-width: 700px;
    margin-bottom: 30px;
}

.manage-booking-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 10px;
    border: 1px solid rgba(242, 85, 143, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.manage-booking-header h1,
.manage-booking-state h1 {
    color: var(--color-black);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.manage-booking-header p,
.manage-booking-state p {
    max-width: 610px;
    margin-top: 12px;
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

.manage-booking-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 20px;
    align-items: start;
}

.manage-booking-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(242, 85, 143, 0.16);
    border-radius: 24px;
    background: var(--color-white);
    box-shadow:
        0 16px 40px rgba(75, 29, 46, 0.055);
}

.manage-booking-action-card {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(242, 85, 143, 0.08),
            transparent 18rem
        ),
        var(--color-white);
}

.manage-booking-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.manage-booking-card-header > div > span {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.manage-booking-card-header h2,
.manage-booking-card-title h2,
.manage-request-pending h2 {
    margin: 0;
    color: var(--color-black);
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.6px;
}

.manage-booking-status {
    flex-shrink: 0;
    padding: 6px 9px;
    border-radius: 999px;
    background: #e7f6ec;
    color: #217a3c;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.manage-booking-data {
    display: grid;
    gap: 0;
}

.manage-booking-data > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--color-border);
}

.manage-booking-data > div:last-child {
    border-bottom: 0;
}

.manage-booking-data span {
    color: var(--color-text-secondary);
    font-size: 12px;
}

.manage-booking-data strong {
    color: var(--color-black);
    font-size: 13px;
    text-align: right;
}

.manage-booking-card-title {
    margin-bottom: 22px;
}

.manage-booking-card-title p,
.manage-request-pending > p {
    margin-top: 9px;
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.manage-booking-form {
    display: grid;
    gap: 18px;
}

.manage-booking-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-black);
    font-size: 13px;
    font-weight: 700;
}

.manage-booking-field label span {
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 400;
}

.manage-booking-field input,
.manage-booking-field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fffdfd;
    color: var(--color-text);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.manage-booking-field input:focus,
.manage-booking-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 4px
        rgba(242, 85, 143, 0.12);
}

.manage-booking-field textarea {
    min-height: 105px;
    resize: vertical;
}

.manage-booking-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(242, 85, 143, 0.17);
    border-radius: 13px;
    background: var(--color-primary-light);
}

.manage-booking-note i {
    margin-top: 2px;
    color: var(--color-primary);
}

.manage-booking-note p {
    margin: 0;
    color: #675d62;
    font-size: 12px;
    line-height: 1.55;
}

.manage-booking-times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 43px;
}

.manage-booking-times > p {
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border-radius: 11px;
    background: var(--color-soft);
    color: var(--color-text-secondary);
    font-size: 12px;
}

.manage-booking-time {
    min-width: 74px;
    padding: 9px 13px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-black);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.manage-booking-time:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.manage-booking-time.is-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.manage-booking-error {
    margin-bottom: 18px;
    padding: 13px 15px;
    border: 1px solid #f2cccc;
    border-radius: 11px;
    background: #fff0f0;
    color: #9f2d2d;
    font-size: 13px;
}

.manage-request-pending {
    display: grid;
}

.manage-request-icon,
.manage-booking-state-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 15px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 19px;
}

.manage-booking-state-icon.is-error {
    background: #f5f1f3;
    color: #84787e;
}

.manage-request-summary {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.manage-request-summary > div {
    padding: 14px;
    border: 1px solid rgba(242, 85, 143, 0.14);
    border-radius: 13px;
    background: var(--color-primary-light);
}

.manage-request-summary span {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-secondary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.manage-request-summary strong {
    color: var(--color-black);
    font-size: 13px;
}

.manage-booking-state {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 0;
    text-align: center;
}

.manage-booking-state .manage-booking-label,
.manage-booking-state .manage-booking-state-icon {
    margin-left: auto;
    margin-right: auto;
}

.manage-booking-state .btn-public {
    margin-top: 25px;
}


/* =========================================================
   GESTIÓN PÚBLICA DE CITA · RESPONSIVE
   ========================================================= */

@media (max-width: 760px) {

    .manage-booking-page {
        padding: 38px 16px 54px;
    }

    .manage-booking-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .manage-booking-card {
        padding: 22px 19px;
        border-radius: 20px;
    }

    .manage-booking-header {
        margin-bottom: 24px;
    }

    .manage-booking-header h1,
    .manage-booking-state h1 {
        font-size: clamp(35px, 10vw, 46px);
    }

    .manage-request-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .manage-booking-page {
        padding: 32px 13px 48px;
    }

    .manage-booking-card-header {
        flex-direction: column;
    }

    .manage-booking-data > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .manage-booking-data strong {
        text-align: left;
    }

    .manage-booking-form .btn-public {
        width: 100%;
    }
}

/* =========================================================
   CALENDARIO DE CITAS · COMPACTO / PULIDO
   ========================================================= */

.booking-calendar {
    width: 100%;
    max-width: 520px;
    margin: 14px auto 0;
    padding: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBFD 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(57, 28, 40, 0.06);
}

.booking-calendar-header {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.booking-calendar-header strong,
.booking-calendar-title {
    margin: 0;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 850;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -0.25px;
}

.booking-calendar-nav {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #FFFFFF;
    color: var(--color-black);
    border: 1px solid var(--color-border);
    border-radius: 11px;
    box-shadow: 0 3px 10px rgba(57, 28, 40, 0.04);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: transform .15s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.booking-calendar-nav:hover:not(:disabled) {
    background-color: var(--color-primary-light);
    border-color: rgba(242, 85, 143, .55);
    color: var(--color-primary-hover);
    box-shadow: 0 5px 14px rgba(242, 85, 143, .10);
}

.booking-calendar-nav:active:not(:disabled) {
    transform: scale(.96);
}

.booking-calendar-weekdays,
.booking-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.booking-calendar-weekdays {
    margin-bottom: 6px;
}

.booking-calendar-weekdays span {
    padding: 4px 0 6px;
    color: #9A8E93;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.booking-calendar-empty,
.booking-calendar-day {
    min-width: 0;
    height: 44px;
}

.booking-calendar-day {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #FFFFFF;
    color: var(--color-black);
    border: 1px solid #EEE5E9;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .15s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.booking-calendar-day:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: var(--color-primary);
    box-shadow: 0 6px 14px rgba(242, 85, 143, .10);
}

.booking-calendar-day.is-today::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
    transform: translateX(-50%);
}

.booking-calendar-day.is-selected {
    z-index: 2;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover)) !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(242, 85, 143, .14), 0 8px 18px rgba(242, 85, 143, .18);
}

.booking-calendar-day.status-disponible,
.booking-calendar-day.status-alta {
    background-color: #EDF8F0;
    border-color: #CBE7D2;
    color: #297744;
}

.booking-calendar-day.status-media {
    background-color: #FFF9E8;
    border-color: #EEDFA3;
    color: #806A1E;
}

.booking-calendar-day.status-baja {
    background-color: #FFF1E7;
    border-color: #F0C7A7;
    color: #98571F;
}

.booking-calendar-day.status-no_disponible {
    background-color: #F6F4F5;
    border-color: #ECE8EA;
    color: #B2A9AD;
    cursor: not-allowed;
}

.booking-calendar-day:disabled {
    opacity: .78;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.booking-calendar-loading,
.booking-calendar-empty-message {
    grid-column: 1 / -1;
    padding: 24px 10px;
    color: var(--color-text-secondary);
    font-size: 13px;
    text-align: center;
}

.booking-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 11px;
}

.booking-calendar-legend span,
.booking-calendar-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.calendar-dot,
.booking-calendar-legend-color {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
}

.calendar-dot-available,
.calendar-dot-high,
.booking-calendar-legend-color.high {
    background-color: #63B77A;
}

.calendar-dot-medium,
.booking-calendar-legend-color.medium {
    background-color: #D3B44A;
}

.calendar-dot-low,
.booking-calendar-legend-color.low {
    background-color: #DA8848;
}

.calendar-dot-unavailable,
.booking-calendar-legend-color.none {
    background-color: #B7B1B4;
}

@media (max-width: 600px) {
    .booking-calendar {
        max-width: 100%;
        margin-top: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .booking-calendar-header {
        grid-template-columns: 34px 1fr 34px;
        gap: 8px;
        margin-bottom: 12px;
    }

    .booking-calendar-header strong,
    .booking-calendar-title {
        font-size: 15px;
    }

    .booking-calendar-nav {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 20px;
    }

    .booking-calendar-weekdays,
    .booking-calendar-days {
        gap: 4px;
    }

    .booking-calendar-weekdays span {
        padding-bottom: 4px;
        font-size: 9px;
    }

    .booking-calendar-empty,
    .booking-calendar-day {
        height: 39px;
    }

    .booking-calendar-day {
        border-radius: 9px;
        font-size: 12px;
    }

    .booking-calendar-legend {
        gap: 7px 11px;
        margin-top: 12px;
        padding-top: 10px;
        font-size: 10px;
    }
}



/* =========================================================
   GESTIÓN DE CITA · PRECIO Y ANTICIPO
   ========================================================= */

.manage-payment-card {
    grid-column: 1 / -1;
    overflow: hidden;
    position: relative;
}

.manage-payment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--color-primary),
            var(--color-primary-soft)
        );
}

.manage-payment-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.manage-payment-status.status-pendiente,
.manage-payment-status.status-vencido {
    background: #fff4dd;
    color: #8d6112;
}

.manage-payment-status.status-comprobante_enviado {
    background: #eef4ff;
    color: #315f9b;
}

.manage-payment-status.status-aprobado,
.manage-payment-status.status-no_requerido {
    background: #eaf8ef;
    color: #217a3c;
}

.manage-payment-status.status-rechazado {
    background: #fff0f0;
    color: #a72e2e;
}


/* Resumen: precio, anticipo y fecha límite */

.manage-payment-summary {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.manage-payment-summary > div {
    min-height: 92px;
    padding: 17px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafd 100%
        );
}

.manage-payment-summary span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-text-secondary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.manage-payment-summary strong {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}


/* Bloque de datos bancarios */

.manage-payment-instructions {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
}

.manage-payment-instructions > h3 {
    margin: 0 0 6px;
    color: var(--color-black);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.25px;
}

.manage-payment-instructions > p {
    max-width: 720px;
    margin: 15px 0 8px;
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.65;
}

.manage-payment-instructions > small {
    display: block;
    margin-top: 8px;
    color: var(--color-text-secondary);
    font-size: 11px;
}

.manage-payment-bank-data {
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid rgba(242, 85, 143, .16);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow:
        0 10px 28px rgba(75, 29, 46, .045);
}

.manage-payment-bank-row {
    min-height: 68px;
    padding: 14px 17px;
    display: grid;
    grid-template-columns:
        minmax(120px, .55fr)
        minmax(0, 1.45fr);
    align-items: center;
    gap: 18px;
}

.manage-payment-bank-row + .manage-payment-bank-row {
    border-top: 1px solid var(--color-border);
}

.manage-payment-bank-row > span {
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.manage-payment-bank-row > strong {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.manage-payment-copy-value {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.manage-payment-copy-value strong {
    min-width: 0;
    color: var(--color-black);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    overflow-wrap: anywhere;
}


/* Botón copiar */

.manage-payment-copy {
    min-height: 36px;
    flex: 0 0 auto;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid rgba(242, 85, 143, .22);
    border-radius: 10px;

    background: var(--color-primary-light);
    color: var(--color-primary);

    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;

    transition:
        transform .18s ease,
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.manage-payment-copy:hover {
    transform: translateY(-1px);
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow:
        0 8px 18px rgba(242, 85, 143, .18);
}

.manage-payment-copy:active {
    transform: translateY(0);
}

.manage-payment-copy i {
    font-size: 12px;
}


/* Indicaciones adicionales */

.manage-payment-extra-instructions {
    margin-top: 14px;
    padding: 14px 16px;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
    background: var(--color-primary-light);
}

.manage-payment-extra-instructions strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-black);
    font-size: 12px;
    font-weight: 800;
}

.manage-payment-extra-instructions p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 12px;
    line-height: 1.6;
}


/* Formulario de comprobante */

.manage-payment-form {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: stretch;
    gap: 12px;
    margin-top: 18px;
}

.manage-payment-upload {
    min-width: 0;
    min-height: 86px;
    padding: 16px 17px;
    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px dashed rgba(242, 85, 143, .48);
    border-radius: 16px;
    background: #fff9fb;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.manage-payment-upload:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow:
        0 9px 24px rgba(242, 85, 143, .08);
}

.manage-payment-upload > i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border-radius: 13px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 18px;
}

.manage-payment-upload div {
    min-width: 0;
}

.manage-payment-upload strong,
.manage-payment-upload span {
    display: block;
}

.manage-payment-upload strong {
    margin-bottom: 4px;
    color: var(--color-black);
    font-size: 13px;
}

.manage-payment-upload span {
    max-width: 100%;
    overflow: hidden;
    color: var(--color-text-secondary);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.manage-payment-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.manage-payment-form > .btn-public {
    min-width: 170px;
    padding-left: 22px;
    padding-right: 22px;
    align-self: stretch;
}


/* Mensajes */

.manage-payment-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
}

.manage-payment-message > i {
    margin-top: 2px;
    font-size: 18px;
}

.manage-payment-message strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.manage-payment-message p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

.manage-payment-message.is-success {
    border: 1px solid #cbe7d2;
    background: #edf8f0;
    color: #217a3c;
}

.manage-payment-message.is-review {
    border: 1px solid #cad9ed;
    background: #eef4ff;
    color: #315f9b;
}

.manage-payment-message.is-error {
    border: 1px solid #f2cccc;
    background: #fff0f0;
    color: #9f2d2d;
}


/* Responsive */

@media (max-width: 760px) {

    .manage-payment-summary {
        grid-template-columns: 1fr;
    }

    .manage-payment-summary > div {
        min-height: 76px;
    }

    .manage-payment-bank-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .manage-payment-form {
        grid-template-columns: 1fr;
    }

    .manage-payment-form > .btn-public {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 520px) {

    .manage-payment-status {
        align-self: flex-start;
    }

    .manage-payment-instructions > h3 {
        font-size: 18px;
    }

    .manage-payment-bank-row {
        padding: 14px;
    }

    .manage-payment-copy-value {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .manage-payment-copy {
        width: 100%;
    }

    .manage-payment-upload {
        align-items: flex-start;
    }
}


/* =========================================================
   FORMULARIO DE CITAS · SELECT Y ARCHIVO PERSONALIZADOS
   ========================================================= */

/* Select de tipo de perforación */

.booking-select-wrap {
    position: relative;
}

.booking-select-wrap select {
    min-height: 52px;
    padding: 0 48px 0 16px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    background: #fffdfd;

    border: 1px solid var(--color-border);
    border-radius: 12px;

    color: var(--color-text);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.booking-select-wrap select:hover {
    border-color: var(--color-primary-soft);
    background-color: #ffffff;
}

.booking-select-wrap select:focus {
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 4px
        rgba(242, 85, 143, 0.12);
}

.booking-select-arrow {
    position: absolute;

    top: 50%;
    right: 17px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-primary);

    font-size: 12px;

    pointer-events: none;
}


/* Selector de archivo */

.booking-file {
    position: relative;
}

.booking-file > input[type="file"] {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    overflow: hidden;

    pointer-events: none;
}

.booking-file-control {
    width: 100%;
    min-height: 54px;

    margin: 0 !important;
    padding: 6px;

    display: flex !important;
    align-items: center;

    gap: 12px;

    background: #fffdfd;

    border: 1px solid var(--color-border);
    border-radius: 12px;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.booking-file-control:hover {
    border-color: var(--color-primary-soft);
    background-color: #ffffff;
}

.booking-file:focus-within .booking-file-control {
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 4px
        rgba(242, 85, 143, 0.12);
}

.booking-file-button {
    min-height: 40px;

    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    background-color: var(--color-primary-light);

    border: 1px solid rgba(242, 85, 143, 0.18);
    border-radius: 9px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 800;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.booking-file-control:hover .booking-file-button {
    background-color: var(--color-primary);
    color: #ffffff;
}

.booking-file-name {
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: var(--color-text-secondary);

    font-size: 13px;
    font-weight: 500;
}

.booking-file-name.has-file {
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 520px) {
    .booking-file-control {
        align-items: stretch;
        flex-direction: column;

        gap: 7px;

        padding: 7px;
    }

    .booking-file-button {
        width: 100%;
    }

    .booking-file-name {
        padding: 4px 7px 6px;

        text-align: center;
    }
}


/* =========================================================
   GESTIÓN DE CITA · PROPUESTA DE NUEVO HORARIO
   ========================================================= */

.manage-proposal-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
    padding: 28px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff8fb 100%
        );
    border: 1px solid rgba(242, 85, 143, 0.20);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.manage-proposal-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--color-primary),
            var(--color-primary-soft)
        );
}

/* Encabezado */

.manage-proposal-heading {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    margin-bottom: 24px;
}

.manage-proposal-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 16px;
    font-size: 21px;
}

.manage-proposal-heading-copy {
    min-width: 0;
}

.manage-proposal-heading-copy .manage-booking-label {
    display: inline-flex;
    width: auto;
    margin-bottom: 8px;
    padding: 6px 10px;
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid rgba(242, 85, 143, 0.22);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.manage-proposal-heading-copy h2 {
    max-width: 760px;
    margin: 0;
    color: var(--color-black);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.7px;
}

.manage-proposal-heading-copy p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

/* Contenido */

.manage-proposal-content {
    min-width: 0;
}

/* Comparación de fecha y horario */

.manage-proposal-comparison {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.manage-proposal-comparison > div {
    min-width: 0;
    padding: 18px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
}

.manage-proposal-comparison > div.is-proposed {
    background-color: var(--color-primary-light);
    border-color: rgba(242, 85, 143, 0.24);
}

.manage-proposal-comparison span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-text-secondary);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.manage-proposal-comparison strong {
    display: block;
    color: var(--color-black);
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

/* Mensaje del estudio */

.manage-proposal-message {
    margin-top: 16px;
    padding: 16px 18px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: 14px;
}

.manage-proposal-message strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-black);
    font-size: 12px;
}

.manage-proposal-message p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

/* Errores dentro de propuesta */

.manage-proposal-card .manage-booking-error {
    margin-top: 16px;
}

/* Acciones */

.manage-proposal-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.manage-proposal-actions form {
    margin: 0;
}

.manage-proposal-actions .btn-public {
    min-width: 190px;
    border: 0;
    cursor: pointer;
}

.manage-proposal-reject {
    background-color: #ffffff !important;
    color: #735f68 !important;
    border: 1px solid var(--color-border) !important;
}

.manage-proposal-reject:hover {
    background-color: #f8f4f6 !important;
    color: var(--color-black) !important;
}

/* Resultado de respuesta */

.manage-proposal-result {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: 100%;
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.6;
}

.manage-proposal-result i {
    flex: 0 0 auto;
    margin-top: 2px;
}

.manage-proposal-result p {
    margin: 0;
}

.manage-proposal-result.is-success,
.manage-proposal-result:not(.is-error) {
    background-color: #edf8f0;
    color: #217a3c;
    border: 1px solid #cbe7d2;
}

.manage-proposal-result.is-error {
    background-color: #fff0f0;
    color: #9f2d2d;
    border: 1px solid #f2cccc;
}


/* =========================================================
   PROPUESTA · RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .manage-proposal-comparison {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .manage-proposal-comparison > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {

    .manage-proposal-card {
        padding: 22px 19px;
        border-radius: 20px;
    }

    .manage-proposal-heading {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
    }

    .manage-proposal-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
        font-size: 18px;
    }

    .manage-proposal-heading-copy h2 {
        font-size: 23px;
    }

    .manage-proposal-comparison {
        grid-template-columns: 1fr;
    }

    .manage-proposal-comparison > div:last-child {
        grid-column: auto;
    }

    .manage-proposal-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .manage-proposal-actions form,
    .manage-proposal-actions .btn-public {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {

    .manage-proposal-heading {
        grid-template-columns: 1fr;
    }

    .manage-proposal-icon {
        margin-bottom: 2px;
    }

    .manage-proposal-heading-copy h2 {
        font-size: 21px;
    }
}

/* =========================================================
   PROMOCIONES · RESUMEN DE SERVICIO Y PRECIO
   ========================================================= */

.promotion-offer-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 15px 0 4px;
}

.promotion-service-name,
.promotion-service-quantity {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--color-soft);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 700;
}

.promotion-price {
    display: block;
    width: 100%;
    margin-top: 3px;
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
}

.promotion-normal-price {
    display: block;
    width: 100%;
    color: var(--color-text-secondary);
    font-size: 12px;
}


/* =========================================================
   HOME · PROMOCIONES MULTISERVICIO
   ========================================================= */

.promotion-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    width: 100%;
}

.promotion-service-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.promotion-service-item + .promotion-service-item::before {
    content: "+";
    margin-right: 3px;
    color: var(--color-text-secondary, #777);
}

.promotion-service-item .promotion-service-name {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
}

.promotion-service-item .promotion-service-quantity {
    flex: 0 0 auto;
    white-space: nowrap;
}
