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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo h2 {
    color: #d4822a;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4822a;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 2rem;
    background: linear-gradient(135deg, #f7bd78 0%, #f0e68c 100%);
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tagline {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-tagline h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #d4822a;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #2c1810;
    font-weight: 500;
    font-style: italic;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: #5d4e37;
    margin-bottom: 2rem;
}

.cta-button {
    background: #d4822a;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #b8691e;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-placeholder {
    font-size: 15rem;
    animation: float 3s ease-in-out infinite;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

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

/* Productos Section */
.productos {
    padding: 80px 0;
    background: #fff;
}

/* Proveedor Floating Card */
.proveedor-floating {
    position: relative;
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.proveedor-card {
    background: linear-gradient(135deg, #954E3C 0%, #7A3E2F 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    animation: float-card 3s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(149, 78, 60, 0.4);
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.proveedor-left {
    flex: 0 0 200px;
    text-align: center;
}

.proveedor-center {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.proveedor-right {
    flex: 0 0 180px;
    text-align: center;
}

.proveedor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 2s infinite;
}

.proveedor-badge {
    background: #fff;
    color: #d4822a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    animation: wiggle 1s ease-in-out infinite;
}

.proveedor-discount {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.proveedor-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.proveedor-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.proveedor-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.proveedor-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

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

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.2); }
    to { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.4); }
}

/* Frases Mágicas Section */
.frases-magicas {
    padding: 60px 0;
    background: linear-gradient(135deg, #954E3C 0%, #7A3E2F 100%);
    color: white;
    text-align: center;
}

.frase-container {
    max-width: 800px;
    margin: 0 auto;
}

.frase-texto {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 1;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease-in-out;
}

.frase-mobile {
    animation: glow-mobile 2s ease-in-out infinite alternate;
    font-size: 1.6rem;
}

@keyframes glow-mobile {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.3); }
    to { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.6); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateY(20px); }
    20%, 80% { opacity: 1; transform: translateY(0); }
}

.productos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 3rem;
}

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

.producto-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.producto-card:hover {
    transform: translateY(-10px);
}

.producto-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.producto-card h3 {
    color: #2c1810;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.producto-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.precio {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4822a;
}

/* Nosotros Section */
.nosotros {
    padding: 80px 0;
    background: #f7bd78;
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nosotros-text h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

.nosotros-text p {
    font-size: 1.1rem;
    color: #5d4e37;
    margin-bottom: 1.5rem;
}

.nosotros-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.feature h4 {
    color: #2c1810;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
}

/* Contacto Section */
.contacto {
    padding: 80px 0;
    background: linear-gradient(135deg, #954E3C 0%, #7A3E2F 100%);
    color: white;
}

.contacto h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contacto-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #d4822a;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contacto-item span {
    font-size: 1.5rem;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto-form input,
.contacto-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.submit-btn {
    background: #d4822a;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #b8691e;
}

/* Footer */
.footer {
    background: #1a0f08;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.visitor-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #d4822a;
    font-weight: 600;
}

.counter-icon {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4822a;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #d4822a;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 9999;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        padding: 0.5rem 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline h3 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cookie-placeholder {
        font-size: 8rem;
    }
    
    .nosotros-content,
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .proveedor-card {
        margin: 0 1rem;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .proveedor-left,
    .proveedor-center,
    .proveedor-right {
        flex: none;
    }
    
    .proveedor-discount {
        font-size: 2.5rem;
    }
    
    .frase-texto {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}