/* BODY */
body {
    background-color: #E8D8C4;
    background-size: cover;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic';
}

/* HEADER */
.menu-principal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #561C24;
    padding: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.menu-bar {
    display: flex;
    align-items: center;
}

.menu-bar i {
    margin-right: 10px;
    cursor: pointer;
}

.enlaces ul {
    list-style: none;
    display: flex;
}

.enlaces ul li {
    margin-right: 10px;
}

.enlaces ul li a {
    text-decoration: none;
    color: whitesmoke;
    padding: 5px;
    transition: all 0.3s ease;
}

.enlaces ul li a:hover {
    background-color: #6D2932;
    border-radius: 5px;
}

.cerrar a {
    text-decoration: none;
    color: #000;
    padding: 5px;
    background-color: #af4c4c;
    color: #fff;
    border-radius: 5px;
}

.cerrar a:hover {
    background-color: #a04545;
}

#btnMenuOpen {
    display: none;
    cursor: pointer;
}

/* SERVICIOS */
#servicios {
    margin-top: 20px;
}

.servicios-titulos {
    text-align: center;
    margin-bottom: 30px;
}

.subtitulos {
    color: #561C24;
    font-size: 24px;
}

.titulos {
    color: #561C24;
    font-size: 36px;
    font-weight: bold;
}

.servicios-container {
    display: flex;
    justify-content: center;
}

.tabla {
    width: 40%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tabla th,
.tabla td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ccc;
    text-transform: uppercase;
}

.tabla th {
    background-color: #6D2932;
    font-weight: bold;
    color: whitesmoke;
}

.tabla tr:nth-child(even) {
    background-color: #F2ECE6;
}

.tabla tr:hover {
    background-color: #D9C4B0;
}

.captura {
    margin-top: 20px; /* Ajusta el margen superior según sea necesario */
    text-align: center;
}

.captura button {
    background-color: #3498db; /* Color azul */
    color: #fff; /* Color del texto */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
}

.captura form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}



