/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* CAMBIO: Fondo blanco y texto oscuro */
body {
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    /* Degradado Azul-Violeta visible para resaltar el cristal */
    background-attachment: fixed;
    /* Para que el fondo no se mueva al hacer scroll */
    color: #333333;
    min-height: 100vh;
}

/* Fondo específico para la página de Crunchyroll (Naranja y Blanco) */
body.crunchyroll-page {
    /* Usamos el naranja de la marca (#f47521) pero en degradado con blanco para no saturar */
    background: linear-gradient(135deg, #ffffff 20%, #f47521 120%);
    background-attachment: fixed;
    min-height: 100vh;
}
body.crunchyroll-page .product-page-container {
    background-color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    align-items: center;
    /* Fondo blanco semitransparente */
    background: rgba(255, 255, 255, 0.8); 
    /* Efecto de desenfoque del fondo */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Se queda fijo al bajar con el ratón */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #00d4ff;
}

/* CAMBIO: Enlaces del menú en gris oscuro */
nav a {
    color: #1a1a1a;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00d4ff;
}


/* Efecto al pasar el ratón */

/* Hero */
/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: transparent;
    /* Para ver el degradado del body */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #111;
}

/* Texto casi negro */

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    /* Gris medio para el subtítulo */
}

.btn-primary {
    background: #00d4ff;
    color: #fff;
    /* Texto blanco en el botón principal */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.3);
    /* Sombra brillante */
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Pricing Cards */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
}


/* CAMBIO: Tarjetas más anchas (de 300px a 360px) */
.card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 30px;
    border-radius: 24px;

    /* Importante para que el brillo no se salga de la tarjeta */
    overflow: hidden;

    /* AQUÍ ESTÁ EL CAMBIO */
    width: 360px;
    max-width: 100%;

    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Efecto de Brillo (Shine) */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    /* Empieza fuera */
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    z-index: 1;
    pointer-events: none;
    /* Para que no interfiera con clicks */
}

/* Estilo para las imágenes de los productos */
.card img {
    width: 170px;
    /* Un tamaño ideal, ni muy grande ni muy pequeño */
    height: auto;
    /* Mantiene la proporción original para no deformar */
    display: block;
    /* Comportamiento de bloque para centrar */
    margin: 15px auto;
    /* 15px de espacio arriba/abajo y centrado automático a los lados */
    object-fit: contain;
    /* Asegura que la imagen se vea completa */
    border-radius: 4px;
    /* Un ligero borde redondeado si la imagen es cuadrada */
}

/* Efecto Hover mejorado para fondo blanco */
/* Efecto Hover mejorado estilo cristal */
/* Efecto Hover mejorado estilo cristal */
.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.55);
}

/* Al pasar el ratón, el brillo cruza la tarjeta */
.card:hover::before {
    left: 125%;
}

/* Tarjeta destacada */
.card.popular {
    border: 2px solid #00d4ff;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.15);
}

.tag {
    background: #eee;
    color: #2c2c2c;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.card h2 {
    color: #222;
}

.price {
    font-size: 2.5rem;
    margin: 20px 0;
    font-weight: bold;
    color: #00d4ff;
}

.sub-title {
    color: #555;
    /* Texto gris oscuro */
    background-color: #f0f0f0;
    /* Fondo gris muy clarito */
    display: inline-block;
    /* Para que el fondo se ajuste al texto */
    padding: 4px 12px;
    /* Espacio interior para que respire */
    border-radius: 15px;
    /* Bordes redondeados */
    margin-top: 10px;
    /* CAMBIO CLAVE: Espacio positivo hacia arriba */
    margin-bottom: 10px;
    /* Espacio hacia abajo antes del precio */
    font-size: 0.85rem;
    font-weight: 600;
    /* Un poco más gordita la letra */
}

ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    color: #555;
}

ul li {
    margin-bottom: 10px;
}

/* Botón de compra */
/* Botón de compra */
.btn-buy {
    display: block;
    width: 100%;
    padding: 15px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;

    /* AGREGA ESTA LÍNEA: */
    margin-bottom: 10px;
    /* Esto separa los botones entre sí y del texto de abajo */
}

.btn-buy:hover {
    background: #00d4ff;
    color: #fff;
}

/* Sección de Soporte (Fondo gris muy suave para diferenciar) */
.support-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
}

.support-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.support-intro {
    color: #666;
    margin-bottom: 40px;
}

/* Estilo del Acordeón (FAQ) */
details {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    /* Borde gris claro */
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

details[open] {
    border-color: #00d4ff;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    /* Texto oscuro */
    list-style: none;
    position: relative;
    padding-right: 40px;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #00d4ff;
    transition: transform 0.3s;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    padding: 0 20px 20px 20px;
    color: #555;
    /* Texto gris medio para lectura fácil */
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Caja de Contacto */
.contact-box {
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.contact-box p {
    color: #666;
}

.btn-email {
    display: inline-block;
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-email:hover {
    background-color: #00d4ff;
    color: #fff;
}

.small-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    background: transparent; /* ANTES: #fff */
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Línea sutil sobre el azul */
    color: #444; /* Un gris más oscuro para que se lea sobre el azul */
    margin-top: auto;
}


/* --- ESTILOS DEL BLOG --- */

.blog-section {
    padding: 50px 20px;
    background-color: transparent; /* ANTES: #ffffff */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Evita que los divs se estiren */
    min-height: 70vh; /* Asegura que el azul se vea hasta abajo */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Se adapta a móviles y PC */
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}

.blog-card {
    background: rgba(255, 255, 255, 0.7); /* Blanco semitransparente */
    backdrop-filter: blur(10px); /* Desenfoque estilo cristal */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #00d4ff;
}

/* Placeholder para la imagen (o la imagen real si la pones) */
.blog-image-placeholder {
    height: 150px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

/* Si pones imágenes reales <img> dentro de .blog-card, usa esto: */
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    /* Recorta la imagen para que llene el hueco */
    margin: 0;
    /* Reseteamos el margen que pusimos para productos */
    border-radius: 0;
}

.blog-content {
    padding: 25px;
}

.blog-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #00d4ff;
    font-weight: bold;
    letter-spacing: 1px;
}

.blog-card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
    color: #333;
}

.blog-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-read {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.btn-read:hover {
    color: #00d4ff;
}


/* --- ESTILOS DEL TUTORIAL PASO A PASO --- */

.tutorial-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: transparent; /* ANTES: #f9f9f9 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Borde más sutil para el azul */
}

.tutorial-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-top: 10px;
}

.tutorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: transparent; /* Asegura que sea transparente */
}

.step {
    margin-bottom: 60px;
    position: relative;
    padding: 30px 30px 30px 70px; /* Añadimos un poco de aire */
    background: rgba(255, 255, 255, 0.4); /* Fondo blanco muy clarito */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* El círculo con el número */
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #00d4ff;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.4);
}

.step-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
}

.step-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Estilo de las imágenes del tutorial */
.tutorial-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    /* Borde gris para que no se mezcle con el fondo */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Sombra suave */
    display: block;
}

/* Caja final de "Comprar" */
.tutorial-cta {
    background-color: #eafbff;
    /* Fondo azul muy clarito */
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #bdeeff;
    margin-top: 60px;
}

.tutorial-cta h3 {
    margin-bottom: 10px;
    color: #007bb5;
}

.tutorial-cta p {
    margin-bottom: 20px;
    color: #555;
}

#planes .btn-buy:hover {
    background-color: #f47521 !important;
    /* Naranja Crunchyroll */
    border-color: #f47521 !important;
    /* Borde Naranja */
    color: white !important;
    /* Texto Blanco */
    transform: scale(1.05);
    /* Pequeño efecto de zoom "pop" */
    transition: all 0.3s ease;
    /* Suavidad en el cambio */
}

/* --- ANIMACIÓN DE BORDE NARANJA AL PASAR EL RATÓN --- */

/* 1. Añadimos suavidad a la tarjeta para que el cambio no sea brusco */
#planes .card {
    transition: border-color 0.3s ease, transform 0.3s ease;
}

/* 2. Al pasar el ratón (:hover), el borde se pone naranja */
#planes .card:hover {
    border-color: #f47521 !important;
    transform: translateY(-5px);
    /* Opcional: Levanta un poco la tarjeta para efecto 3D */
}

/* --- FAQ ESTILO CRUNCHYROLL (NARANJA) --- */

/* 1. Cambia el borde a naranja al pasar el ratón o al abrir */
#faq-anime details:hover,
#faq-anime details[open] {
    border-color: #f47521 !important;
}

/* 2. Cambia el signo "+" a naranja */
#faq-anime summary::after {
    color: #f47521 !important;
}



/* --- ESTILOS EXCLUSIVOS PÁGINA DE PRODUCTO INDIVIDUAL --- */

.product-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px; /* Un poco más de aire interno */
    background-color: #ffffff !important; /* Fuerza el fondo blanco de nuevo */
    border-radius: 20px; /* Bordes elegantes */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Sombra para que "flote" sobre el fondo */
}
/* El fondo exterior de la web será naranja */
body.crunchyroll-product-page {
    background: linear-gradient(135deg, #ffffff 20%, #f47521 120%);
    background-attachment: fixed;
}

/* Pero el cuadro de información interna será blanco */
body.crunchyroll-product-page .product-page-container {
    background-color: #ffffff !important;
}

/* Asegura que la galería y las listas también tengan su fondo original */
.product-gallery, .features-list {
    background-color: #ffffff;
}
/* Layout de 2 columnas (Izquierda Imagen | Derecha Info) */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50% para cada lado */
    gap: 50px;
    align-items: start;
}

/* --- Columna Izquierda: Imagen --- */
.product-gallery {
    position: relative;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.main-product-image {
    width: 100%;
    max-width: 400px;
    /* Que no se haga gigante */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
    /* Pequeño zoom al pasar el ratón */
}

/* Botón Compartir (Icono corazón/share en la esquina) */
.btn-share {
    position: absolute;
    top: 15px;
    right: 15px;
    /* Lo pongo a la derecha como en muchas tiendas, o left si prefieres */
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
    z-index: 10;
}

.btn-share:hover {
    color: #f47521;
    border-color: #f47521;
}

/* --- Columna Derecha: Detalles --- */
.product-details-panel {
    padding: 10px;
}

.stock-badge {
    background-color: #e6fdf0;
    color: #008a47;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.product-header h1 {
    font-size: 2rem;
    color: #222;
    margin: 15px 0 5px 0;
    line-height: 1.2;
}

.sku-ref {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Sección de Precio */
.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.current-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    /* O usa #f47521 si quieres el precio naranja */
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.discount-tag {
    background-color: #ff4d4d;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Info de envío */
.delivery-info p {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

/* Botón GIGANTE de compra */
.btn-buy-big {
    display: block;
    width: 100%;
    background-color: #00d4ff;
    /* Naranja tipo Amazon/PcComp */
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(244, 117, 33, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-buy-big:hover {
    background-color: #009fbf;
    transform: translateY(-2px);
}

.btn-buy-big .small {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 5px;
}

/* Lista de características */
.features-list {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.features-list h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.features-list ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}


/* --- RESPONSIVE (Móvil) --- */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        /* Una sola columna */
        gap: 30px;
    }

    .product-header h1 {
        font-size: 1.6rem;
    }

    .current-price {
        font-size: 2.2rem;
    }
    header {
        padding: 10px 20px;
        display: flex;
        justify-content: space-between; /* Logo a un lado, menú al otro */
        align-items: center;
        flex-direction: row !important; /* Mantiene logo y menú en la misma línea */
    }

    nav {
        display: grid !important;
        /* Crea dos columnas de igual tamaño */
        grid-template-columns: repeat(2, 1fr); 
        gap: 5px 15px; /* 5px de separación vertical, 15px horizontal */
        text-align: right;
    }

    nav a {
        margin-left: 0 !important;
        font-size: 0.85rem; /* Un poco más pequeña para que quepa bien */
        white-space: nowrap; /* Evita que las palabras se corten */
        padding: 2px 0;
    }
   
}

/* --- Estilo exclusivo para botones Crunchyroll --- */
.btn-crunchy {
    background-color: #f47521 !important;
    /* Color Naranja */
    box-shadow: 0 4px 15px rgba(244, 117, 33, 0.4) !important;
    /* Sombra naranja */
}

.btn-crunchy:hover {
    background-color: #d65f12 !important;
    /* Naranja más oscuro al pasar el ratón */
    box-shadow: 0 6px 20px rgba(244, 117, 33, 0.6) !important;
}

/* --- Botón Flotante WhatsApp --- */
.btn-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    /* Verde oficial WhatsApp */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    /* Para que quede siempre encima de todo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    /* Animación de latido */
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    /* Verde más oscuro al pasar ratón */
    transform: scale(1.1);
    /* Crece un poquito */
    text-decoration: none;
}

/* Animación de latido suave */
@keyframes pulse {
    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);
    }
}

/* Ajuste para móvil (un poco más pequeño para no molestar) */
@media (max-width: 768px) {
    .btn-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}

/* --- ESTILOS PARA MÓVIL (RESPONSIVE) --- */
@media (max-width: 768px) {

    /* 1. Reducimos el espacio a los lados del encabezado */
    header {
        padding: 15px 20px;
        /* Antes era 50px, ocupaba mucho espacio */
    }

    /* 2. Alineamos el menú a la derecha en columna */
    nav {
        display: flex;
        flex-direction: column;
        /* Pone los enlaces uno debajo de otro */
        align-items: flex-end;
        /* EMPUJA todo a la derecha */
        gap: 7px;
        /* Espacio pequeño entre cada palabra */
    }

    /* 3. Ajustamos el texto de los enlaces */
    nav a {
        margin-left: 0;
        /* Quitamos el margen izquierdo que tenías en PC */
        font-size: 0.9rem;
        /* Letra un poco más pequeña para que encaje bien */
        padding: 2px 0;
        /* Un poco de aire vertical */
    }
}

/* =========================================
   AJUSTES PARA MÓVIL (Márgenes laterales)
   ========================================= */
@media (max-width: 768px) {
    /* Añadimos "aire" a los lados en todas las secciones principales */
    header,
    .hero,
    section#productos,
    .support-container,
    footer,
    .legal-container,
    /* Para la página legal */
    .product-page-container

    /* Para las páginas de producto */
        {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Ajuste extra para que las tarjetas de producto no se peguen entre sí al reducirse */
    .pricing-container {
        padding: 15px 10px;
    }
}