/* ---------- VARIABLES ---------- */
:root {
    --orange: #f15a24;
    --orange-dark: #d9410e;
    --orange-grad: linear-gradient(135deg, #f15a24 0%, #ff8c42 100%);
    --black: #111111;
    --black-light: #1e1e1e;
    --gray: #6c6f78;
    --gray-light: #f4f6f9;
    --white: #ffffff;
    --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-md: 0 20px 35px -10px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-text: #f15a24;
    --header-hover: #f15a24;
    --header-bg: transparent;
    --header-toggle: #f15a24;
    --dropdown-bg: rgba(20,20,20,0.96);
    --dropdown-text: #ddd;
    --dropdown-hover-bg: rgba(255,255,255,0.08);
    --dropdown-hover-text: #f15a24;
    --dropdown-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-slide {
    position: relative;
    overflow: hidden;
}

.video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-slide .slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 2;
}

.video-slide .slide-content {
    position: relative;
    z-index: 3;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER ---------- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg) !important;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo img {
    width: 350px;
    height: 160px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    z-index: 10;
}

.logo img:hover {
    transform: translateY(-50%) scale(1.02);
    filter: drop-shadow(0 6px 12px rgba(241,90,36,0.5));
}

@media (max-width: 768px) {
    .logo img {
        width: 180px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 600;
    color: var(--header-text) !important;
    font-size: 0.95rem;
    padding: 8px 0;
    display: inline-block;
    letter-spacing: -0.2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4) !important;
}

.nav-menu a:hover {
    color: var(--header-hover) !important;
}

.dropdown-menu {
    background: var(--dropdown-bg) !important;
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: var(--dropdown-shadow) !important;
    border: none;
    position: absolute;
    list-style: none;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.dropdown-menu {
    top: 100%;
    left: 0;
    min-width: 240px;
    transform: translateY(10px);
    z-index: 100;
}

.dropdown-submenu {
    top: -10px;
    left: 100%;
    margin-left: 5px;
    min-width: 200px;
    transform: translateX(10px);
    z-index: 105;
    background: var(--dropdown-bg) !important;
    box-shadow: var(--dropdown-shadow) !important;
}

.dropdown-menu li a, .dropdown-submenu li a {
    color: var(--dropdown-text) !important;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.25s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: none;
}

.dropdown-menu li a:hover, .dropdown-submenu li a:hover {
    background: var(--dropdown-hover-bg) !important;
    color: var(--dropdown-hover-text) !important;
    padding-left: 24px;
}

.nav-menu li:hover > .dropdown-menu,
.submenu:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 8px 0;
}

.style-arrow {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.dropdown-menu li:hover > a .style-arrow,
.dropdown-submenu li:hover > a .style-arrow {
    color: #111111;
    transform: translateX(3px);
}

.search-bar input {
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 0.85rem;
    width: 220px;
    background: #fafbfc;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241,90,36,0.1);
}

.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--header-toggle) !important;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--orange-grad);
        backdrop-filter: blur(12px);
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 70px);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        transition: 0.3s;
        overflow-y: auto;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu > li > a {
        color: #ffffff !important;
        text-shadow: none;
    }
    .mobile-toggle {
        display: block;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        display: none;
        border: none;
    }
    .nav-menu li.active .dropdown-menu {
        display: block;
    }
    .nav-menu .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        border-radius: 0;
        padding-left: 15px;
        display: none;
        margin-top: 0;
        min-width: 0;
    }
    .nav-menu li.active > .dropdown-submenu {
        display: block;
    }
    .dropdown-submenu li a {
        color: rgba(255,255,255,0.9) !important;
    }
    .dropdown-menu li a,
    .dropdown-submenu li a {
        color: rgba(255,255,255,0.9) !important;
    }
    .dropdown-menu li a:hover,
    .dropdown-submenu li a:hover,
    .nav-menu li.active > a {
        background: rgba(255,255,255,0.2);
        color: #ffffff !important;
    }
    .search-bar {
        display: none;
    }
}

/* ---------- HERO SLIDER ---------- */

/* 🎚️ ALTURA DEL HERO — modificá este valor para estirar/achicar el hero:
   110vh = un poco más que la pantalla
   120vh = bastante más
   130vh = mucho más (la sección siguiente queda bien cerca)
   Para achicar bajá el número: 90vh, 80vh, etc. */
.hero-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    height: 300vh !important;        /* ← CAMBIÁ ESTE VALOR PARA ESTIRAR */
    min-height: 400px !important;
}

.hero-slider .slick-slider {
    height: 100% !important;
}

.hero-slider .slick-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide,
.hero-slider .slide-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 🎚️ ESTE VALOR DEBE SER IGUAL AL DE .hero-slider height de arriba */
.hero-slider .slick-slide {
    height: 300vh !important;        /* ← CAMBIÁ ESTE VALOR IGUAL QUE EL DE ARRIBA */
    min-height: 400px !important;
    overflow: hidden !important;
    position: relative !important;
}

.hero-slider .slide-item {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

/* Contenedor del video */
.hero-slider .slide-item .video-iframe-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
    background: #000;
}

/* Video local (tag <video>) */
.hero-slider .slide-item .video-iframe-wrapper video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: 177.78vh !important;
    height: 56.25vw !important;
    object-fit: cover !important;
    border: 0 !important;
    pointer-events: none !important;
}

/* Iframe (por si se vuelve a usar) */
.hero-slider .slide-item .video-iframe-wrapper iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 177.78vh !important;
    height: 56.25vw !important;
    min-width: 100% !important;
    min-height: 100% !important;
    border: 0 !important;
    pointer-events: none !important;
}

.hero-slider .slide-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 2 !important;
}

.hero-slider .slide-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    z-index: 3 !important;
    width: 90% !important;
    max-width: 800px !important;
    color: #fff !important;
}

/* Badge naranja "Fabricación propia desde 1967" */
.hero-slider .slide-content span {
    display: inline-block !important;
    background: rgba(241, 90, 36, 0.9) !important;
    padding: 4px 14px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 10px !important;
    color: #fff !important;
}

.hero-slider .slide-content h2 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh !important;   /* ← altura en mobile */
    }
    .hero-slider .slick-slide {
        height: 70vh !important;
        min-height: 300px !important;
    }
    .hero-slider .slide-content h2 {
        font-size: 2.2rem !important;
    }
}

/* ---------- BOTÓN PRINCIPAL ---------- */
.btn-primary-custom {
    background: var(--orange-grad);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(241,90,36,0.3);
    display: inline-block;
    cursor: pointer;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(241,90,36,0.4);
    color: white;
}

/* Insignia "Industria Nacional" */
.slide-argentina-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 10px 28px;
    border-radius: 40px;
    margin-top: 24px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: fadeInUp 0.8s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flag-gif {
    width: 28px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .slide-argentina-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin-top: 20px;
    }
    .flag-gif {
        width: 24px;
    }
}

/* ---------- SECCIONES ---------- */
.section { padding: 80px 0; }

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--black) 0%, var(--orange) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-sub {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: #fff3ee;
    color: var(--orange);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ---------- SEGMENTOS ---------- */
.segmentos-section {
    padding: 90px 0;
    background: var(--white);
}

.segmentos-header {
    text-align: center;
    margin-bottom: 50px;
}

.segmentos-header .section-tag {
    margin-bottom: 15px;
}

.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.segmento-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.segmento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(241, 90, 36, 0.3);
}

.segmento-img {
    height: 200px;
    overflow: hidden;
}

.segmento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.segmento-card:hover .segmento-img img {
    transform: scale(1.05);
}

.segmento-content {
    padding: 28px 24px;
    text-align: center;
}

.segmento-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.segmento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--black);
}

.segmento-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .segmentos-grid {
        grid-template-columns: 1fr;
    }
    .segmento-img {
        height: 180px;
    }
}

/* ---------- BOTÓN MAS INFO ---------- */
.btn-mas-info {
    background: #f15a24 !important;
    border: none !important;
    padding: 8px 24px !important;
    border-radius: 40px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(241,90,36,0.2) !important;
    margin-top: 10px !important;
    display: inline-block !important;
}
.btn-mas-info:hover {
    background: #d04a1a !important;
    transform: translateY(-2px) !important;
}

/* ---------- TARJETAS DE PRODUCTOS ---------- */
.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-md);
}
.product-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-info {
    padding: 24px;
    text-align: center;
}
.product-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.product-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.btn-outline {
    border: 1.5px solid var(--orange);
    background: transparent;
    border-radius: 40px;
    padding: 8px 24px;
    color: var(--orange);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}
.btn-outline:hover {
    background: var(--orange);
    color: white;
}

/* ---------- CAT CARDS ---------- */
.cat-card {
    background: var(--gray-light);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.cat-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* ---------- STATS ---------- */
.stats-section {
    padding: 50px 0;
    background: #fafafa;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--orange);
    font-weight: 800;
}
.stat-item p {
    color: var(--gray);
}
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- FACTORY SECTION ---------- */
.factory-section {
    padding: 100px 0;
    background: #fafafa;
}

.factory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.factory-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.factory-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.factory-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    min-width: 120px;
    box-shadow: var(--shadow-sm);
}

.stat-box h3 {
    color: var(--orange);
    font-size: 2rem;
}

.factory-video {
    position: relative;
    display: flex;
    justify-content: center;
}

.factory-video img {
    width: 80%;
    max-width: 480px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
    border: 8px solid white;
    transition: .4s;
}

.factory-video img:hover { transform: scale(1.03); }

.factory-video video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(241, 90, 36, .95);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

@media(max-width:991px) {
    .factory-grid {
        grid-template-columns: 1fr;
    }
    .factory-content h2 {
        font-size: 2rem;
    }
}

/* ---------- GALERÍA ---------- */
.mini-gallery {
    padding: 70px 0;
    background: #fff;
}

.mini-slider .slick-slide {
    padding: 0 10px;
}

.mini-slider img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

/* ---------- CLIENTES ---------- */
.clients-strip {
    padding: 80px 0;
    background: white;
}

.clients-slider img {
    width: 160px;
    height: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: .3s;
    margin: auto;
}

.clients-slider img:hover {
    filter: none;
    opacity: 1;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--black-light);
    color: #ccc;
    padding: 60px 0 30px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 30px;
    align-items: start;
}
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.15rem;
}
.footer-col p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
    color: #aaa;
}
.footer-col a {
    color: #aaa;
}
.footer-col i {
    width: 20px;
    text-align: center;
    color: var(--orange);
}
.footer-col a:hover {
    color: var(--orange);
}
.map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    border: none;
    filter: grayscale(0.2) contrast(0.9);
    transition: all 0.3s;
}
.map-container iframe:hover {
    filter: grayscale(0);
}
.footer-catalog img {
    filter: grayscale(0.3);
    transition: var(--transition);
}
.footer-catalog img:hover {
    filter: none;
    opacity: 1;
}
.btn-download-catalog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    padding: 12px 20px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 8px;
    width: fit-content;
}
.btn-download-catalog:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241,90,36,0.3);
}
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #777;
    font-size: 0.85rem;
}

/* ---------- FLOTANTES ---------- */
.float-social {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-social a {
    width: 52px;
    height: 52px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    color: white;
}
.float-social .wa { background: #25D366; }
.float-social .ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-social .fb { background: #1877f2; }
.float-social a:hover { transform: scale(1.08); }

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 25px;
    background: var(--black);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    transition: var(--transition);
}
.back-to-top.show {
    opacity: 1;
}

.experience-badge {
    position: fixed;
    bottom: 30px;
    left: 90px;
    background: var(--orange-grad);
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
@media (max-width: 768px) {
    .experience-badge {
        left: 80px;
        bottom: 20px;
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
}
@media (max-width: 480px) {
    .experience-badge { display: none; }
}

/* ---------- SLICK AJUSTES ---------- */
.slick-prev, .slick-next {
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    z-index: 10;
}
.slick-prev:hover, .slick-next:hover {
    background: var(--orange);
}
.slick-prev:before, .slick-next:before {
    display: none;
}
.slick-prev i, .slick-next i {
    color: white;
    font-size: 1.2rem;
    line-height: 45px;
}
.slick-dots li button:before {
    font-size: 10px;
    color: white;
}
.slick-dots li.slick-active button:before {
    color: var(--orange);
}
.products-slider .slick-prev, .products-slider .slick-next {
    background: var(--orange);
    width: 35px;
    height: 35px;
}

/* ---------- GRIDS VARIOS ---------- */
.category-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hero-section { padding: 60px 0; }
.section-title-lg { font-size: 2rem; }
.category-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cat-card-item {
    flex: 0 0 auto;
    width: 300px;
}

/* ---------- BUSCADOR ---------- */
.search-bar {
    position: relative;
}
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    margin-top: 8px;
    overflow: hidden;
    display: none;
    z-index: 200;
    border: 1px solid rgba(0,0,0,0.08);
}
.search-dropdown.active {
    display: block;
}
.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.search-item:last-child {
    border-bottom: none;
}
.search-item:hover {
    background: #f9f9f9;
}
.search-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
}
.search-name {
    font-size: 0.9rem;
}
.search-no-results {
    padding: 16px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}
.producto-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* ---------- BOTÓN HEADER CONTACTO ---------- */
.btn-header-contact {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header-contact:hover {
    background: var(--orange-grad);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(241,90,36,0.4);
    transform: translateY(-2px);
    color: white !important;
}

@media (max-width: 992px) {
    .btn-header-contact {
        background: var(--orange-grad);
        border-color: transparent;
        backdrop-filter: none;
        box-shadow: 0 4px 12px rgba(241,90,36,0.3);
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* ---------- MODAL CONTACTO ---------- */
.contact-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.contact-modal {
    background: white;
    border-radius: 24px;
    max-width: 520px;
    width: 90%;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.contact-modal-overlay.active .contact-modal {
    transform: translateY(0);
}
.contact-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
}
.contact-modal-close:hover { color: #111; }
.contact-modal h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.contact-modal p {
    color: #666;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.contact-modal form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #f15a24;
    box-shadow: 0 0 0 3px rgba(241,90,36,0.1);
}
.form-row {
    display: flex;
    gap: 16px;
}
.form-row .form-group {
    flex: 1;
}
.btn-submit-contact {
    background: linear-gradient(135deg, #f15a24, #ff8c42);
    border: none;
    padding: 14px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(241,90,36,0.3);
    margin-top: 8px;
}
.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(241,90,36,0.4);
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    .contact-modal {
        padding: 30px 20px;
    }
}

/* ---------- PARTÍCULAS ---------- */
.particle {
    position: absolute;
    bottom: -20px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp linear infinite;
    pointer-events: none;
}
@keyframes floatUp {
    0%   { transform: translateY(0) scale(1); opacity: 0.4; }
    50%  { opacity: 0.2; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}