/* Variables globales */
:root {
    --primary-color: #e82c26;
    --primary-rgb: 232, 44, 38;
    --secondary-color: #010103;
    --secondary-rgb: 1, 1, 3;
    --accent-color: #2d2d2d;
    --accent-rgb: 45, 45, 45;
    --light-color: #ffffff;
    --dark-color: #010103;
    --gray-color: #f8f9fa;
    --gray-dark: #706f7b;
    --gray-light: #f6f6f6;
    --text-color: #2d2d2d;
    --text-light: #706f7b;
    --border-color: #e9e9e9;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.2);
    --whatsapp-color: #25D366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.2px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.5s;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-up {
    animation-name: slideInUp;
}

.slide-left {
    animation-name: slideInLeft;
}

.slide-right {
    animation-name: slideInRight;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.bg-light {
    background-color: var(--gray-color);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: var(--light-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    font-size: 16px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

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

.tienda-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tienda-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tienda-btn::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Menú móvil */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: red;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 2000;
    padding: 50px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.mobile-nav-links li {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    padding: 12px 0;
    transition: var(--transition);
}

/* Sección de Tienda Online */
.tienda-online-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.tienda-online-content {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.tienda-online-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.tienda-lista {
    margin-bottom: 30px;
}

.tienda-lista li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.tienda-lista li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.tienda-cta {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.tienda-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tienda-online-imagen {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.tienda-card {
    width: 100%;
    max-width: 350px;
    background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.tienda-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tienda-card-header {
    background: linear-gradient(135deg, var(--primary-color), #ff7a59);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tienda-card-header i {
    font-size: 2rem;
}

.tienda-card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.tienda-card-body {
    padding: 30px 20px;
    text-align: center;
}

.tienda-card-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.tienda-card-info {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.tienda-card-info p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.tienda-card-footer {
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.tienda-card-footer a {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tienda-card-footer a:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sección de Ofertas Especiales */
.ofertas-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.ofertas-imagen {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.ofertas-imagen:hover img {
    transform: scale(1.05);
}

.ofertas-content {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.ofertas-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.ofertas-lista {
    margin-bottom: 30px;
}

.ofertas-lista li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.ofertas-lista li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.ofertas-cta {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.ofertas-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Slider de Marcas */
.marcas-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.marcas-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marcas-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 15); /* Ancho de cada slide * número total de slides */
}

.marca-slide {
    width: 200px;
    padding: 0 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca-slide img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.marca-slide:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10)); /* Ancho de cada slide * número de slides originales */
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    margin-top: 0;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: left;
    color: white;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -100px 100px -100px rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.9) 0%, rgba(var(--secondary-rgb), 0.7) 50%, rgba(var(--secondary-rgb), 0.4) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(var(--secondary-rgb), 0.8) 0%, rgba(var(--secondary-rgb), 0) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    padding: 0 50px;
}

/* Decorative elements for hero section */
.hero::before, 
.hero::after {
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Floating shapes */
.hero .container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
    z-index: -1;
}

.hero .container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 25%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(30px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--light-color);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 2px;
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
    background: linear-gradient(to right, var(--primary-color), #ff8f7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    position: relative;
    padding-left: 15px;
}

.hero-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 20px;
}

.hero-content p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, rgba(var(--primary-rgb), 0.7), transparent);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    position: relative;
}

.hero-buttons::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.hero-buttons .btn {
    min-width: 180px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: capitalize;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3);
}

.hero-buttons .btn::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: all 0.6s ease;
    z-index: -1;
}

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

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ff7a59);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-buttons .btn-primary:hover::before {
    left: 0;
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -30px;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.05) 0%, rgba(var(--secondary-rgb), 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-text p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--primary-color);
}

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

.card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0) 100%);
    transition: height 0.5s ease;
    z-index: -1;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.card:hover::before {
    height: 100%;
}

.card-icon {
    margin-bottom: 25px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--gray-light);
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff7a59);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.2);
}

.card-icon i {
    font-size: 40px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.card:hover .card-icon i {
    color: var(--light-color);
    transform: scale(1.1);
}

.card-icon img {
    width: 60px;
    height: 60px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.card:hover .card-icon img {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    font-weight: 700;
    transition: all 0.3s ease;
}

.card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.card:hover p {
    color: var(--text-color);
}

.card-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

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

.card-link:hover {
    color: var(--primary-color);
}

.card-link:hover::after {
    width: 100%;
}

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

.card:hover .card-link::after {
    width: 100%;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--light-color);
    border-radius: 5px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.product-img {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: 5px;
    height: 180px;
    overflow: hidden;
}

.product-img i {
    font-size: 80px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.product-img img {
    max-width: 80%;
    max-height: 140px;
    transition: all 0.4s ease;
    object-fit: contain;
}

.product-card:hover .product-img img,
.product-card:hover .product-img i {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-card .price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-card .btn {
    margin-top: auto;
    align-self: center;
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.product-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.btn-product {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.4);
}

.btn-product:hover::before {
    opacity: 1;
}

.btn-product:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}



/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

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

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

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-item a {
    color: var(--accent-color);
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-container {
    margin-top: 50px;
    text-align: center;
}

.map-container h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map iframe {
    display: block;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: 5px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--gray-light);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    background-color: var(--light-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-check input {
    width: auto;
    margin-right: 10px;
}

.form-check label {
    display: inline;
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--text-light);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover {
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="%23ff4d30" fill-opacity="0.03"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-logo p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--light-color);
    font-weight: 600;
}

.footer-links h3::after,
.footer-social h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
     background: var(--primary-color);
     border-radius: 2px;
 }

.footer-links h3::after,
.footer-social h3::after,
    .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray-dark);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Estilos para el botón de llamada */
.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.call-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.call-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: var(--light-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    color: var(--gray-dark);
    letter-spacing: 1px;
    padding-top: 5px;
}

.copyright a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: var(--light-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        width: 90%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 70px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        padding-left: 12px;
    }
    
    .hero-content h2::before {
        width: 4px;
        height: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding-bottom: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
}
    
    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        min-width: 180px;
    }

    .about-cards,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
    }
    
    .map-container h3 {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}