@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ========== RESET Y VARIABLES ========== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

:root {
    --white: #FFFFFF;
    --black: #000000;
    --blue-primary: #034C8C;
    --blue-dark: #071D39;
    --red-dark: #74001F;
    --red-primary: #E30613;
    --red-accent: #EB3D2A;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--black);
}

/* ========== NAVEGACIÓN ========== */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    width: 200px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    display: inline-block;
}

.nav-links a:hover {
    background: var(--red-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.4);
}

.nav-links a.active {
    background: var(--blue-primary);
    color: var(--white);
}

.search-container {
    position: relative;
}

.search-bar {
    padding: 0.7rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    outline: none;
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-bar:focus {
    border-color: var(--red-primary);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.3);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red-primary);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--red-dark);
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    border-radius: 2px;
}

/* Animación cuando el toggle está activo */
.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== SLIDER PRINCIPAL ========== */
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: cover;
    object-position: center;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--red-primary);
    transform: scale(1.3);
    border-color: var(--white);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* ========== SECCIÓN DE PRODUCTOS CON MINI SLIDERS ========== */
.products-section {
    padding: 4rem 0;
    background: #f9fafc;
}

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

.products-main-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.products-main-title .primary-text {
    color: var(--blue-dark);
}

.products-main-title .accent-text {
    color: var(--red-primary);
}

.products-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--red-primary);
    border-radius: 2px;
}

.product-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 350px;
}

.product-row:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-slider {
    flex: 1;
    position: relative;
    height: 100%;
}

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

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

.mini-slide.active {
    opacity: 1;
}

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mini-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.mini-dot.active {
    background: var(--red-primary);
    transform: scale(1.2);
}

.mini-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 10;
    border-radius: 3px;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    opacity: 0;
}

.product-slider:hover .mini-arrow {
    opacity: 1;
}

.mini-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.mini-prev {
    left: 10px;
}

.mini-next {
    right: 10px;
}

.product-content {
    flex: 1;
    padding: 2.5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title .primary-text {
    color: var(--blue-primary);
}

.section-title .accent-text {
    color: var(--red-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--red-primary);
    border-radius: 2px;
}

.product-content h3 {
    color: var(--blue-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.product-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-btn {
    display: inline-block;
    background: var(--red-primary);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: "Nunito Sans", sans-serif;
    align-self: flex-start;
}

.product-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.autoplay-indicator {
    display: none !important;
}

/* ========== FEATURES SECTION ========== */
.features-preview {
    padding: 4rem 2rem;
    background: var(--white);
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.features-preview .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.features-preview .section-title .primary-text {
    color: var(--blue-dark);
}

.features-preview .section-title .accent-text {
    color: var(--red-primary);
}

.features-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--red-primary);
    border-radius: 2px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #e8eef7;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #d1d9e6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #f8fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    border: 2px solid #e8eef7;
    color: var(--blue-primary);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    color: white;
    border-color: var(--red-primary);
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--blue-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 5px;
}

.anniversary-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

/* ========== BRANDS CAROUSEL ========== */
.brands-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fc, #e8eef7);
    overflow: hidden;
}

.brands-title {
    text-align: center;
    color: var(--blue-dark);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100px;
    mask: linear-gradient(90deg, 
        transparent 0%, 
        black 5%, 
        black 95%, 
        transparent 100%);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: infiniteScroll 40s linear infinite;
    width: fit-content;
    height: 100%;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: opacity(0.9);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.brand-logo:hover {
    filter: opacity(1);
    transform: scale(1.1);
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 2.3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--red-primary);
    border-radius: 2px;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
    margin-bottom: 0.8rem;
    font-size: 14px;
    display: block;
}

.footer-section a:hover {
    color: var(--red-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    display: block;
}

.footer-section ul li a {
    display: block;
    padding: 0.2rem 0;
}

.footer-logo {
    width: 250px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-anniversary {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

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

.footer-social a:hover {
    background: var(--white);
    color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    width: 60px !important;
    height: 60px !important;
    background: var(--red-primary) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 1.5rem !important;
    box-shadow: 0 5px 20px rgba(227, 6, 19, 0.3) !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 998 !important;
}

.back-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.back-to-top:hover {
    background: var(--red-dark) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.4) !important;
}

/* ========== BARRA SOCIAL FLOTANTE ========== */
.floating-social {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    transition: all 0.3s ease !important;
}

.social-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    background: var(--blue-dark) !important;
    box-shadow: 0 4px 12px rgba(7, 29, 57, 0.3) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.social-icon:hover {
    transform: translateX(-8px) scale(1.1) !important;
    background: var(--blue-primary) !important;
    box-shadow: 0 6px 20px rgba(3, 76, 140, 0.4) !important;
}

.social-icon.social-pse .social-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    transform: scale(1.1) !important;
}

.social-icon.social-pse {
    position: relative !important;
    background: #FFD700 !important;
}

.social-icon.social-pse:hover {
    background: #FFC107 !important;
    transform: translateX(-8px) scale(1.1) !important;
}

.social-icon.social-pse::before {
    content: "Pagos seguros en línea";
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD700;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.social-icon.social-pse::after {
    content: "";
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #FFD700;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon.social-pse:hover::before,
.social-icon.social-pse:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ========== MEDIA QUERIES ========== */

/* RESOLUCIONES INTERMEDIAS - NAVEGACIÓN */
@media (max-width: 1300px) {
    .search-bar {
        width: 200px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .logo img {
        width: 180px;
    }
    
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.7rem;
        font-size: 0.95rem;
    }
    
    .search-bar {
        width: 180px;
        padding: 0.6rem 0.9rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .search-bar {
        width: 160px;
    }
}

/* TABLET (1024px) */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        border-radius: 15px;
        text-align: center;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: auto;
    }

    .nav-links a {
        display: inline-block;
        width: auto;
        padding: 0.8rem 1.5rem;
        color: var(--blue-dark);
        text-shadow: none;
    }

    .mobile-menu {
        display: flex;
    }

    .search-container {
        display: none;
    }

    .products-main-title {
        font-size: 2rem;
    }
    
    .features-preview .section-title {
        font-size: 2rem;
    }
    
    .floating-social {
        right: 15px;
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
/* MÓVIL (768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .logo img {
        width: 150px;
    }

    .mobile-menu span {
        width: 22px;
        height: 2.5px;
    }

    .nav-links a {
        padding: 0.7rem 1.2rem;
    }

    .slide img {
        max-height: 60vh;
    }
    
    .arrow {
        display: none;
    }

    .products-main-title {
        font-size: 1.8rem;
    }
    
    .features-preview .section-title {
        font-size: 1.8rem;
    }

    .product-row,
    .product-row.reverse {
        flex-direction: column;
        margin-bottom: 2rem;
        height: auto;
    }

    .mini-slider {
        height: 250px;
        order: 1;
        width: 100%;
    }

    .product-slider {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }

    .mini-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .mini-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .product-content {
        padding: 2rem 1.5rem !important;
        text-align: center !important;
        order: 2 !important;
        width: 90% !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .product-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
        text-align: left;
    }

    .product-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
        padding: 0 0.5rem !important;
    }

    .mini-arrow {
        display: none;
    }

    .mini-controls {
        bottom: 10px;
    }

    .mini-dot {
        width: 6px;
        height: 6px;
    }

    .brands-track {
        gap: 2rem;
    }

    .floating-social {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        top: auto !important;
        transform: none !important;
        flex-direction: row !important;
        background: rgba(7, 29, 57, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        padding: 8px !important;
        border-radius: 25px !important;
        gap: 8px !important;
        box-shadow: 0 8px 25px rgba(7, 29, 57, 0.4) !important;
        z-index: 999 !important;
    }
    
    .social-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .social-icon.social-pse {
        background: #FFD700 !important;
    }
    
    .social-icon:hover {
        transform: translateY(-3px) scale(1.05) !important;
        background: var(--blue-primary) !important;
    }

    .social-icon.social-pse:hover {
        background: #FFC107 !important;
    }

    .back-to-top {
        bottom: 90px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    .social-icon.social-pse .social-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        transform: scale(1.1) !important;
    }
    
    .social-icon.social-pse::before {
        right: auto;
        left: 50%;
        transform: translate(-50%, -120%);
        top: -10px;
    }
    
    .social-icon.social-pse::after {
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
        top: -2px;
        border: 6px solid transparent;
        border-top-color: #FFD700;
        border-left-color: transparent;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-preview {
        padding: 3rem 1rem;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-section:first-child {
        text-align: center;
    }

    .footer-logo {
        width: 200px;
        margin: 0 auto 1rem;
    }

    .footer-anniversary {
        width: 100px;
        margin: 0 auto 1.5rem;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section p {
        text-align: center;
    }
}

/* MÓVIL PEQUEÑO (480px) */
@media (max-width: 480px) {
    .logo img {
        width: 120px;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .nav-links {
        width: 95%;
        padding: 1.5rem;
    }

    .nav-links a {
        padding: 0.6rem 1rem;
    }

    .mobile-menu span {
        width: 20px;
    }

    .slide img {
        max-height: 50vh;
    }

    .container {
        padding: 0 1rem;
    }

    .products-section {
        padding: 3rem 0;
    }

    .products-main-title {
        font-size: 1.6rem;
    }
    
    .features-preview .section-title {
        font-size: 1.6rem;
    }

    .mini-slider {
        height: 250px !important;
    }

    .mini-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .floating-social {
        bottom: 15px !important;
        right: 15px !important;
        gap: 6px !important;
        padding: 6px !important;
    }
    
    .social-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }

    .back-to-top {
        bottom: 75px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }

    .product-content {
        padding: 1.8rem 1.2rem !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .product-content h3 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }

    .product-content p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
        padding: 0 0.8rem !important;
    }

    .product-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        margin: 0 0.8rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-anniversary {
        width: 80px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section p, 
    .footer-section a {
        font-size: 0.9rem;
    }
}