:root {
    --primary-color: #4CAF50;
    --secondary-color: #388E3C;
    --accent-color: #8BC34A;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    background-color: #ab1eeb;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 140px;
    text-align: center;
}

.btn:hover, .btn:focus {
    background-color: #3c096c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

.btn-whatsapp {
    background-color: #25D366;
}

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

/* ====================== */
/* HEADER & NAVEGACIÓN    */
/* ====================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: background-color 0.5s ease, padding 0.5s ease;
    background-color: transparent;
}

header.scrolled {
    background-color: #3C096C;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header.scrolled .menu-bottom-line {
    display: none;
}

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

.logo {
    height: 30px;
    z-index: 1001;
}

.logo img {
    height: 100%;
    width: 186px;
    max-height: 50px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

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

.nav-menu ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    display: block;
}

.nav-menu ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ab1eeb;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover:after,
.nav-menu ul li a:focus:after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

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

.social-icons a {
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.social-icons a:hover,
.social-icons a:focus {
    color: #ffeee2;
    transform: translateY(-3px);
}


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

.social-icons-footer a {
    color: #3c096c;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.social-icons-footer a:hover,
.social-icons-footer a:focus {
    color: #ab1eeb;
    transform: translateY(-3px);
}



.call-now {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.call-now span {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.call-now a {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-now a:hover,
.call-now a:focus {
    color: #f1e2ff;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 10px;
}

/* Línea separadora de contacto */
.contact-separator-line {
    height: 90px;
    width: 1px;
    background: #ddd;
    margin: 0 -20px;
    opacity: 0.3;
}

/* Línea inferior del menú */
.menu-bottom-line {
    height: 1px;
    background: #ddd;
    width: 100%;
    margin: 15px 0;
    margin-bottom: -16px;
    opacity: 0.3;
}

/* ====================== */
/* SECCIÓN INICIO         */
/* ====================== */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 5s linear;
    z-index: 1;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    text-align: left;
    width: 50%;
    padding: 0;
    color: var(--white);
    z-index: 3;
}

.slide .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.title-rectangle {
    height: 2px;
    width: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
    opacity: 0;
}

.slide h1 {
    font-size: 90px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}

.slide .btn {
    opacity: 0;
    transform: translateY(20px);
}

.slide.active .subtitle,
.slide.active .title-rectangle,
.slide.active h1,
.slide.active .btn {
    animation: fadeInUp 0.8s ease forwards;
}

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

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

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-nav .prev-slide::before {
    content: '← ';
    margin-right: 5px;
}

.slider-nav .next-slide::after {
    content: ' →';
    margin-left: 5px;
}

/* ====================== */
/* Parallax Section */
/* ====================== */
.parallax {
    padding: 250px 0;
    background-image: url('imagenes/parallax/img-1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;       
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.484);
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 60px;
    margin-bottom: 30px;
}

/* ====================== */
/* Gallery Section */
/* ====================== */
.gallery-section {
    padding: 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    height: 100vh;
    max-height: 100vh;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mosaic-item:hover {
    transform: scale(1.05);
    z-index: 1;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3c096cd3;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.view-btn {
    background: #d795dd;
    color: white;
    border: none;
    padding: 10px 50px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0px;
}

.view-btn:hover {
    background: #ab1eeb;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        height: 80vh;
    }
    
    .gallery-overlay h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: auto;
        max-height: none;
    }
    
    .mosaic-item {
        height: 50vh;
    }
    
    .gallery-overlay h3 {
        font-size: 24px;
    }
    
    .view-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mosaic-item {
        height: 40vh;
    }
    
    .gallery-overlay h3 {
        font-size: 20px;
    }
}

/* Category Gallery Popup - MODIFICADO: Fondo negro tenue */
.category-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3c096cd3;
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.category-popup.active {
    opacity: 1;
    visibility: visible;
}

.category-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    background: transparent;
    margin-bottom: 30%;
}

.category-header {
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.close-category {
    background: #ab1eeb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px 20px;
    max-height: 70vh;
    overflow-y: auto;
}

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

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

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-plus-btn {
    background: #ab1eeb;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

/* Variants Popup - MODIFICADO: Pantalla completa con título y botón */
.variants-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.variants-popup.active {
    opacity: 1;
    visibility: visible;
}

.variants-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variants-carousel {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.variant-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.variant-slide img {
    width: 90%;
    height: 80%;
    object-fit: cover;
    margin-bottom: 10%;
}

/* Overlay inferior con título, descripción y botón */
.variants-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 40px;
    color: white;
    z-index: 5;
}

.variants-title-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.variants-text {
    flex: 1;
}

.variants-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.variants-description {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.quote-btn {
    background: #ab1eeb;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    margin-bottom: 2%;
}

.quote-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Línea inferior */
.gallery-line {
    height: 1px;
    background: #ddd;
    width: 138%;
    margin: 15px -50px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Controles de navegación */

.carousel-prev, .carousel-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Indicadores */
.variants-indicators {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ab1eeb;
    transform: scale(1.2);
}

/* Botón de cerrar */
.close-variants {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
}

.close-variants:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .variants-overlay {
        padding: 20px;
    }
    
    .variants-title-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .variants-title {
        font-size: 22px;
    }
    
    .variants-description {
        font-size: 14px;
    }
    
    .carousel-prev, .carousel-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .variants-indicators {
        bottom: 160px;
    }
    
    .quote-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====================== */
/* Products Section */
/* ====================== */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #3c096c;
    font-size: 40px;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}

.product-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.product-item {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
    background: #f5edfd;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);    
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 25px;
    text-align: left;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3c096c;
}

.product-info .subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #ab1eeb;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.buy-btn:hover {
    background: #3c096c;
}

/* ====================== */
/* Testimonials Section */
/* ====================== */

.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-banner {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    background-image: url('imagenes/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ab1eeb;
    border-radius: 8px;
    z-index: 1;
}

.testimonials-banner-content {
    position: relative;
    z-index: 2;
}

.testimonials-banner h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.testimonials-banner .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.testimonials-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonials-carousel-container {
    flex: 2;
    min-width: 300px;
}

.testimonials-carousel {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.testimonials-carousel .carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    display: flex;
    flex: 0 0 100%;
    gap: 20px;
    padding: 10px;
}

.testimonial-item {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #dadada;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #ab1eeb;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 0;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 38%;
    background: #ab1eeb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover, .carousel-next:hover {
    background: #3c096c;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-slide {
        flex-wrap: wrap;
    }
    
    .testimonial-item {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        min-width: 100%;
    }
}

/* ====================== */
/* Promo Banner Section */
/* ====================== */
.promo-banner {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagenes/galeria/activaciones.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.banner-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================== */
/* Clients Logos Section */
/* ====================== */
.clients-logos {
    padding: 80px 0;
    background: white;
}

.clients-logos h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #3c096c;
    font-size: 40px;
}

.logos-carousel {
    position: relative;
    padding: 0 40px;
}

.logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    padding: 0 20px;
}

.logo-slide img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

/* ====================== */
/* SECCIÓN CONTACTO       */
/* ====================== */
.contact {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.contact h2 {
    text-align: left;
    font-size: 40px;
    color: #3c096c;
    margin-bottom: 50px;
    
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: #3c096c;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3c096c;
}

.info-item p, .info-item a {
    font-size: 16px;
    color: var(--text-color);
}

.info-item a:hover {
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 0px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

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

/* Mapa */
iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(0%);
}

/* ====================== */
/* FOOTER                 */
/* ====================== */
footer {
    background-color: #f1e2ff;
    color: #3c096c;
    padding: 70px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 12%;
    width: auto;
    max-height: 40px;
}

.footer-col p {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #ab1eeb;
    bottom: 0;
    left: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #ab1eeb;
    padding-left: 5px;
}

.footer-col.contact-col ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-col.contact-col ul li i {
    margin-right: 15px;
    color: #3c096c;
    font-size: 16px;
}

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

.copyright {
    text-align: left;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.legal-links a {
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

/* ====================== */
/* COMPONENTES ADICIONALES */
/* ====================== */
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 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 {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* ====================== */
/* MEDIA QUERIES          */
/* ====================== */
@media (max-width: 1200px) {
    .slide h1 {
        font-size: 3.5rem;
    }
    
    .product-item {
        flex: 0 0 calc(33.333% - 30px);
        max-width: calc(33.333% - 30px);
    }
}

@media (max-width: 992px) {
    .slide-content {
        width: 70%;
        left: 10%;
    }
    
    .slide h1 {
        font-size: 3rem;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .product-item {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
    
    .variants-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .variants-controls {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        transition: all 0.5s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .nav-menu ul li {
        margin: 15px 0;
    }
    
    .header-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content {
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .slide .subtitle {
        font-size: 12px;
    }
    
    .slide h1 {
        font-size: 2.5rem;
    }
    
    .title-rectangle {
        margin: 0 auto 20px;
    }
    
    .slider-nav button {
        min-width: auto;
        padding: 8px 15px;
    }
    
    /* Hide lines on mobile */
    .contact-separator-line,
    .menu-bottom-line {
        display: none;
    }
    
    .product-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .category-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 2rem;
    }
    
    .slide .btn {
        padding: 12px 25px;
        min-width: 160px;
    }
    
    .slider-nav button {
        padding: 6px 12px;
        font-size: 12px;
    }
}


/* ====================== */
/* SESION NOSOTROS        */
/* ====================== */

/* About Company Section */
.about-company {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #3c096c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs */
.about-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 8px 30px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #ab1eeb;
    color: #ab1eeb;
}

.tab-btn.active {
    background-color: #ab1eeb;
    border-color: #ab1eeb;
    color: white;
}

.tab-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tab-panel {
    display: none;
    padding: 40px;
}

.tab-panel.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tab-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ab1eeb, #7b68ee);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.image-placeholder p {
    font-weight: 600;
    margin: 0;
}

.image-placeholder.mission {
    background: linear-gradient(135deg, #ab1eeb, #8E54E9);
}

.image-placeholder.vision {
    background: linear-gradient(135deg, #ab1eeb, #8E54E9);
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ab1eeb;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Mission List */
.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-list li {
    padding: 8px 0;
    color: #666;
}

.mission-list i {
    color: #ab1eeb;
    margin-right: 10px;
}

/* Vision Highlights */
.vision-highlights {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.vision-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: #f5f9ff;
    border-radius: 8px;
}

.vision-item i {
    font-size: 2rem;
    color: #ab1eeb;
    margin-bottom: 15px;
}

.vision-item h4 {
    margin-bottom: 10px;
    color: #333;
}

.vision-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ab1eeb, #7b68ee);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.value-card h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tab-content-inner {
        flex-direction: column;
    }
    
    .tab-image {
        margin-top: 30px;
    }
    
    .vision-highlights {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
