/* Importar fuente Poppins de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Variables de color */
:root {
    --color-primary: #5B3A7D;
    --color-secondary: #7B5BA4;
    --color-accent: #D4A5E8;
    --color-dark: #2C2C2C;
    --color-light: #F5F5F5;
    --color-white: #FFFFFF;
    --gradient-bg: linear-gradient(135deg, #B085E0 0%, #8B6BB8 50%, #6B4A94 100%);
    --shadow: 0 4px 15px rgba(91, 58, 125, 0.2);
    --whatsapp-green: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   BOTÓN FLOTANTE DE WHATSAPP
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: pulseWhatsApp 2s ease-in-out infinite;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
    }
}

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

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: var(--color-dark);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Animación de entrada del botón */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-float {
    animation: slideInRight 0.6s ease-out, pulseWhatsApp 2s ease-in-out infinite 0.6s;
}

/* Responsive para el botón flotante */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 34px;
        height: 34px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   HEADER & NAVBAR
============================================ */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(91, 58, 125, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 2px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 40px rgba(91, 58, 125, 0.2);
    border-bottom: 2px solid var(--color-accent);
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo::after {
    content: 'Pelusas Pet';
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B085E0 0%, #8B6BB8 50%, #6B4A94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(91, 58, 125, 0.3);
}

.logo:hover img {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--color-accent);
    box-shadow: 0 6px 25px rgba(91, 58, 125, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B085E0 0%, #8B6BB8 50%, #6B4A94 100%);
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--color-white);
    transform: translateY(-3px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* ============================================
   HERO SECTION
============================================ */
.hero {
    background: var(--gradient-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    height: calc(100vh - 100px);
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    position: relative;
}

.hero-content::before {
    content: '🐾';
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.hero-content::after {
    content: '🐾';
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite reverse;
}

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

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

.hero h1 {
    font-size: 4.8rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.3),
        -1px -1px 0px rgba(255, 215, 0, 0.5),
        2px 2px 10px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 4px dotted #FFD700;
    border-radius: 20px;
    opacity: 0.6;
    animation: pulseGold 3s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.tagline {
    font-size: 1.9rem;
    color: #FFF8DC;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 2.8rem;
    color: #FFE55C;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.3),
        1px 1px 8px rgba(255, 215, 0, 0.5);
}

.subtitle {
    font-size: 1.4rem;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-weight: 700;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--color-dark);
    font-weight: 700;
    border: 3px solid #DAA520;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: #FFD700;
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 3px solid #FFD700;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 5px solid #FFD700;
}

.hero-image img:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.5);
    border-color: #FFA500;
}

/* ============================================
   BENEFICIOS
============================================ */
.beneficios {
    padding: 80px 20px;
    background: var(--color-white);
}

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

.beneficio-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--color-light);
    transition: all 0.3s;
}

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

.beneficio-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* ============================================
   PRODUCTOS
============================================ */
.productos {
    padding: 80px 20px;
    background: var(--gradient-bg);
}

.productos .container {
    max-width: 1600px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 3rem;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.producto-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    height: 100%;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.producto-img {
    width: 100%;
    height: 220px;
    background: var(--color-light);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

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

.producto-card h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.producto-card > p {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.beneficios-lista {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    align-self: start;
}

.beneficios-lista li {
    padding: 0.5rem 0;
    color: var(--color-dark);
    font-weight: 500;
}

.ventas-info {
    text-align: center;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.ventas-info h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ventas-info p {
    font-size: 1.1rem;
    color: var(--color-dark);
}

/* ============================================
   TESTIMONIOS
============================================ */
.testimonios {
    padding: 80px 20px;
    background: var(--color-white);
}

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

.testimonios .section-subtitle {
    color: var(--color-dark);
}

.testimonios-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonio-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(91, 58, 125, 0.15);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    display: none;
}

.testimonio-card.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

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

.testimonio-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 50px rgba(91, 58, 125, 0.25);
    transform: translateY(-5px);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.avatar-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B085E0 0%, #8B6BB8 50%, #6B4A94 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(91, 58, 125, 0.4);
    position: relative;
    overflow: hidden;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.testimonio-card:hover .avatar-circle::before {
    transform: translateX(100%);
}

.avatar-initial {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1;
}

.testimonio-header > div h4 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.testimonio-header img {
    display: none;
}

.fecha {
    color: #888;
    font-size: 0.9rem;
}

.testimonio-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    color: var(--color-dark);
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonio-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 4rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonio-rating {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #FFD700;
}

.motivacional {
    background: linear-gradient(135deg, #B085E0 0%, #8B6BB8 50%, #6B4A94 100%);
    color: var(--color-white);
    padding: 1.3rem 1.8rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    box-shadow: 0 5px 20px rgba(91, 58, 125, 0.3);
    border-left: 5px solid rgba(255, 255, 255, 0.6);
    font-style: normal;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.prev-btn, .next-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 58, 125, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--color-secondary);
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(91, 58, 125, 0.5);
}

.dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: var(--color-secondary);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-primary);
    width: 40px;
    border-radius: 8px;
    border-color: var(--color-accent);
}

/* ============================================
   UBICACIÓN
============================================ */
.ubicacion {
    padding: 40px 20px;
    background: var(--gradient-bg);
}

.ubicacion .section-title {
    color: var(--color-white);
}

.ubicacion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.ubicacion-info {
    background: var(--color-white);
    padding: 0.8rem;
    padding-left: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: fit-content;
}

.punto-venta, .envios {
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
    border-bottom: 2px solid rgba(91, 58, 125, 0.1);
}

.punto-venta:last-of-type, .envios:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.punto-venta h3, .envios h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Estilos para iconos PNG de puntos de venta */
.icon-punto-venta {
    width: 28px;
    height: 28px;
    min-width: 28px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.punto-venta p, .envios p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

/* Estilos adicionales para direcciones */
.punto-venta .ubicacion-nombre {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.punto-venta .ubicacion-direccion {
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.punto-venta .ubicacion-detalle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.mapa {
    background: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 40px rgba(91, 58, 125, 0.2);
    border: 3px solid rgba(91, 58, 125, 0.1);
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive para ubicación */
@media (max-width: 968px) {
    .ubicacion-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .ubicacion {
        padding: 60px 15px;
    }
    
    .ubicacion-info {
        padding: 1.5rem;
    }
    
    .punto-venta h3, .envios h3 {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .icon-punto-venta {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }
    
    .mapa {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .ubicacion-info {
        padding: 1.2rem;
    }
    
    .punto-venta h3, .envios h3 {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .icon-punto-venta {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    
    .punto-venta, .envios {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
    
    .punto-venta p, .envios p {
        font-size: 0.9rem;
    }
    
    .mapa {
        height: 300px;
    }
}
/* ============================================
   CONTACTO - DISEÑO GRID 2x2 (SIN FONDO EN ICONOS)
============================================ */
.contacto {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contacto .section-title {
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contacto-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(91, 58, 125, 0.1);
}

.contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 58, 125, 0.15);
    border-color: rgba(91, 58, 125, 0.2);
}

.contacto-icon-wrapper {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contacto-card:hover .contacto-icon-wrapper {
    transform: scale(1.1);
}

.icon-contacto {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.contacto-text {
    flex: 1;
}

.contacto-text h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contacto-text p {
    color: #333;
    margin: 0;
    font-size: 1rem;
}

.contacto-text a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.contacto-text a:hover {
    color: var(--color-primary);
}

/* Responsive para contacto */
@media (max-width: 768px) {
    .contacto {
        padding: 60px 20px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }

    .contacto-card {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .contacto-icon-wrapper {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .icon-contacto {
        width: 56px;
        height: 56px;
    }

    .contacto-text h3 {
        font-size: 1.2rem;
    }

    .contacto-text p,
    .contacto-text a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contacto {
        padding: 50px 15px;
    }

    .contacto-card {
        padding: 1.2rem;
        gap: 1rem;
    }

    .contacto-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .icon-contacto {
        width: 50px;
        height: 50px;
    }

    .contacto-text h3 {
        font-size: 1.1rem;
    }

    .contacto-text p,
    .contacto-text a {
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 20px 1rem;
}

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

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

.footer-section:first-child p {
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-section h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p a {
    color: var(--color-accent);
}

.footer-section p a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

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

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(91, 58, 125, 0.2);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

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

    .logo::after {
        font-size: 1.2rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 20px;
        height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

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

    .hero-image {
        order: -1;
        height: auto;
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;
        max-height: 60vh;
    }

    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ubicacion-content {
        grid-template-columns: 1fr;
    }

    .mapa {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .logo::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 60px;
        height: 60px;
    }

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

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

    .tagline {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero .container {
        padding: 1rem 15px;
    }

    .hero-image img {
        max-width: 100%;
    }

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

    .mapa {
        height: 300px;
    }

    .avatar-circle {
        width: 60px;
        height: 60px;
    }

    .avatar-initial {
        font-size: 1.8rem;
    }

    .testimonio-text {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .testimonio-text::before {
        font-size: 3rem;
        top: -10px;
    }

    .testimonio-card {
        padding: 2rem;
    }

    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .contacto-content {
        grid-template-columns: 1fr;
    }
}