/* Products Gonemo - Tarjetas de productos con tonos azules */

.products-gonemo-container {
 
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0F172B 0%, #1D293D 50%, #0F172B 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    min-height: 100%;
}
 
.products-gonemo-container::before {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     opacity: 0.3;
    pointer-events: none;
}

.products-gonemo-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

h2.products-gonemo-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.products-gonemo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
    width: 60%;
    margin: auto;
}

a.product-button.product-button-basic {
    color: white;
}
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
}

.product-card-pro {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.product-card-pro::before {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-header {
    text-align: center;
    margin-bottom: 20px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin: 15px 0;
    line-height: 1;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.product-period {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-features {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    list-style: none;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.product-features p {
    margin: 5px 0;
    color: #475569;
    font-weight: 500;
}

.product-action {
    text-align: center;
    margin-bottom: 30px;
}

.product-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    margin-top: 20px;
    width: 100%;
}

.product-button-basic {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
}

.product-button-basic:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.product-button-pro {
    background: #ffffff;
    color: #3b82f6;
    border-color: #3b82f6;
}

.product-button-pro:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.product-details {
    margin-top: 20px;
}

.product-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details li {
    padding: 8px 0;
    color: #475569;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
    line-height: 1.4;
}

.product-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.product-card-pro .product-details li::before {
    color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-gonemo-container {
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .products-gonemo-title {
        font-size: 2rem;
    }
    
    .products-gonemo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 20px 15px;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .product-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-gonemo-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .product-card {
        padding: 25px 15px;
    }
}