* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg-body);
    color: var(--white);
    scroll-behavior: smooth
}

:root {
    --primary: #FF6600;
    --primary-hover: #e55a00;
    --bg-bar: #111;
    --text-bar: #888;
    --text-bar-hover: #FF6600;
    --text-nav: #aaa;
    --border: #1e1e1e;
    --border-light: #222;
    --black: #000;
    --white: #fff;
    --bg-body: #0a0a0a;
    --bg-section: #0d0d0d;
    --text-desc: #777;
    --text-muted: #555;
    --text-accent: #666;
    --text-dark: #444;
    --text-darker: #333;
    --border-secondary: #2a2a2a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #141414;
    --bg-card-main: #0f0f0f;
    --whatsapp: #25d366;
    --whatsapp-hover: #20bc5a;
    --rgba-white-02: rgba(255, 255, 255, 0.2);
    --rgba-orange-0: rgba(255, 102, 0, 0);
    --rgba-orange-015: rgba(255, 102, 0, 0.15);
    --rgba-whatsapp-04: rgba(37, 211, 102, 0.4);
    --rgba-orange-04: rgba(255, 102, 0, 0.4);
    --rgba-black-085: rgba(0, 0, 0, 0.85);
    --rgba-black-095: rgba(0, 0, 0, 0.95);
    --rgba-white-075: rgba(255, 255, 255, 0.75);
    --rgba-white-08: rgba(255, 255, 255, 0.8);
    --rgba-white-05: rgba(255, 255, 255, 0.5);
    --rgba-white-01: rgba(255, 255, 255, 0.1);

    /* Variables Nuevas para Glassmorphism y Modernización */
    --glass-bg: rgba(10, 10, 10, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 102, 0, 0.4);
    --radius-md: 16px;
    --radius-sm: 10px;
}

/* TOPBAR */
.topbar {
    background: var(--bg-bar);
    padding: 8px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border)
}

.topbar-left a {
    color: var(--text-bar);
    font-size: 11px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 18px;
    transition: color 0.2s
}

.topbar-left a:hover {
    color: var(--text-bar-hover)
}

.topbar-left a i {
    font-size: 13px;
    color: var(--primary)
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px
}

.topbar-right i {
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s
}

.topbar-right i:hover {
    color: var(--primary)
}

/* NAV */
.nav {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 999
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer
}

.nav-logo img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block
}

.logo-text-slogan {
    color: var(--primary);
    font-size: 9px;
    letter-spacing: 2px;
    display: block
}

.nav-links {
    display: flex
}

.nav-links a {
    color: var(--text-nav);
    font-size: 12px;
    text-decoration: none;
    padding: 0 14px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    border-bottom: 3px solid var(--primary)
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* HERO */
.hero {
    display: flex;
    min-height: 420px;
    background: var(--bg-section);
    position: relative;
    overflow: hidden
}

.hero-diagonal {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    background: var(--bg-bar);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-label {
    color: var(--primary);
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary)
}

.hero-title {
    color: var(--white);
    font-size: 85px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px
}

.hero-title span {
    color: var(--primary)
}

.hero-desc {
    color: var(--text-desc);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 580px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-orange {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 12px 26px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.agregar-testimonio {
    /* Agregar centrado y margen */
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-orange:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    font-size: 12px;
    padding: 12px 24px;
    border: 1px solid #555;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    z-index: 2;
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    gap: 14px;
    flex-shrink: 0
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-img {
    width: 250%;
    height: 650px;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

.hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-tag {
    background: var(--bg-card);
    color: var(--text-accent);
    font-size: 10px;
    padding: 5px 10px;
    border: 0.5px solid var(--border-secondary);
    border-radius: 30px;
    letter-spacing: 1px
}

/* STATS */
.stats {
    background: var(--primary);
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    text-align: center;
    padding: 18px 8px;
    border-right: 1px solid var(--rgba-white-02)
}

.stat:last-child {
    border-right: none
}

.stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--white)
}

.stat-label {
    font-size: 10px;
    color: var(--rgba-white-08);
    letter-spacing: 1px;
    margin-top: 3px
}

/* BRAND BAR */
.brand-bar {
    background: var(--bg-section);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border)
}

.brand-bar-label {
    color: var(--text-dark);
    font-size: 10px;
    letter-spacing: 2px;
    padding-right: 20px;
    border-right: 1px solid var(--border-light);
    margin-right: 20px;
    white-space: nowrap
}

.brand-items {
    display: flex;
    flex: 1
}

.brand-item {
    flex: 1;
    text-align: center;
    padding: 6px;
    border-right: 1px solid var(--border)
}

.brand-item:last-child {
    border-right: none
}

.brand-item span {
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px
}

.brand-item:hover span {
    color: var(--primary)
}

/* SECCIONES */
.section {
    padding: 60px 32px;
    border-top: 1px solid var(--border)
}

.section-alt {
    background: var(--bg-section)
}

.sec-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 10px
}

.sec-eyebrow::after {
    content: '';
    height: 1px;
    background: var(--border);
    width: 60px
}

.sec-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px
}

.sec-sub {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px
}

/* PRODUCTOS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: transparent;
}

.product-card {
    background: var(--bg-card-main);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.product-img {
    height: 350px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.05)
}

.product-body {
    padding: 20px
}

.product-num {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 6px
}

.product-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px
}

.product-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px
}

.product-link {
    color: var(--text-accent);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s
}

.product-card:hover .product-link {
    color: var(--primary)
}

.btn-ver-mas {
    margin-top: 20px;
    text-align: center;
    transition: 0.5s;
}

.btn-ver-mas:hover .btn-orange {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* OTROS SERVICIOS */
.otros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: transparent;
}

.otro-card {
    background: var(--bg-card-main);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.otro-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.otro-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.otro-icon i {
    font-size: 22px;
    color: var(--primary)
}

.otro-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    padding: 2px 8px;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.otro-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px
}

.otro-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6
}

.otro-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px
}

.otro-tag {
    background: var(--bg-card);
    color: var(--text-accent);
    font-size: 10px;
    padding: 3px 8px;
    border: 0.5px solid var(--border-secondary)
}

/* GALERÍA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--black)
}

.gal-item {
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    position: relative
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s
}

.gal-item:hover img {
    transform: scale(1.07)
}

.gal-item.big {
    grid-column: span 2
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: var(--rgba-orange-0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s
}

.gal-item:hover .gal-overlay {
    background: var(--rgba-orange-015)
}

/* MISIÓN VISIÓN */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: transparent;
}

.mv-card {
    background: var(--bg-card-main);
    padding: 28px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.mv-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.mv-icon i {
    font-size: 20px;
    color: var(--primary)
}

.mv-label {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 8px
}

.mv-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px
}

.mv-text {
    color: var(--text-accent);
    font-size: 12px;
    line-height: 1.8
}

.mv-list {
    list-style: none;
    margin-top: 8px
}

.mv-list li {
    color: var(--text-accent);
    font-size: 12px;
    line-height: 1.8;
    padding-left: 14px;
    position: relative
}

.mv-list li::before {
    content: '▸';
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px
}

/* SOUVENIRS */
.souv-intro {
    background: var(--bg-bar);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 14px 20px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--text-desc);
    line-height: 1.7
}

.souv-intro span {
    color: var(--primary);
    font-weight: 600
}

.souv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: transparent;
}

.souv-card {
    background: var(--bg-card-main);
    cursor: pointer;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.souv-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.souv-preview {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.souv-cat {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    padding: 2px 7px;
    letter-spacing: 1px
}

.souv-body {
    padding: 16px
}

.souv-name {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px
}

.souv-desc {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px
}

.souv-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 10px
}

.souv-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--text-darker)
}

.souv-link {
    color: var(--primary);
    font-size: 11px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.souv-cta {
    background: var(--bg-card-main);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1px
}

.souv-cta-text h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px
}

.souv-cta-text p {
    color: var(--text-muted);
    font-size: 12px
}

/* PROCESO */
.proceso-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border)
}

.step {
    padding: 20px;
    border-right: 1px solid var(--border)
}

.step:last-child {
    border-right: none
}

.step-num {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px
}

.step-title {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px
}

.step-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6
}

/* POR QUÉ */
.pq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: transparent;
}

.pq-item {
    background: var(--bg-card-main);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.pq-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pq-icon i {
    font-size: 18px;
    color: var(--primary)
}

.pq-title {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px
}

.pq-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5
}

/* TESTIMONIOS */
.test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: transparent;
}

.test-card {
    background: var(--bg-card-main);
    padding: 24px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.test-stars {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 8px
}

.test-text {
    color: var(--text-accent);
    font-size: 13px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 14px
}

.test-author {
    color: var(--text-nav);
    font-size: 13px;
    font-weight: 600
}

.test-co {
    color: var(--text-dark);
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 3px
}

/* CONTACTO */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: transparent;
}

.contact-card {
    background: var(--bg-card-main);
    padding: 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-icon i {
    font-size: 18px;
    color: var(--primary)
}

.contact-label {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 5px
}

.contact-val {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 2px
}

.contact-val2 {
    color: var(--text-nav);
    font-size: 13px
}

.contact-sub {
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 3px
}

/* CTA */
.cta {
    background: var(--primary);
    padding: 60px 32px;
    text-align: center
}

.cta-label {
    color: var(--rgba-white-075);
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 12px
}

.cta-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px
}

.cta-desc {
    color: var(--rgba-white-08);
    font-size: 13px;
    margin-bottom: 28px
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.btn-black {
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 12px 26px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s
}

.btn-black:hover {
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.btn-white {
    background: transparent;
    color: var(--white);
    font-size: 12px;
    padding: 12px 26px;
    border: 2px solid var(--rgba-white-05);
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.2s
}

.btn-white:hover {
    background: var(--rgba-white-01);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    background: var(--black);
    padding: 48px 32px 24px;
    border-top: 3px solid var(--primary)
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.f-logo-name {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px
}

.f-logo-slogan {
    color: var(--primary);
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block
}

.f-desc {
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.8
}

.caja {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.f-col-title {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block
}

.f-col a {
    display: block;
    color: var(--text-dark);
    font-size: 12px;
    text-decoration: none;
    margin-bottom: 7px;
    transition: color 0.2s
}

.f-col a:hover {
    color: var(--primary)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.f-copy {
    color: var(--text-darker);
    font-size: 12px
}

.f-social {
    display: flex;
    gap: 14px
}

.f-social i {
    font-size: 18px;
    color: var(--text-darker);
    cursor: pointer;
    transition: color 0.2s
}

.f-social i:hover {
    color: var(--primary)
}

/* WHATSAPP FLOTANTE */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999
}

.wa-btn {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px var(--rgba-whatsapp-04);
    transition: all 0.2s
}

.wa-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px)
}

.wa-btn i {
    font-size: 20px
}

/* MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--rgba-black-085);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex
}

.modal {
    background: var(--bg-bar);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 32px;
    max-width: 440px;
    width: 90%;
    position: relative;
    border-radius: 30px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-accent);
    font-size: 22px;
    cursor: pointer;
    line-height: 1
}

.modal-close:hover {
    color: var(--primary)
}

.modal-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px
}

.modal-sub {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 20px
}

.modal-btns {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.modal-wa-btn {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    width: 100%;
    border-radius: 15px;
}

.modal-wa-btn:hover {
    background: var(--whatsapp-hover)
}

.modal-wa-btn i {
    font-size: 18px
}

.modal-wa-num {
    font-size: 11px;
    opacity: 0.8;
    margin-left: auto
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.modal-form input,
.modal-form textarea,
.modal-form select {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    color: var(--white);
    padding: 10px 14px;
    font-size: 12px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 15px;
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
    border-color: var(--primary)
}

.modal-form textarea {
    height: 80px;
    resize: none
}

.modal-form label {
    color: var(--text-accent);
    font-size: 11px;
    letter-spacing: 1px
}

/* GALERÍA LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--rgba-black-095);
    z-index: 10000;
    align-items: center;
    justify-content: center
}

.lightbox.active {
    display: flex
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer
}

.lightbox-close:hover {
    color: var(--primary)
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 100px;
    right: 28px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10001;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px var(--rgba-orange-04)
}

.toast.active {
    display: flex
}

/* =========================================================
   REDISEÑO ESTRUCTURAL MODERNO
   ========================================================= */

/* --- HERO INMERSIVO --- */
.hero-immersive {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    background: #000;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 40%, transparent 100%);
    z-index: 1;
}

.carrusel-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(100%, -50%);
    width: 60%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    transition: transform 1s ease, opacity 1s ease;
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
}

.hero-bg-img.hidden {
    opacity: 0;
    transform: translate(100%, -50%);
}

.hero-bg-img.active {
    opacity: 0.8;
    transform: translate(-50%, -50%);
}

.hero-bg-img.prev {
    opacity: 0;
    transform: translate(-150%, -50%);
}

.hero-immersive-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title-huge {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin: 10px 0 20px;
    letter-spacing: -2px;
}

.hero-title-huge span {
    color: var(--primary);
    text-shadow: var(--shadow-glow);
}

.hero-desc-modern {
    font-size: 16px;
    color: var(--text-nav);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 14px;
}

/* STATS FLOTANTES */
.stats-floating {
    position: absolute;
    bottom: 30px;
    left: 5%;
    right: 5%;
    display: flex;
    gap: 20px;
    z-index: 3;
}

.stat-float-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--radius-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border-top: 2px solid var(--primary);
    transition: transform 0.3s ease;
}

.stat-float-card:hover {
    transform: translateY(-5px);
}

/* --- MARQUEE --- */
.brand-marquee-container {
    background: var(--bg-card-main);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.brand-marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.brand-marquee-content span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 30px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-marquee-content span i {
    color: var(--primary);
    font-size: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- PRODUCTOS ASIMÉTRICOS --- */
.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px;
}

.sec-title-large {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 10px;
}

.sec-sub-modern {
    color: var(--text-nav);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.products-asym-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
}

.product-card.asym-main {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.product-img-large {
    position: absolute;
    inset: 0;
}

.product-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card.asym-main:hover .product-img-large img {
    transform: scale(1.05);
}

.product-card.asym-main:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.product-body-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.product-num-modern {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-name-modern {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-desc-short {
    color: var(--text-nav);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 80%;
}

.product-link-modern {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.product-link-modern i {
    color: var(--primary);
}

.product-card.asym-main:hover .product-link-modern {
    color: var(--primary);
}

.asym-secondary-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-card.asym-side {
    display: flex;
    background: var(--bg-card-main);
    border-radius: 20px;
    overflow: hidden;
    height: 238px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.product-card.asym-side:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.product-img-small {
    flex: 0 0 40%;
    overflow: hidden;
}

.product-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card.asym-side:hover .product-img-small img {
    transform: scale(1.05);
}

.product-body-side {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name-side {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* --- GALERÍA BENTO --- */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 24px;
    margin-top: 40px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.bento-text {
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-text span {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.bento-text i {
    color: var(--primary);
    font-size: 24px;
    background: rgba(255, 102, 0, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hover Effects */
.bento-item:hover img {
    transform: scale(1.08);
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.bento-item:hover .bento-text {
    transform: translateY(0);
}

.bento-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Bento Sizes */
.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-standard {
    grid-column: span 1;
    grid-row: span 1;
}

/* --- NOSOTROS SPLIT --- */
.nosotros-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sec-title-huge {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0 30px;
}

.sec-title-huge span {
    color: var(--primary);
}

.nosotros-desc {
    font-size: 16px;
    color: var(--text-nav);
    line-height: 1.6;
    margin-bottom: 40px;
}

.nosotros-stats {
    display: flex;
    gap: 40px;
}

.n-stat h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.n-stat span {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mv-card-modern {
    background: var(--bg-card-main);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    margin-bottom: 24px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s;
}

.mv-card-modern:hover {
    transform: translateX(10px);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mv-icon-modern {
    width: 40px;
    height: 40px;
    background: var(--rgba-orange-015);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.mv-title-modern {
    font-size: 20px;
    font-weight: 700;
}

.mv-text-modern,
.mv-list-modern li {
    color: var(--text-nav);
    font-size: 14px;
    line-height: 1.6;
}

.mv-list-modern {
    padding-left: 20px;
}

.mv-list-modern li {
    margin-bottom: 8px;
}

/* --- TIMELINE --- */
.text-center-eyebrow {
    text-align: center;
}

.text-center {
    text-align: center;
}

.timeline-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card-main);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--bg-card-main);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    flex: 1;
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-nav);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Overrides Generales */
@media (max-width: 1024px) {
    .hero-title-huge {
        font-size: 39px;
    }

    .hero-label {
        font-size: 10px;
    }

    .products-asym-grid {
        grid-template-columns: 1fr;
    }

    .nosotros-split {
        grid-template-columns: 1fr;
    }

    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall,
    .bento-standard {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-immersive {
        padding: 100px 5% 150px;
    }

    .hero-bg-img {
        display: block;
        width: 150%;
        right: -25%;
        top: 80%;
        bottom: 0;
        transform: none;
        opacity: 0.5;
        mask-image: linear-gradient(to top, black 40%, transparent 100%);
        -webkit-mask-image: linear-gradient(to top, black 40%, transparent 100%);
    }

    .hero-bg-overlay {
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.5) 100%);
    }

    .stats-floating {
        flex-direction: column;
        bottom: -200px;
        position: static;
        margin-top: 40px;
    }

    .product-card.asym-side {
        flex-direction: column;
        height: auto;
    }

    .product-img-small {
        height: 200px;
    }

    .timeline-item {
        gap: 20px;
    }

    .bento-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .bento-tall,
    .bento-wide,
    .bento-large,
    .bento-standard {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-img {
        width: 200%;
        height: 350px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proceso-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .souv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-img {
        width: 100%;
        height: 300px;
    }

    .hero-diagonal {
        display: none;
    }

    .hero-content {
        padding: 32px 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-right {
        width: 100%;
        padding: 20px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .products-grid,
    .otros-grid,
    .gallery-grid,
    .mv-grid,
    .pq-grid,
    .test-grid,
    .contact-grid,
    .proceso-steps,
    .souv-grid {
        grid-template-columns: 1fr;
    }

    .gal-item.big {
        grid-column: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .topbar {
        flex-direction: column;
        gap: 5px;
        padding: 8px 15px;
    }

    .topbar-left {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .topbar-left a {
        margin-right: 0;
        font-size: 10px;
    }
}

@media (max-width: 450px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 12px;
    }

    .btn-large {
        padding: 10px 20px;
        font-size: 11px;
    }

}