        :root {
            --bg: #fdf7f2;
            --bg-soft: #f7efe7;
            --primary: #7b5a3a;
            --primary-soft: #c9a27f;
            --text: #3d3026;
            --muted: #856f5d;
            --white: #ffffff;
            --shadow-soft: 0 15px 30px rgba(0, 0, 0, 0.08);
            --radius-xl: 24px;
            --radius-lg: 18px;
            --radius-pill: 999px;
            --transition-fast: 0.2s ease-in-out;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
            Roboto, sans-serif;
            background: radial-gradient(circle at top, #fdf9f4 0, #f8efe7 40%, #f5ebe3 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden; /* evita scroll horizontal en móviles */
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Layout base */
        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header / Nav */
        header {
            position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(12px);
            background: linear-gradient(
                    to bottom,
                    rgba(253, 247, 242, 0.96),
                    rgba(253, 247, 242, 0.9),
                    rgba(253, 247, 242, 0.85)
            );
            border-bottom: 1px solid rgba(201, 162, 127, 0.25);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-logo {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
            background: #fff;
            padding: 4px;
            flex-shrink: 0;
        }

        .nav-title {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .nav-title-main {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--primary);
        }

        .nav-title-sub {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            flex-wrap: wrap;
        }

        .nav-links a {
            position: relative;
            padding-bottom: 0.1rem;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: var(--primary);
            transition: width var(--transition-fast);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: none;
        }

        @media (min-width: 768px) {
            .nav-cta {
                display: inline-flex;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding: 0 1rem;
            }

            .nav {
                align-items: flex-start;
            }

            .nav-brand {
                margin-bottom: 0.25rem;
            }

            .nav-links {
                width: 100%;
                font-size: 0.78rem;
                row-gap: 0.3rem;
                justify-content: center;
                gap: 0.55rem 0.85rem;
                text-align: center;
            }

            .nav-links a {
                white-space: normal;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-pill);
            padding: 0.6rem 1.4rem;
            border: none;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: transform var(--transition-fast),
            box-shadow var(--transition-fast), background var(--transition-fast),
            color var(--transition-fast);
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ae7b4e, #7b5a3a);
            color: #fff;
            box-shadow: 0 10px 20px rgba(123, 90, 58, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 26px rgba(123, 90, 58, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(123, 90, 58, 0.5);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: rgba(123, 90, 58, 0.06);
        }

        /* Hero */
        .hero {
            padding: 2.5rem 0 3rem;
        }

        @media (min-width: 768px) {
            .hero {
                padding: 3.5rem 0 4rem;
            }
        }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr);
            gap: 2rem;
            align-items: center;
            justify-items: center;
            text-align: center;
        }

        .hero-content {
            width: 100%;
            max-width: 44rem;
            margin: 0 auto;
            justify-self: center;
        }

        @media (min-width: 900px) {
            .hero-inner {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.2rem 0.5rem;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(201, 162, 127, 0.7);
            background: rgba(253, 249, 244, 0.7);
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--muted);
            margin-bottom: 0.9rem;
        }

        .hero-title {
            font-size: 2rem;
            letter-spacing: 0.02em;
            line-height: 1.15;
            margin-bottom: 0.8rem;
            color: var(--primary);
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }

        .hero-highlight {
            color: var(--primary-soft);
            font-weight: 600;
        }

        .hero-text {
            font-size: 0.98rem;
            color: var(--muted);
            max-width: 34rem;
            margin-bottom: 1.4rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .hero-note {
            font-size: 0.8rem;
            color: var(--muted);
            text-align: center;
        }

        .hero-note strong {
            color: var(--primary);
        }

        .hero-media {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            align-items: flex-end;
        }

        .hero-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-soft);
            padding: 0.5rem;
            width: 100%;
        }

        .hero-card-inner {
            border-radius: calc(var(--radius-xl) - 6px);
            overflow: hidden;
            background: radial-gradient(
                    circle at top left,
                    rgba(201, 162, 127, 0.3),
                    rgba(249, 242, 234, 0.95)
            );
            position: relative;
        }

        .hero-card-image {
            border-radius: calc(var(--radius-xl) - 6px);
            overflow: hidden;
        }

        .hero-floating {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-lg);
            padding: 0.6rem 0.9rem;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
            font-size: 0.78rem;
            color: var(--primary);
            max-width: 220px;
            margin-top: 0.3rem;
        }

        .hero-floating-title {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .hero-floating-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--muted);
        }

        @media (max-width: 768px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 2.2rem;
            }

            .hero-media {
                align-items: center;
            }

            .hero-card {
                max-width: 420px;
            }

            .hero-floating {
                max-width: 100%;
                align-self: stretch;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-text {
                font-size: 0.92rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 640px) {
            .hero-badge {
                font-size: 0.68rem;
                letter-spacing: 0.12em;
                justify-content: center;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn {
                width: 100%;
            }
        }

        /* Secciones */
        .section {
            padding: 2.5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1.8rem;
        }

        .section-eyebrow {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: var(--muted);
            margin-bottom: 0.4rem;
        }

        .section-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--muted);
            max-width: 32rem;
            margin: 0.2rem auto 0;
        }

        /* Sobre / 2 columnas */
        .split {
            display: grid;
            gap: 1.6rem;
        }

        @media (min-width: 900px) {
            .split {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .card-soft {
            background: var(--bg-soft);
            border-radius: var(--radius-xl);
            padding: 1.4rem 1.4rem 1.5rem;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
        }

        .text-small {
            font-size: 0.9rem;
            color: var(--muted);
        }

        .list-check {
            list-style: none;
            margin-top: 0.9rem;
            display: grid;
            gap: 0.35rem;
            font-size: 0.9rem;
        }

        .list-check li::before {
            content: "•";
            color: var(--primary-soft);
            margin-right: 0.45rem;
            font-weight: 700;
        }

        .about-photo {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            background: #000;
        }

        /* Servicios */
        .cards-grid {
            display: grid;
            gap: 1.2rem;
            justify-content: center;
        }

        @media (min-width: 600px) and (max-width: 899px) {
            .cards-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 900px) {
            .cards-grid {
                grid-template-columns: repeat(2, minmax(0, 24rem));
                justify-content: center;
            }
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
            transition: transform var(--transition-fast),
            box-shadow var(--transition-fast);
        }

        .service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.09);
        }

        .service-image {
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .service-body {
            padding: 1rem 1rem 1.1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .service-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
        }

        .service-tagline {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--muted);
        }

        .service-text {
            font-size: 0.88rem;
            color: var(--muted);
            flex: 1;
        }

        .service-foot {
            margin-top: 0.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--muted);
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        @media (max-width: 640px) {
            .service-foot {
                justify-content: center;
            }
        }

        /* Sección sorteo de Navidad */
        .promo-sorteo {
            padding: 2.5rem 1.5rem;
            background: #fff8f2;
            border-top: 1px solid #f0e0d0;
            border-bottom: 1px solid #f0e0d0;
        }

        .promo-sorteo-contenido {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .promo-sorteo-texto h2 {
            margin: 0 0 0.75rem;
            font-size: 1.6rem;
            color: #8b4c1d; /* café tipo Eriam */
        }

        .promo-sorteo-fechas {
            margin: 0 0 0.75rem;
            font-size: 0.95rem;
            color: #7a6150;
        }

        .promo-sorteo-premio {
            margin: 0 0 0.75rem;
            font-size: 1rem;
            color: #5a4335;
        }

        .promo-sorteo-lista {
            margin: 0 0 0.75rem 1.2rem;
            padding: 0;
            color: #5a4335;
            font-size: 0.95rem;
        }

        .promo-sorteo-lista li {
            margin-bottom: 0.35rem;
        }

        .promo-sorteo-nota {
            font-size: 0.85rem;
            color: #907365;
            margin: 0 0 1rem;
        }

        .promo-sorteo-boton {
            display: inline-block;
            padding: 0.6rem 1.4rem;
            border-radius: 999px;
            background: #b4712f;
            color: #ffffff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
        }

        .promo-sorteo-boton:hover {
            background: #8f561f;
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.12);
        }

        .promo-sorteo-imagen {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .promo-sorteo-imagen img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }

        .benefits-layout {
            display: grid;
            gap: 1.5rem;
            align-items: start;
        }

        .benefits-card {
            background: var(--bg-soft);
            border-radius: var(--radius-xl);
            padding: 1.6rem;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
        }

        .benefits-title {
            margin-bottom: 1rem;
            font-size: 1.4rem;
            color: var(--primary);
        }

        .benefits-list {
            margin: 0;
            padding-left: 1.25rem;
            display: grid;
            gap: 0.8rem;
            color: var(--text);
        }

        .benefits-actions {
            margin-top: 1.4rem;
        }

        .benefits-gallery {
            display: grid;
            gap: 1rem;
        }

        .benefits-gallery-main img,
        .benefits-gallery-grid img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-soft);
            background: var(--white);
        }

        .benefits-gallery-grid {
            display: grid;
            gap: 1rem;
        }

        @media (min-width: 900px) {
            .benefits-layout {
                grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            }

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

        .hero-note-sorteo {
            margin-top: 0.3rem;
            font-weight: 500;
            text-align: center;
        }

        .hero-note-sorteo a {
            text-decoration: underline;
            text-underline-offset: 3px;
        }


        /* Versión escritorio */
        @media (min-width: 768px) {
            .promo-sorteo-contenido {
                flex-direction: row;
                align-items: center;
            }

            .promo-sorteo-texto {
                flex: 1.2;
            }

            .promo-sorteo-imagen {
                flex: 1;
            }
        }
        .promo-sorteo-redes {
            margin-top: 0.75rem;
            font-size: 0.85rem;
            color: #7a6150;
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            align-items: center;
        }

        .promo-sorteo-redes a {
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 500;
        }
        .red-social {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-weight: 500;
        }

        .icono-red {
            width: 18px;
            height: 18px;
            fill: #8b4c1d; /* color café Eriam */
            transition: opacity 0.2s ease;
        }

        .red-social:hover .icono-red {
            opacity: 0.7;
        }
        /* Estilo más grande y destacado */
        .redes-destacadas {
            margin-top: 1.2rem;
            font-size: 1.05rem; /* AUMENTA el texto */
            font-weight: 600;
            color: #5a3b28;
            gap: 0.8rem; /* Más espaciado */
        }

        .redes-destacadas span {
            font-size: 1.05rem;
        }

        .redes-destacadas .red-social {
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        /* Íconos más grandes */
        .redes-destacadas .icono-red {
            width: 22px;   /* aumentado */
            height: 22px;  /* aumentado */
        }

        /* Hover suave */
        .redes-destacadas .red-social:hover .icono-red {
            opacity: 0.75;
        }

        @media (max-width: 640px) {
            .promo-sorteo {
                padding: 2rem 1rem;
            }

            .promo-sorteo-texto {
                text-align: center;
            }

            .promo-sorteo-lista {
                margin-left: 1rem;
                text-align: left;
            }

            .promo-sorteo-redes,
            .redes-destacadas {
                justify-content: center;
                font-size: 0.92rem;
                gap: 0.55rem;
            }

            .redes-destacadas span,
            .redes-destacadas .red-social {
                font-size: 0.92rem;
            }
        }





        /* Promo */
        .promo {
            display: grid;
            gap: 1.4rem;
            align-items: center;
        }

        @media (min-width: 900px) {
            .promo {
                grid-template-columns: 1.1fr 1fr;
            }
        }

        .promo-card {
            background: linear-gradient(135deg, #f3e0ce, #fdf7f2);
            border-radius: var(--radius-xl);
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
        }

        .promo-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .promo-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }

        .promo-text {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 0.8rem;
        }

        .promo-note {
            font-size: 0.78rem;
            color: var(--muted);
            opacity: 0.9;
        }

        @media (max-width: 640px) {
            .promo-note {
                display: block;
                text-align: center;
            }
        }

        .promo-image {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            background: #000;
        }

        /* Contacto */
        .contact {
            background: #f3e7dd;
            border-radius: var(--radius-xl);
            padding: 1.7rem 1.4rem;
            box-shadow: var(--shadow-soft);
            display: grid;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 900px) {
            .contact {
                grid-template-columns: 2fr 1.1fr;
            }
        }

        .contact-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .contact-text {
            font-size: 0.9rem;
            color: var(--muted);
            max-width: 28rem;
        }

        .contact-details {
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 0.7rem;
        }

        .contact-details strong {
            color: var(--primary);
        }

        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            align-items: flex-start;
        }

        .contact-hint {
            font-size: 0.8rem;
            color: var(--muted);
        }

        @media (max-width: 600px) {
            .contact-actions .btn {
                width: 100%;
            }

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

            .contact {
                padding: 1.3rem 1rem;
            }
        }

        /* Footer */
        footer {
            padding: 1.6rem 0 2rem;
            font-size: 0.78rem;
            color: var(--muted);
        }

        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        @media (min-width: 768px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .footer-links a {
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 3px;
        }

        /* Utilidades */
        .mt-sm {
            margin-top: 0.6rem;
        }

        .mt-md {
            margin-top: 1rem;
        }

        .center {
            text-align: center;
        }
