/* ===========================
   🎨 COLORES Y FONDOS
=========================== */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

header,
.about-section,
form {
    background-color: #fff;
}

footer {
    background-color: #0F0E0E;
    color: #fff;
}

.buttom-Email,
.buttom-faq {
    background-color: #fff;
    color: #0F0E0E;
}

form button,
.button-home {
    background-color: #3498db;
    color: #fff;
}

.icon-questions {
    color: #3498db;
}

header,
summary,
h1,
.buttom-faq {
    color: #2c3e50;
}

.note-questions {
    color: #7f8c8d;
}

/* ===========================
   ✍️ TIPOGRAFÍA
=========================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header,
summary,
h1,
.buttom-faq {
    font-weight: 600;
}

/* ===========================
   🧱 LAYOUT Y ESPACIADO
=========================== */
button,
.nav,
details,
.producto {
    cursor: pointer;
    padding: 10px;
}

.icon-questions {
    margin-right: 10px;
}

form {
    padding: 20px;
    border-radius: 10px;
}

/* ===========================
   🌟 EFECTOS Y TRANSICIONES
=========================== */
.buttom-faq,
.button-home,
#container_section,
#container_questions_section {
    transition: all 0.3s;
}

.button-home:hover {
    transform: scale(1.05);
}

details:hover,
.buttom-faq:hover,
form {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ===========================
   🧩 FORMULARIO
=========================== */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
}

form button,
.button-home {
    border-radius: 5px;
}

/* ===========================
   ⚙️ DETALLES Y AJUSTES
=========================== */
/* Quitar la flecha en Firefox */
details summary {
    list-style: none;
}