/*==========================================================
    LYSERANCE - ESTILO ELEGANTE
    Versión Plana - Sin Animaciones 3D
    Fuente: Playfair Display ultra-condensed en toda la web
==========================================================*/

/*==========================================================
    VARIABLES
==========================================================*/

:root {
    /* Fondos */
    --bg-primary: #fcfaf9;
    --bg-secondary: #f8f5f3;
    --bg-card: rgba(255, 255, 255, 0.85);

    /* Textos */
    --text-primary: #1a1412;
    --text-secondary: #4a4240;
    --text-muted: #8a827f;
    --text-light: #b5aba6;

    /* Acentos */
    --accent: #b8a094;
    --accent-light: #d4c8c0;
    --accent-dark: #8a7a70;
    --accent-soft: #ede6e2;
    --accent-gold: #c9b8a8;

    /* Bordes y sombras */
    --border: rgba(0, 0, 0, 0.06);
    --border-light: rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 50px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.03);

    /* Radios */
    --radius: 24px;
    --radius-small: 16px;

    /* Transiciones */
    --transition: .3s ease;
}

/*==========================================================
    RESET - Fuente ultra-condensed global
==========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Playfair Display", serif;
    font-stretch: ultra-condensed;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/*==========================================================
    LAYOUT GENERAL
==========================================================*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-stretch: ultra-condensed;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-stretch: ultra-condensed;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-stretch: ultra-condensed;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/*==========================================================
    NAVBAR - CON EFECTO TRANSPARENTE
==========================================================*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(252, 250, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estado transparente al hacer scroll */
.navbar.transparent {
    background: rgba(252, 250, 249, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

/* Estado sólido al llegar al top */
.navbar.solid {
    background: rgba(252, 250, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* ============================================================
   LOGO EN ESTADO TRANSPARENTE
============================================================ */

.navbar.transparent .logo img {
    opacity: 0.85;
    filter: drop-shadow(0 2px 15px rgba(0, 0, 0, 0.08));
    transition: all 0.4s ease;
}

.navbar.transparent .logo-text {
    color: rgba(30, 30, 30, 0.95);
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

/* ============================================================
   LINKS EN ESTADO TRANSPARENTE
============================================================ */

.navbar.transparent .nav-links a {
    color: rgba(30, 30, 30, 0.9);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.navbar.transparent .nav-links a:hover {
    color: #1a1412;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.8);
}

.navbar.transparent .nav-links a::after {
    background: var(--accent-dark);
}

/* ============================================================
   BOTÓN NAV EN ESTADO TRANSPARENTE
============================================================ */

.navbar.transparent .btn-nav {
    border-color: rgba(30, 30, 30, 0.4);
    color: rgba(30, 30, 30, 0.9);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.navbar.transparent .btn-nav:hover {
    background: rgba(30, 30, 30, 0.12);
    border-color: rgba(30, 30, 30, 0.6);
    color: #1a1412;
}

/* ============================================================
   LOGO EN ESTADO SÓLIDO
============================================================ */

.navbar.solid .logo img {
    opacity: 1;
    filter: none;
    transition: all 0.4s ease;
}

.navbar.solid .logo-text {
    color: var(--text-primary);
    text-shadow: none;
    transition: all 0.4s ease;
}

/* ============================================================
   LINKS EN ESTADO SÓLIDO
============================================================ */

.navbar.solid .nav-links a {
    color: var(--text-secondary);
    transition: all 0.4s ease;
}

.navbar.solid .nav-links a:hover {
    color: var(--text-primary);
}

.navbar.solid .nav-links a::after {
    background: var(--accent);
}

/* ============================================================
   BOTÓN NAV EN ESTADO SÓLIDO
============================================================ */

.navbar.solid .btn-nav {
    border-color: var(--accent);
    color: var(--text-primary);
    background: transparent;
}

.navbar.solid .btn-nav:hover {
    background: var(--accent);
    color: white;
}

/* ============================================================
   TRANSICIONES Y ESTRUCTURA BASE DEL NAVBAR
============================================================ */

.navbar .logo img,
.navbar .logo-text,
.navbar .nav-links a,
.navbar .btn-nav {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar .logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar .logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-stretch: ultra-condensed;
    transition: all 0.4s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: "Playfair Display", serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    font-stretch: ultra-condensed;
    transition: all 0.4s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: "Playfair Display", serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    font-stretch: ultra-condensed;
    text-decoration: none;
    transition: all 0.4s ease;
}

/*==========================================================
    HERO BANNER
==========================================================*/

.hero-banner {
    margin-top: 70px;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .hero-banner img {
        object-position: left center;
    }
}

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 20, 18, 0.3) 0%,
            rgba(26, 20, 18, 0.1) 50%,
            rgba(26, 20, 18, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner .hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-banner .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.08em;
    font-stretch: ultra-condensed;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.hero-banner .hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    opacity: 0.9;
    margin-top: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-stretch: ultra-condensed;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/*==========================================================
    LOGO DESTACADO (Después del banner)
==========================================================*/

.logo-featured {
    padding: 4rem 0 2rem;
    text-align: center;
}

.logo-featured img {
    height: 200px;
    width: auto;
    object-fit: contain;
    margin-top: 1.5rem;
}

.logo-featured .tagline {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.15em;
    font-style: italic;
    font-stretch: ultra-condensed;
}

.logo-featured .divider {
    width: 80px;
    height: 1px;
    background: var(--accent-light);
    margin: 1.5rem auto;
}

/*==========================================================
    CARDS - SISTEMA ELEGANTE
==========================================================*/

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/*==========================================================
    ABOUT / HISTORIA
==========================================================*/

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-stretch: ultra-condensed;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 500;
    font-stretch: ultra-condensed;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

/*==========================================================
    VALORES
==========================================================*/

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.08em;
    font-stretch: ultra-condensed;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-stretch: ultra-condensed;
}

/*==========================================================
    PRODUCTOS
==========================================================*/

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-card .product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-card .product-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-category {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-stretch: ultra-condensed;
    margin-bottom: 0.3rem;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    font-stretch: ultra-condensed;
}

.product-card .product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    font-weight: 300;
    font-stretch: ultra-condensed;
}

.product-card .product-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.product-card .product-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    font-stretch: ultra-condensed;
}

.product-card .product-details strong {
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.04em;
    font-stretch: ultra-condensed;
}

/*==========================================================
    SERVICIOS
==========================================================*/

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    font-stretch: ultra-condensed;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-stretch: ultra-condensed;
}

/*==========================================================
    CONTACTO
==========================================================*/

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: var(--bg-card);
    font-family: "Playfair Display", serif;
    font-size: 0.95rem;
    font-weight: 300;
    font-stretch: ultra-condensed;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
    font-stretch: ultra-condensed;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 160, 148, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    padding: 0.9rem 2.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    font-stretch: ultra-condensed;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 160, 148, 0.25);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info .info-card {
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

.contact-info .info-card:hover {
    box-shadow: var(--shadow-hover);
}

.contact-info .info-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-stretch: ultra-condensed;
    margin-bottom: 0.3rem;
}

.contact-info .info-card p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 0.04em;
    font-stretch: ultra-condensed;
}

/*==========================================================
    FOOTER
==========================================================*/

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-brand .brand-text {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.12em;
    font-stretch: ultra-condensed;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: "Playfair Display", serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    font-stretch: ultra-condensed;
    transition: var(--transition);
}

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

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: "Playfair Display", serif;
    font-weight: 300;
    letter-spacing: 0.04em;
    font-stretch: ultra-condensed;
}

/*==========================================================
    PRODUCTOS - SHOWCASE (imagen horizontal)
==========================================================*/

.products-showcase {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-card);
    transition: var(--transition);
}

.products-showcase:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.products-showcase img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/*==========================================================
    CONTACTO - SIN FORMULARIO
==========================================================*/

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-stretch: ultra-condensed;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.04em;
    font-stretch: ultra-condensed;
}

/*==========================================================
    RESPONSIVE
==========================================================*/

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-banner {
        height: 45vh;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 1.2rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .navbar .logo img {
        height: 72px;
    }

    .hero-banner img {
        margin-top: 0;
    }

    .navbar .logo-text {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        order: 3;
    }

    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.06em;
    }

    .btn-nav {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }

    .hero-banner {
        margin-top: 100px;
        height: 35vh;
        min-height: 250px;
    }

    .logo-featured img {
        height: 100px;
        margin-bottom: -2rem;
    }

    .logo-featured .tagline {
        font-size: 1.6rem;
        letter-spacing: 0.12em;
    }

    .section {
        padding: 3rem 0;
    }

    .card {
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.2rem;
    }

    .contact-info-card {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar .logo img {
        height: 78px;
    }

    .hero-banner img {
        margin-top: 0;
    }

    .navbar .logo-text {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    .nav-links {
        gap: 0.7rem;
    }

    .nav-links a {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }

    .hero-banner {
        margin-top: 95px;
        height: 30vh;
        min-height: 200px;
    }

    .hero-banner .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 0.06em;
    }

    .logo-featured img {
        height: 100px;
    }

    .logo-featured .tagline {
        font-size: 1.3rem;
        letter-spacing: 0.1em;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 0.04em;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .value-card {
        padding: 1.2rem 0.8rem;
    }

    .value-card .icon {
        font-size: 1.8rem;
    }

    .value-card h3 {
        font-size: 0.95rem;
        letter-spacing: 0.06em;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    .product-card .product-body {
        padding: 1.2rem;
    }

    .contact-info .info-card {
        padding: 1rem 1.2rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .contact-info-card {
        padding: 1.5rem 1rem;
    }

    .contact-info-card p {
        font-size: 1rem;
    }

    .products-showcase {
        border-radius: 12px;
    }
}

/* Ajuste de espacio en productos */
.product-card .product-description {
    display: none;
}

.product-card .product-details {
    margin-top: 0;
    padding-top: 0;
}

.product-card .product-details p:first-child {
    margin-top: 0;
}