@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype'); /* también puedes usar .woff o .woff2 */
}

@font-face {
  font-family: 'Maharlika';
  src: url('../fonts/Maharlika-Regular.ttf') format('truetype'); /* también puedes usar .woff o .woff2 */
}


:root {
    --color-principal: #007b7b;
    --color-secundario: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: var(--color-secundario);
    color: #333;
}

header {

    height: 90vh;

    /* Imagen de fondo */
    background-image: 
        linear-gradient(rgba(55, 1, 66, 0.3)), /* degradado negro semitransparente */
        url('../img/b1.jpg'); /* reemplaza con la ruta real */

    background-size: cover;        /* para que la imagen cubra todo el header */
    background-position: center;   /* centrado */
    background-repeat: no-repeat;  /* sin repetición */

    color: #370142;                  /* texto blanco para mejor contraste */
    padding: 60px 20px;            /* espacio interno */
    text-align: center;            /* texto centrado */
}

nav {
    background: var(--color-principal);
    color: white;
    text-align: center;
    padding: 0.8rem;
}

nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
}

section {
    padding: 2rem;
    background: white;
    margin: 1rem auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

section h2 {
    color: var(--color-principal);
    margin-bottom: 1rem;
}

.caracteristicas ul {
    list-style: disc;
    margin-left: 1.5rem;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 0.6em;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: var(--color-principal);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #005f5f;
}

.reseñas .reseña {
    background: #fafafa;
    padding: 1rem;
    border-left: 4px solid var(--color-principal);
    margin-bottom: 1rem;
}

footer {
    background: #004f4f;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}


.TC_blanco{
    color: white;
}

.F_mah{
    font-family: 'Maharlika', sans-serif;
}

.txt_sombra{
    text-shadow: 2px 2px 4px #000;
}

.FZ_4rem{
    font-size: 4rem;
}

.FZ_3rem{
    font-size: 3rem;
}

.FZ_2rem{
    font-size: 2rem;
}

.FZ_1_5rem{
    font-size: 1.5rem;
}

.FZ_1rem{
    font-size: 1rem;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}


.wp-100{
    width: 100%;
}

.wp-70{
    width: 70%;
}

.wp-60{
    width: 60%;
}

.hp-100{
    height: 100%;
}