@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #E67E22;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --bg-white: #FFFFFF;
    --footer-bg: #1B2631;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

p {
    letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

/* Logo Circular - Tratamiento Medallón */
.logo-circle {
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: contain;
    background: #FFFFFF;
}

/* Logo Round - Clase para logos circulares con borde */
.logo-round {
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: white;
    object-fit: contain;
}

/* Welcome Gate - Puerta de Bienvenida UX/UI */
.welcome-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.welcome-gate.hidden {
    opacity: 0;
    pointer-events: none;
}

.gate-container {
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
}

.gate-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 3rem;
}

.gate-screen {
    display: none;
}

.gate-screen.active {
    display: block;
    animation: gateSlideIn 0.5s ease;
}

@keyframes gateSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gate-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 3rem;
}

.profile-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.profile-card {
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-card:hover {
    border-color: #E67E22;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.25);
}

.profile-card:active {
    transform: scale(0.98);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.profile-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.profile-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #7F8C8D;
    margin: 0;
}

.country-flags {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.flag-item {
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.flag-item:hover {
    border-color: #E67E22;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.2);
}

.flag-item:active {
    transform: scale(0.95);
    background-color: #E67E22;
}

.flag-item img {
    width: 60px;
    height: auto;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.flag-item span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2C3E50;
}

@media (max-width: 768px) {
    .gate-container {
        padding: 2rem 1.5rem;
    }

    .gate-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }

    .gate-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .profile-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        font-size: 3rem;
    }

    .profile-card h3 {
        font-size: 1.5rem;
    }

    .country-flags {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .flag-item {
        padding: 1rem 0.5rem;
    }

    .flag-item img {
        width: 50px;
    }

    .flag-item span {
        font-size: 0.85rem;
    }
}

/* Header Sticky Inteligente - Estilo Ponera */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: #FFFFFF;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Header Dark - Para páginas con fondo blanco (shop, legal, contacto) */
.header-dark {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-dark .nav-menu a {
    color: #2C3E50 !important;
}

.header-dark .nav-menu a:hover {
    color: #E67E22 !important;
}

.header-dark .menu-toggle span {
    background: #2C3E50 !important;
}

.header-dark .logo img {
    border-color: #2C3E50 !important;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    transition: all 0.4s ease;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: contain;
    background: #FFFFFF;
}

.header.scrolled .logo img {
    height: 50px;
    border: 2px solid var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.header.scrolled .nav-menu a {
    color: var(--text-primary);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Selector de Idiomas con Banderas - Estilo Ponera */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-flag {
    width: 24px;
    height: auto;
    border-radius: 2px;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-flag:hover,
.lang-flag.active {
    opacity: 1;
    transform: scale(1.1);
}

/* Menú Móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 0.4rem;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: 0.3s;
    border-radius: 2px;
}

.header.scrolled .menu-toggle span {
    background: var(--text-primary);
}

.header-dark .menu-toggle span {
    background: #2C3E50 !important;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        color: var(--text-primary) !important;
        padding: 1rem;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    .nav-menu a:hover {
        background: #F8F9FA;
    }

    .language-selector {
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid #E8E8E8;
        margin-top: 0.5rem;
    }
}

/* Hero Emocional y Vibrante - 40vh */
.hero-warm {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%), 
                url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: #FFFFFF !important;
}

/* Hero Empresa - Overlay oscuro para legibilidad */
.empresa-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.empresa-hero h1 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.empresa-hero p {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    font-size: 1.3rem;
}

.typing-effect {
    display: inline-block;
    background: linear-gradient(to right, #FFFFFF, #FF9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #FF9900;
    animation: typing 6s steps(22) infinite, blink-cursor 0.75s step-end infinite;
}

@keyframes typing {
    0% { width: 0; }
    40% { width: 100%; }
    70% { width: 100%; }
    90% { width: 0; }
    100% { width: 0; }
}

@keyframes blink-cursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: #FF9900; }
}

.hero-content .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.cta-button-hero {
    display: inline-block;
    background: #FF9900;
    color: #FFFFFF;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.cta-button-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 153, 0, 0.6);
    background: #FF8800;
}

.hero-trust-text {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
}

/* Barra de Marcas en Hero */
.brands-hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 1.5rem 0;
    overflow: hidden;
    z-index: 10;
}

.brands-hero-bar .brands-track {
    display: flex;
    gap: 4rem;
    animation: slide-brands 25s linear infinite;
}

.brands-hero-bar .brands-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brands-hero-bar .brands-track img:hover {
    opacity: 1;
}

/* Mosaico de Inspiración */
.inspiration-mosaic {
    padding: 0;
    margin: 0;
    background: #F4F6F7;
    margin-top: 0;
    position: relative;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.mosaic-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    pointer-events: none;
    cursor: default;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.mosaic-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #FFFFFF;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Logo Sello de Calidad */
.quality-seal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.quality-seal img {
    width: 120px;
    height: 120px;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    }
}

/* Slider de Marcas Infinito */
.brands-slider-section {
    background: #FFFFFF;
    padding: 3rem 0;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 4rem;
    animation: slide-brands 25s linear infinite;
}

.brands-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brands-track img:hover {
    opacity: 1;
}

@keyframes slide-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mensaje de Cierre Pre-Footer */
.pre-footer-cta {
    background: #1B2631;
    color: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
}

.pre-footer-cta h2 {
    color: #FFFFFF;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pre-footer-cta p {
    color: #BDC3C7;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button-small {
    display: inline-block;
    background: #FF9900;
    color: #FFFFFF;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button-small:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.5);
}

/* Slider de Marcas Infinito */
.brands-slider-section {
    background: #FFFFFF;
    padding: 3rem 0;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 4rem;
    animation: slide-brands 25s linear infinite;
}

.brands-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brands-track img:hover {
    opacity: 1;
}

@keyframes slide-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mensaje de Cierre Pre-Footer */
.pre-footer-cta {
    background: #1B2631;
    color: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
}

.pre-footer-cta h2 {
    color: #FFFFFF;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pre-footer-cta p {
    color: #BDC3C7;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button-small {
    display: inline-block;
    background: #FF9900;
    color: #FFFFFF;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button-small:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.5);
}

/* Expertise Section - Fondo gris claro */
.expertise-section {
    background: #F8F9FA;
    padding: 6rem 2rem;
}

.expertise-section h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

/* Stats Banner Minimalista */
.stats-banner {
    background: #FFFFFF;
    padding: 5rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.4);
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.section p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    letter-spacing: 0.5px;
}

.bg-light {
    background: #F8F9FA;
}

.bg-dark {
    background: var(--footer-bg);
    color: #FFFFFF;
}

.bg-dark h2,
.bg-dark p {
    color: #FFFFFF;
}

/* Empresa Grid */
.empresa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.empresa-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.empresa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.empresa-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Marcas Grid */
.marcas-grid {
    overflow: hidden;
    margin-top: 3rem;
    padding: 2rem 0;
}

.marcas-slider {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.marca-card {
    flex: 0 0 auto;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 200px;
    transition: transform 0.3s;
}

.marca-card:hover {
    transform: translateY(-5px);
}

.marca-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 8 - 3rem * 8)); }
}

/* Footer Corporativo Masivo */
.footer {
    background: #1B2631;
    color: #BDC3C7;
}

.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #BDC3C7;
}

.footer-info {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-info p {
    margin-bottom: 1rem;
}

.footer-info strong {
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #E67E22;
    transform: translateX(5px);
}

.footer-contact {
    margin-top: 2rem;
}

.footer-contact strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-email {
    color: #E67E22;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.8;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-item p {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright {
    font-size: 0.9rem;
    color: #BDC3C7;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links svg {
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: #E67E22;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 50px;
    }

    .header.scrolled .logo img {
        height: 45px;
    }

    /* Hero */
    .hero-warm {
        min-height: 500px;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 1rem;
        margin-bottom: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .typing-effect {
        animation: typing 6s steps(22) infinite, blink-cursor 0.75s step-end infinite;
    }

    .hero-content .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button-hero {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        width: 90%;
        max-width: 400px;
    }

    /* Banderas Welcome Gate */
    .country-flags {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .flag-item {
        padding: 1rem 0.5rem;
    }

    .flag-item img {
        width: 50px;
    }

    .flag-item span {
        font-size: 0.85rem;
    }

    /* Brands Hero Bar */
    .brands-hero-bar {
        padding: 1rem 0;
    }

    .brands-hero-bar .brands-track {
        gap: 2rem;
    }

    .brands-hero-bar .brands-track img {
        height: 40px;
    }

    /* Mosaico */
    .mosaic-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .mosaic-item {
        height: 250px;
    }

    .mosaic-label {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        bottom: 10px;
        left: 10px;
    }

    .quality-seal img {
        width: 80px;
        height: 80px;
    }

    /* Brands Slider */
    .brands-slider-section {
        padding: 2rem 0;
    }

    .brands-track {
        gap: 2rem;
    }

    .brands-track img {
        height: 50px;
    }

    /* Pre-footer */
    .pre-footer-cta {
        padding: 3rem 1.5rem;
    }

    .pre-footer-cta h2 {
        font-size: 1.8rem;
    }

    /* Expertise */
    .expertise-section {
        padding: 4rem 1rem;
    }

    .expertise-section h2 {
        font-size: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-content {
        padding: 30px;
    }

    /* Stats */
    .stats-banner {
        padding: 3rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Sections */
    .section {
        padding: 3rem 1rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    /* Empresa - Valores */
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-main {
        padding: 50px 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-badges {
        align-items: center;
    }

    /* Shop */
    .shop-section {
        padding: 3rem 1rem;
    }

    .shop-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .search-container {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    #search-input {
        width: 100%;
        font-size: 16px;
    }

    #search-btn {
        width: 100%;
        padding: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.2rem;
    }

    /* Formularios - Evitar zoom en iPhone */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Iconos FBA Empresa */
    .fba-step .icon {
        font-size: 50px;
        min-height: 50px;
    }
}

/* Shop Section - Tienda Dinámica */
.shop-section {
    padding: 4rem 2rem;
    background: #F8F9FA;
}

.shop-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
}

.search-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 1rem;
}

#search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

#search-input:focus {
    outline: none;
    border-color: #E67E22;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.2);
}

#search-btn {
    padding: 1rem 2.5rem;
    background: #E67E22;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#search-btn:hover {
    background: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.85rem;
    color: #E67E22;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.8rem;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E67E22;
    margin-bottom: 1rem;
}

.product-btn {
    display: block;
    width: 100%;
    background: #E67E22;
    color: #FFFFFF;
    text-align: center;
    padding: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

@media (max-width: 768px) {
    .shop-section {
        padding: 3rem 1rem;
    }

    .shop-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .search-container {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    #search-input {
        width: 100%;
        font-size: 0.95rem;
    }

    #search-btn {
        width: 100%;
        padding: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.2rem;
    }
}

/* Legal Page - Estilos Profesionales */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2C3E50;
    border-bottom: 2px solid #E67E22;
    padding-bottom: 15px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2C3E50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495E;
    text-align: justify;
    margin-bottom: 15px;
}

.company-data {
    background: #F8F9FA;
    border-left: 4px solid #E67E22;
    padding: 20px;
    margin: 20px 0;
    font-family: monospace;
    color: #2C3E50;
}

.update-date {
    font-weight: bold;
    color: #7F8C8D;
    margin-bottom: 40px;
    display: block;
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 15px 40px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .legal-content p {
        font-size: 1rem;
        text-align: left;
    }

    .company-data {
        padding: 15px;
        font-size: 0.9rem;
    }
}
