/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Variables CSS para colores */
:root {
    --primary-orange: #f19a1f;
    --dark-orange: #c77d15;
    --light-orange: #f5b548;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --background-white: #FFFFFF;
    --background-light: #FAFAFA;
    --border-light: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background: var(--background-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Ocultar header al hacer scroll hacia abajo, mostrar al subir */
.header.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    color: var(--primary-orange);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo-text span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Modern Design */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-tools {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tool {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.tool:hover {
    opacity: 0.3;
}

.tool-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.tool-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.tool-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.tool-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.tool-5 {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

.tool-6 {
    top: 30%;
    right: 25%;
    animation-delay: 5s;
}

.tool-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--primary-orange);
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-circle {
    width: 600px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    padding: 8px;
    transition: all 0.3s ease;
}

.hero-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.4);
}

.circle-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    object-position: center center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.element {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: floatElement 4s ease-in-out infinite;
}

.element i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.element-1 {
    top: -15%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: -15%;
    left: 10%;
    animation-delay: 1.5s;
}

.element-3 {
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.element-1 {
    animation: floatElement 4s ease-in-out infinite;
}

.element-2 {
    animation: floatElement 4s ease-in-out infinite;
}

.element-3 {
    animation: floatElementCenter 4s ease-in-out infinite;
}

@keyframes floatElementCenter {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Pilares Section */
.pillars {
    padding: 4rem 0;
    background: var(--background-white);
}

.pillars h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pillar-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Featured Brands Section */
.featured-brands {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.featured-brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(255, 138, 92, 0.02) 100%);
    pointer-events: none;
}

.featured-brands-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.featured-brands h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-brands p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrusel infinito de marcas */
.brands-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
}

.brands-carousel-container::before,
.brands-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background-light), transparent);
}

.brands-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background-light), transparent);
}

.brands-carousel-track {
    display: flex;
    gap: 2rem;
    animation: scrollBrands 40s linear infinite;
    width: calc(200% + 4rem);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animación al hacer hover */
.brands-carousel-container:hover .brands-carousel-track {
    animation-play-state: paused;
}

.featured-brands-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.brand-item-featured {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.6s ease forwards;
}

.brand-item-featured:nth-child(1) { animation-delay: 0.1s; }
.brand-item-featured:nth-child(2) { animation-delay: 0.2s; }
.brand-item-featured:nth-child(3) { animation-delay: 0.3s; }
.brand-item-featured:nth-child(4) { animation-delay: 0.4s; }
.brand-item-featured:nth-child(5) { animation-delay: 0.5s; }
.brand-item-featured:nth-child(6) { animation-delay: 0.6s; }
.brand-item-featured:nth-child(7) { animation-delay: 0.7s; }

.brand-circle {
    width: 120px;
    height: 120px;
    background: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.brand-circle:hover::before {
    opacity: 1;
}

.brand-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.brand-circle:hover .brand-name {
    color: var(--primary-orange);
}

/* Estilos para logos de texto */
.brand-logo-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0.5rem;
    box-sizing: border-box;
}

.brand-logo-text:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.brand-circle .brand-logo-text {
    width: 70px;
    height: 70px;
    font-size: 0.8rem;
    border-radius: 50%;
    border: 3px solid var(--border-light);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.brand-circle .brand-logo-text:hover {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.featured-brands-cta {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid var(--border-light);
    max-width: 500px;
    margin: 0 auto;
}

.featured-brands-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-small:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Products Gallery Section */
.products-gallery {
    padding: 4rem 0;
    background: var(--background-white);
}

.products-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.products-gallery p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--primary-orange);
}

#lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 1rem;
}

.lightbox-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--background-white);
}

.about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.image-overlay p {
    margin: 0;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: var(--background-light);
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.product-category {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-light);
}

.product-category:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.product-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-category p {
    color: var(--text-light);
    line-height: 1.6;
}

.products-cta {
    text-align: center;
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.products-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}


/* Vision Section */
.vision {
    padding: 4rem 0;
    background: var(--background-light);
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.vision-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.vision-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-gallery {
    width: 100%;
}

.vision-main-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vision-main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.vision-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.vision-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.vision-thumbnails img:hover {
    border-color: var(--primary-orange);
    transform: scale(1.1);
}


/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--background-white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-form {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    height: 100%;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-2px);
}

/* Mapa a todo el ancho */
.contact-map-full {
    width: 100%;
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map {
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Estilos para el mapa de Mapbox */
.mapboxgl-map {
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}

.mapboxgl-popup-content {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.mapboxgl-popup-content-wrapper {
    padding: 0;
}

.mapboxgl-popup-content h3 {
    color: var(--primary-orange);
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 15px 0 15px;
}

.mapboxgl-popup-content p {
    margin: 4px 0;
    color: var(--text-light);
    padding: 0 15px;
}

.mapboxgl-popup-content .phone {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Estilos para el marcador personalizado */
.mapboxgl-marker {
    cursor: pointer;
}

.mapboxgl-marker svg {
    animation: mapMarkerPulse 2s infinite;
}

@keyframes mapMarkerPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
}
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Estilos para los controles del mapa */
.mapboxgl-ctrl-group {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mapboxgl-ctrl-group button {
    background: white;
    border: none;
    color: var(--text-dark);
}

.mapboxgl-ctrl-group button:hover {
    background: var(--background-light);
    color: var(--primary-orange);
}

/* Estilos para el popup personalizado */
.custom-popup .mapboxgl-popup-content {
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-popup .mapboxgl-popup-tip {
    border-top-color: white;
}

/* Estilos para el control de escala */
.mapboxgl-ctrl-scale {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 12px;
    padding: 2px 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(241, 154, 31, 0.03) 10px,
        rgba(241, 154, 31, 0.03) 20px
    );
    animation: footer-pattern 20s linear infinite;
}

@keyframes footer-pattern {
    0% {
        left: -50%;
    }
    100% {
        left: 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-section h3:hover,
.footer-section h4:hover {
    color: var(--light-orange);
    transform: translateX(5px);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #CCCCCC;
    transition: all 0.3s ease;
}

.footer-section p:hover {
    color: white;
    transform: translateX(3px);
}

.footer-section i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--light-orange);
    transform: translateY(-2px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(241, 154, 31, 0.4);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #CCCCCC;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 1.8rem;
    }

    .title-highlight {
        font-size: 2.5rem;
    }

    .hero-circle {
        width: 450px;
    }

    .circle-content {
        width: 100%;
        height: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .element {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .element-1 {
        top: -12%;
        right: 5%;
    }
    
    .element-2 {
        top: -12%;
        left: 5%;
    }
    
    .element-3 {
        top: -12%;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-map-full {
        height: 400px;
    }

    .contact-map {
        height: 300px;
    }

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

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


    .featured-brands-carousel {
        gap: 1.5rem;
    }

    .brands-carousel-track {
        gap: 1.5rem;
        animation: scrollBrands 25s linear infinite;
    }

    .brands-carousel-container::before,
    .brands-carousel-container::after {
        width: 50px;
    }

    .brand-circle {
        width: 100px;
        height: 100px;
    }

    .brand-name {
        font-size: 0.8rem;
    }

    .featured-brands h2 {
        font-size: 2rem;
    }

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

    .hero-slide img {
        height: 250px;
    }

    .vision-thumbnails {
        justify-content: center;
    }

    .vision-thumbnails img {
        width: 60px;
        height: 60px;
    }



    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .title-line {
        font-size: 1.5rem;
    }

    .title-highlight {
        font-size: 2rem;
    }

    .hero-circle {
        width: 350px;
    }

    .circle-content {
        width: 100%;
        height: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .element {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .element-1 {
        top: -10%;
        right: 2%;
    }
    
    .element-2 {
        top: -10%;
        left: 2%;
    }
    
    .element-3 {
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .pillars h2,
    .about-text h2,
    .products h2,
    .vision-text h2,
    .contact h2,
    .featured-brands h2 {
        font-size: 2rem;
    }

    .featured-brands-carousel {
        gap: 1rem;
    }

    .brands-carousel-track {
        gap: 1rem;
        animation: scrollBrands 20s linear infinite;
    }

    .brands-carousel-container::before,
    .brands-carousel-container::after {
        width: 30px;
    }

    .brand-circle {
        width: 80px;
        height: 80px;
    }

    .brand-circle .brand-logo-text {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }

    .brand-item .brand-logo-text {
        width: 120px;
        height: 70px;
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .brand-name {
        font-size: 0.7rem;
    }


    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .contact-map-full {
        height: 300px;
    }

    .contact-map {
        height: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pillar-card,
.product-category,
.brand-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Estados de carga y transiciones suaves */
* {
    transition: all 0.3s ease;
}

/* Asegurar que las imágenes se muestren correctamente */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}


/* Logo del footer */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

/* Iconos de redes sociales del footer */
.social-links-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 1;
}

.social-icon i {
    color: white !important;
    display: block;
    margin: 0 auto;
    line-height: 1;
}

.social-icon:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Estilos mejorados para la sección About */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.about-intro {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* About Section Modern Styles */
.about {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 50%, #f8f9fa 100%);
    opacity: 0.6;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-main-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.experience-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

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

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.highlight-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-modern i {
    font-size: 2rem;
    color: white;
}

.feature-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card-modern p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-cta-modern {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary-orange);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-modern i {
    transition: transform 0.3s ease;
}

.btn-cta-modern:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-main-card {
        padding: 2rem;
    }
    
    .experience-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* About content wrapper */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-image-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(241, 154, 31, 0.3);
}

.about-image-modern img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-modern:hover img {
    transform: scale(1.1);
}

.image-overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 154, 31, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-modern:hover .image-overlay-effect {
    opacity: 1;
}

@media (max-width: 768px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image-modern img {
        height: 300px;
    }
}

/* Vision Section Modern Styles */
.vision {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fffbf7 100%);
    z-index: 0;
}

.vision .container {
    position: relative;
    z-index: 1;
}

.vision-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vision-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(241, 154, 31, 0.3);
}

.vision-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.vision-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.vision-main-text {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.vision-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vision-main-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .vision-values {
        grid-template-columns: 1fr;
    }
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(241, 154, 31, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.vision-commitment {
    text-align: center;
    margin-top: 4rem;
}

.commitment-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(241, 154, 31, 0.3);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.05) 2px,
            rgba(255, 255, 255, 0.05) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.05) 2px,
            rgba(255, 255, 255, 0.05) 4px
        );
    animation: industrial-grid 20s linear infinite;
    pointer-events: none;
}

.commitment-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: industrial-shine 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes industrial-grid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes industrial-shine {
    0% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0.6;
        transform: rotate(180deg);
    }
}

.commitment-card > * {
    position: relative;
    z-index: 1;
}

.commitment-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.commitment-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.commitment-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .vision-content-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vision-header h2 {
        font-size: 2rem;
    }
    
    .vision-main-text,
    .commitment-card {
        padding: 2rem;
    }
}

/* Vision Image Styles */
.vision-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vision-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(241, 154, 31, 0.3);
}

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

.vision-image-container:hover img {
    transform: scale(1.1);
}

.vision-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 154, 31, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-image-container:hover .vision-image-overlay {
    opacity: 1;
}

@media (max-width: 1024px) {
    .vision-content-modern {
        grid-template-columns: 1fr;
    }
    
    .vision-image-container {
        height: 300px;
        order: 2;
    }
    
    .vision-main-text {
        order: 1;
    }
}

/* Products Gallery Carousel */
.products-gallery-carousel {
    padding: 4rem 0;
    background: var(--background-white);
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.carousel-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scrollCarousel 40s linear infinite;
    width: max-content;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(241, 154, 31, 0.3);
}

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

.carousel-slide:hover img {
    transform: scale(1.1);
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animación al hacer hover */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .carousel-slide {
        width: 300px;
        height: 400px;
    }
    
    .carousel-header h2 {
        font-size: 2rem;
    }
}

/* Products Section Modern Styles */
.products {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.products-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fffbf7 100%);
    z-index: 0;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.products-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.products-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card-modern:hover::before {
    transform: scaleX(1);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(241, 154, 31, 0.2);
}

.product-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.product-icon-modern i {
    font-size: 2.5rem;
    color: white;
}

.product-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-card-modern p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.products-cta-modern {
    margin-top: 4rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(241, 154, 31, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-products {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary-orange);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-products:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-products i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .products-header h2 {
        font-size: 2rem;
    }
    
    .products-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}

/* Mobile Optimizations - Mejoras específicas para móviles */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-logo img {
        height: 45px;
    }
    
    /* Sections padding */
    .about,
    .vision,
    .products,
    .contact {
        padding: 3rem 0;
    }
    
    /* Cards */
    .product-card-modern,
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    /* Headers */
    .about-header h2,
    .vision-header h2,
    .products-header h2 {
        font-size: 2rem;
    }
    
    .products-subtitle,
    .about-subtitle {
        font-size: 1rem;
    }
    
    /* Images */
    .about-image-modern img,
    .vision-image-container img {
        max-height: 300px;
        object-fit: cover;
    }
    
    /* Forms */
    .contact-form {
        padding: 1.5rem;
    }
    
    input[type="text"],
    input[type="tel"],
    textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    /* Carousel */
    .carousel-slide {
        height: 400px;
        max-width: 350px;
    }
    
    /* Buttons */
    .btn-cta-modern,
    .btn-cta-products {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Vision values grid */
    .vision-values {
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .about-header h2,
    .vision-header h2,
    .products-header h2 {
        font-size: 1.75rem;
    }
    
    .product-card-modern,
    .feature-card-modern,
    .value-item {
        padding: 1.25rem;
    }
    
    .carousel-slide {
        height: 350px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Touch-friendly targets */
@media (max-width: 768px) {
    a,
    button,
    input,
    textarea,
    select {
        min-height: 44px;
    }
    
    .social-icon,
    .social-link {
        min-width: 48px;
        min-height: 48px;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
}

/* Smooth scrolling on mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}
