:root {
    --main-color: #1EADBD;
    --hover-effect: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --text-glow: 0 0 15px currentColor;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #C2714A;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.container {
    position: relative;
    min-height: 100vh;
    padding: 20px;
    overflow: hidden;
}

.background-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    background: #C2714A url('images/fondo.png') center/cover;
    z-index: 0;
}

.logo-block {
    width: 600px;
    height: 300px;
    margin: 0 auto 20px;
    overflow: hidden;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.logo-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 25vh;
    padding-bottom: 50px;
}

.name {
    font-size: 2.8rem;
    margin: 15px 0;
    animation: textGlow 2s ease infinite alternate;
    letter-spacing: 2px;
}

.slogan {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideIn 1s ease-out;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    padding: 18px;
    background: rgba(255,255,255,0.08);
    border: 2px solid var(--main-color);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: var(--hover-effect);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn:hover {
    background: var(--main-color);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(var(--text-glow));
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    grid-column: 1 / -1;
}

.show-content {
    max-height: 1000px;
    padding: 25px 0;
}

.qr-code {
    width: 180px;
    margin: 15px auto;
    display: block;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-share img {
    width: 45px;
    transition: transform 0.3s ease;
}

.social-share a:hover img {
    transform: scale(1.15);
}

.pago-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 10px;
}

.pago-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.copy-btn {
    padding: 8px 15px;
    background: var(--main-color);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: var(--hover-effect);
}

.copy-btn:hover {
    background: #1a8d9a;
}

.titular {
    text-align: center;
    font-weight: bold;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.btn.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

@media (max-width: 768px) {
    .button-grid {
        grid-template-columns: 1fr;
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
    
    .logo-block {
        width: 100%;
        height: auto;
        max-width: 600px;
        max-height: 300px;
    }
    
    .btn {
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Ocultar Productos Web en mobile */
    .productos-web {
        display: none;
    }
}

@media (min-width: 769px) {
    /* Ocultar Llamar y Productos en desktop */
    .llamar,
    .catalogo {
        display: none;
    }
    
    /* Mostrar Productos Web en desktop */
    .productos-web {
        display: flex;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px transparent; }
    to { text-shadow: var(--text-glow); }
}

@keyframes slideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 0.9; }
}