body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Un blanco ligeramente más suave */
}

/* Sección Héroe */
.hero-section {
    background-color: #2B3A67; /* Azul oscuro de la captura */
    background-image: linear-gradient(rgba(43, 58, 103, 0.9), rgba(43, 58, 103, 0.95)), url('https://images.unsplash.com/photo-1554679665-f5537f187268?q=80&w=2574&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}


/* Estilos de Botones Globales */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem; /* 6px */
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #F97316; /* Naranja */
    color: white;
}
.btn-primary:hover {
    background-color: #EA580C; /* Naranja más oscuro */
}

.btn-secondary {
    background-color: #1F2937; /* Gris oscuro */
    color: white;
}
.btn-secondary:hover {
    background-color: #374151;
}


/* Estilos para Modales */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 0.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #9ca3af;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-button:hover,
.close-button:focus {
    color: #1f2937;
}

/* Estilo para simular el BUG de superposición de texto */
.product-card-bug h3 {
    white-space: nowrap;
    overflow: visible;
}
