/* style.css - Estilos Globales GoodFries SAC - Versión Mejorada */

:root {
    /* Colores principales - Más vibrantes y llamativos */
    --gold: #FFB800;
    --gold-hover: #FFCC33;
    --gold-glow: rgba(255, 184, 0, 0.5);
    --dark-bg: #1A0A05;
    --dark-card: #2D1810;
    --card-highlight: #3D2418;
    --text-white: #FFFFFF;
    --text-gray: #FFE4C4;
    --whatsapp-green: #25D366;
    
    /* Nuevos colores de acento para más impacto */
    --accent-red: #FF4136;
    --accent-orange: #FF6B35;
    --accent-cream: #FFF3E0;
    --gradient-hot: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    --gradient-gold: linear-gradient(135deg, #FFB800 0%, #FFCC33 50%, #FFB800 100%);
    
    --section-padding: 100px 8%;
    --transition: 0.4s ease;
    --shadow-light: 0 5px 15px rgba(20, 10, 10, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(255, 184, 0, 0.4);
}

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

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body { 
    background-color: var(--dark-bg); 
    color: var(--text-white); 
    font-family: 'Arvo', serif; 
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animaciones de entrada */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Focus visible para accesibilidad */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Skip to content (accesibilidad) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* TipografÃ­a Mejorada */
h1, h2, h3, h4 { 
    font-family: 'Fredoka One', cursive; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 5.5rem); 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

h2 { 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    margin-bottom: 40px; 
    background: var(--gradient-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

h3 { 
    font-size: clamp(1.4rem, 3vw, 1.8rem); 
    color: var(--gold); 
    letter-spacing: 1px; 
    margin-bottom: 15px;
}

h4 { 
    font-size: 1.2rem; 
    color: #fff; 
    margin-bottom: 20px; 
}

p { 
    color: var(--text-gray); 
    font-size: 1.05rem; 
    line-height: 1.9; 
    margin-bottom: 15px; 
}

/* Botones Mejorados */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    border: none;
    background: var(--gradient-hot);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 30px;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B35 100%); 
    transition: var(--transition); 
    z-index: -1;
}

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

.btn:hover { 
    color: #fff; 
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 184, 0, 0.4); 
    transform: translateY(-4px) scale(1.02);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: white;
}

.btn-whatsapp::before {
    background: #1da851;
}

.btn-whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Flotante Mejorado */
.whatsapp-float {
    position: fixed;
    width: 60px; 
    height: 60px;
    bottom: 30px; 
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover { 
    transform: scale(1.15); 
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); 
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Header Mejorado */
header {
    position: fixed; 
    top: 0; 
    width: 100%;
    padding: 30px 8%;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    z-index: 999;
    transition: all 0.3s ease;
    background: rgba(57, 28, 16, 0.8);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 8%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

/* Logo Mejorado */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: none;
    transition: var(--transition);
    margin: -15px 0;
}

.logo-container:hover .logo-img {
    border-color: var(--gold-hover);
    box-shadow: 0 0 15px var(--gold-glow);
}

.logo-text { 
    font-family: 'Fredoka One', cursive; 
    font-size: 1.8rem; 
    color: #fff; 
    letter-spacing: 1px;
}

.logo-text span { 
    background: var(--gradient-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

/* NavegaciÃ³n Mejorada */
nav ul { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
}

nav a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    transition: all 0.3s ease; 
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

/* Menú Hamburguesa */
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    z-index: 1001;
}

.menu-toggle span { 
    width: 30px; 
    height: 3px; 
    background: var(--gold); 
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--gold), 0 0 15px var(--gold-glow);
    animation: menuGlow 1.5s ease-in-out infinite;
}

.menu-toggle span:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-toggle span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes menuGlow {
    0%, 100% {
        box-shadow: 0 0 5px var(--gold), 0 0 10px var(--gold-glow);
        background: var(--gold);
    }
    50% {
        box-shadow: 0 0 15px var(--gold), 0 0 30px var(--gold), 0 0 45px var(--gold-glow);
        background: var(--gold-hover);
    }
}

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

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

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

/* Hero Section Mejorado */
.hero { 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 180px 8% 100px; 
    min-height: 100vh; 
    background: radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.15) 0%, var(--dark-bg) 60%),
                radial-gradient(circle at 20% 80%, rgba(255, 184, 0, 0.1) 0%, transparent 50%),
                var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite;
}

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

.hero-text { 
    flex: 1; 
    z-index: 2; 
    max-width: 600px;
}

.hero-slogan {
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    animation: slideInDown 0.8s ease forwards;
    opacity: 0;
}

.hero-text h1 {
    animation: slideInLeft 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-text h1 span { 
    -webkit-text-stroke: 1px var(--gold); 
    color: transparent; 
    display: block;
}

.hero-text > p:last-of-type {
    animation: slideInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

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

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

.hero-img { 
    flex: 1; 
    display: flex; 
    justify-content: center; 
    z-index: 1;
    animation: fadeInRight 1s ease;
}

.hero-img img { 
    width: 100%; 
    max-width: 550px; 
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)); 
    animation: float 6s ease-in-out infinite;
}

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

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

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

/* Secciones Generales */
.main-content { 
    padding-top: 120px; 
    min-height: 80vh; 
}

.section-padding { 
    padding: var(--section-padding); 
}

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

.section-separator { 
    height: 3px; 
    background: var(--gradient-hot); 
    margin: 60px auto; 
    max-width: 50%; 
    opacity: 0.8;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

/* Grid de Productos Mejorado */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    max-width: 1400px;
    margin: 60px auto 0;
}

.product-card { 
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--card-highlight) 100%);
    padding: 0;
    border-radius: 25px; 
    text-align: center; 
    border: 2px solid rgba(255, 184, 0, 0.2); 
    transition: all 0.4s ease; 
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card:hover { 
    border-color: var(--accent-orange); 
    transform: translateY(-12px); 
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.35), 0 0 30px rgba(255, 184, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-hot);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-img-container {
    padding: 40px 25px 20px;
    background: rgba(0, 0, 0, 0.1);
}

.product-img { 
    width: 100%;
    height: 300px; 
    object-fit: contain; 
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-content {
    padding: 30px 25px;
}

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

.product-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.feature {
    background: rgba(255, 107, 53, 0.15);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 107, 53, 0.35);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.package-info { 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-hot); 
    color: #fff; 
    padding: 12px 28px; 
    border-radius: 25px; 
    font-size: 0.95rem; 
    font-weight: 700; 
    margin-top: 15px; 
    border: none;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.35);
}

/* SecciÃ³n Nosotros Mejorada */
.nosotros { 
    padding: var(--section-padding); 
}

.nosotros-content { 
    max-width: 1000px; 
    margin: 0 auto; 
}

.quality-intro {
    margin-bottom: 60px;
}

.info-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--card-highlight) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 53, 0.25);
    margin-bottom: 40px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25), 0 0 25px rgba(255, 184, 0, 0.15);
}

.info-icon {
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
}

.info-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

.info-card p {
    text-align: center;
    font-size: 1.1rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.valor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.12);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    transition: var(--transition);
}

.valor-item:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: var(--accent-orange);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.valor-icon {
    width: 10px;
    height: 10px;
    background: var(--gradient-hot);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.valor-text {
    color: var(--text-white);
    font-weight: 600;
}

/* SecciÃ³n Calidad Mejorada */
.why-us { 
    padding: var(--section-padding); 
}

.why-us-content { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.quality-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--card-highlight) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 184, 0, 0.2);
    transition: var(--transition);
    text-align: center;
}

.quality-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3), 0 0 20px rgba(255, 184, 0, 0.15);
}

.quality-icon {
    color: var(--accent-orange);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
}

.quality-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.quality-card p {
    font-size: 1rem;
    line-height: 1.8;
}

/* SecciÃ³n Contacto Mejorada */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
}

.contact-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--card-highlight) 100%);
    padding: 45px 35px;
    border-radius: 25px;
    border: 2px solid rgba(255, 184, 0, 0.25);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-card:hover {
    border-color: var(--whatsapp-green);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.whatsapp-card .contact-icon {
    color: var(--whatsapp-green);
}

.contact-icon {
    color: var(--gold);
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-detail {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0;
}

.location-section {
    max-width: 800px;
    margin: 60px auto 0;
}

.location-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--card-highlight) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 184, 0, 0.25);
    text-align: center;
}

/* Footer Mejorado */
footer { 
    background: linear-gradient(to top, #000, var(--dark-bg)); 
    padding: 80px 8% 30px; 
    border-top: 3px solid;
    border-image: var(--gradient-hot) 1;
    margin-top: 80px; 
}

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

.footer-col h4 { 
    color: var(--gold); 
    margin-bottom: 25px; 
    font-family: 'Fredoka One', cursive; 
    letter-spacing: 1px;
    font-size: 1.1rem;
}

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

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

.footer-col a { 
    color: var(--text-gray); 
    text-decoration: none; 
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover { 
    color: var(--gold); 
    padding-left: 8px; 
}

/* Estilos para redes sociales */
.social-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links li a svg {
    transition: all 0.3s ease;
}

.social-links li a:hover svg {
    transform: scale(1.2);
}

/* Color específico para cada red social al hacer hover */
.social-links li:first-child a:hover {
    color: #1877F2;
}

.social-links li:first-child a:hover svg {
    fill: #1877F2;
}

.social-links li:last-child a:hover {
    color: #E4405F;
}

.social-links li:last-child a:hover svg {
    fill: #E4405F;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
}

.copyright { 
    text-align: center; 
    margin-top: 50px; 
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding-top: 30px;
    font-size: 0.9rem; 
    color: #888; 
}

/* Accesibilidad - Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Utilidades */
img { 
    max-width: 100%; 
    height: auto; 
    display: block;
}

/* Responsive Mejorado */
@media (max-width: 1100px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px 6%;
    }
    
    .hero { 
        flex-direction: column; 
        text-align: center; 
        padding: 180px 6% 80px; 
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-img { 
        margin-top: 40px; 
    }
    
    .hero-img img {
        max-width: 400px;
    }
    
    nav { 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 80%; 
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, #1a0f08 0%, #000 100%); 
        flex-direction: column; 
        justify-content: center;
        transition: 0.4s; 
        border-left: 2px solid var(--gold);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }
    
    nav.active { 
        right: 0; 
    }
    
    nav ul { 
        flex-direction: column; 
        align-items: center;
        gap: 30px;
    }
    
    nav a {
        font-size: 1.1rem;
    }
    
    .menu-toggle { 
        display: flex; 
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    header.scrolled {
        padding: 12px 5%;
    }
    
    .logo-img {
        width: 110px;
        height: 110px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    h2 { 
        font-size: 2rem; 
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-img {
        height: 250px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 5%;
    }
    
    .hero {
        padding: 160px 5% 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 35px;
        font-size: 0.85rem;
    }
    
    .product-badge {
        top: 15px;
        right: 15px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Imagen de fondo para tarjeta Misión */
.card-mision {
    position: relative;
    background-image: url('imagenes/papavision.jpg'); /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-mision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85); /* Oscurece para que el texto sea legible */
    border-radius: inherit;
    z-index: 0;
}

.card-mision > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Visión */
.card-vision {
    position: relative;
    background-image: url('imagenes/papamision.png'); /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-vision > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Valores */
.card-valores {
    position: relative;
    background-image: url('imagenes/papavalores.jpg'); /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-valores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-valores > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Calidad Garantizada */
.card-calidad {
    position: relative;
    background-image: url('imagenes/papacalida.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-calidad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-calidad > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Rapidez y Eficiencia */
.card-rapidez {
    position: relative;
    background-image: url('imagenes/papaeficiencia.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-rapidez::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-rapidez > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Materia Prima Local */
.card-materia {
    position: relative;
    background-image: url('imagenes/papaprima.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-materia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-materia > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Atención Personalizada */
.card-atencion {
    position: relative;
    background-image: url('imagenes/papaatencion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-atencion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-atencion > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Procesos Modernos */
.card-procesos {
    position: relative;
    background-image: url('imagenes/papaproceso.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-procesos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-procesos > * {
    position: relative;
    z-index: 1;
}

/* Imagen de fondo para tarjeta Sabor Natural */
.card-sabor {
    position: relative;
    background-image: url('imagenes/papasabor.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-sabor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    border-radius: inherit;
    z-index: 0;
}

.card-sabor > * {
    position: relative;
    z-index: 1;
}

/* Custom Styles from inline */
.section-subheader {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    max-width: 800px;
    margin: 20px auto 0;
    color: var(--text-gray);
    text-align: center;
}

.cta-container {
    text-align: center;
    margin-top: 80px;
}

.cta-title {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cta-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-description {
    margin-top: 20px;
}

.footer-tagline {
    margin-top: 15px;
    font-style: italic;
    color: var(--gold);
}

.product-features-vertical {
    flex-direction: column;
    align-items: center;
}
