body {
    margin: 0px;
    background-image: url("../imagenes/Grupo_49_1.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/*Menu*/
#header {
    z-index: 999;
    padding: 10px 30px;
    background-color: #E3B4B4;
    width: 100%;
    height: 60px; /* Altura fija */
    font-style: italic;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    color: white;
    align-items: center; /* Centrar verticalmente */
    justify-content: space-between;
    box-sizing: border-box; /* Para que el padding no rompa el ancho */
}
#header p {
    font-size: 35px; /* Ajustado un poco */
    margin: 0;
    font-weight: bold;
}

#menu {
    display: flex;
    gap: 15px; /* Espacio entre enlaces */
}

#menu a {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

#menu a:hover {
    color: #8B384A;
    text-decoration: underline;
}

.portada {
    height: 40rem;
    background-image: url(/imagenes/portada.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#contenedor {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.titulo {
    text-align: center;
    font-size: 36px;
    font-family: "Poiret One";
    color: #8B384A;
    text-align: center;
    line-height: 30px;
    padding-bottom: 27px;
    letter-spacing: 3.6px;
}

.especialidades {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: nowrap;

}

.especialidades img {
    border-radius: 10px;
    max-width: 350px;
}

.especialidades p {
    font-family: sans-serif;
    
    line-height: 24px !important;
}

.especialidades table {
    margin-top: 0;
    font-size: 16px;
    color: #4F2D34;
    font-family: Montserrat-Regular;
    font-weight: normal;
}
.especialidades td{
            vertical-align: top;
        padding-right: 64px;
        padding-right: 25px;
}

.pasteles {
    display: flex;
    justify-content: space-around;

}

.mision{
    display: flex;
    justify-content: space-around;
    padding-bottom: 50px;
}
.mision img{
    border-radius: 150px;
}

#seccion4 {
    width: 100%;
    height: 200px;
    background-color: rgb(44, 58, 59);
    margin-top: 30px;
}


#seccion4 {
    background-color: rgb(44, 58, 59);
    width: 100%;
    height: 200px;
    margin-top: 0px;
    text-align: center;
    color: white;
}

a:link {
    color: white;
    text-decoration: none;
    /*Esto sirve para quitar el subrayado de los links*/
}

a:hover {
    color: rgb(255, 149, 255);
    text-decoration: underline;
    font-weight: bold;
    font-size: 16px
}

/* =========================================
NUEVOS ESTILOS PARA LAS PÁGINAS INTERNAS
========================================= */

/* Caja blanca semitransparente para que el texto se lea bien sobre el fondo */
.contenido-texto {
    background-color: rgba(255, 255, 255, 0.95);
    width: 85%;
    max-width: 1000px;
    margin: 0 auto 50px auto; /* Centrado y con margen abajo */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    color: #4F2D34;
    font-family: sans-serif;
}

/* Títulos específicos para las secciones internas */
.titulo-seccion {
    text-align: center;
    font-size: 36px;
    font-family: "Poiret One", sans-serif; /* Usamos tu misma fuente */
    color: #8B384A;
    margin-bottom: 30px;
    border-bottom: 2px solid #E3B4B4;
    padding-bottom: 10px;
}

/* Párrafos generales más legibles */
.contenido-texto p {
    line-height: 1.6;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 15px;
}

/* --- ESTILOS PARA PRODUCTOS Y SERVICIOS (TARJETAS) --- */

.grid-productos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra las tarjetas */
    gap: 30px; /* Espacio entre tarjetas */
}

.tarjeta {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s; /* Efecto suave al pasar el mouse */
}

.tarjeta:hover {
    transform: scale(1.03); /* Crece un poquito cuando pasas el mouse */
}

.tarjeta img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Recorta la imagen para que no se deforme */
    border-radius: 5px;
    margin-bottom: 10px;
}

.tarjeta h4 {
    color: #8B384A;
    margin: 10px 0;
    font-size: 20px;
}

/* =========================================
   NUEVO: ESTILOS PARA MENÚ DESPLEGABLE
   ========================================= */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: white;
    padding: 0;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-transform: uppercase;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black !important; /* Forza color negro para leer */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: sans-serif !important;
    font-size: 14px !important;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: #8B384A !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* =========================================
   NUEVO: ESTILOS PARA FORMULARIOS
   ========================================= */
.formulario-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.campo {
    margin-bottom: 15px;
    text-align: left;
}

.campo label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #8B384A;
}

.campo input, .campo select, .campo textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Para que el padding no rompa el ancho */
}

.btn-enviar {
    background-color: #8B384A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: 0.3s;
}

.btn-enviar:hover {
    background-color: #E3B4B4;
    color: #4F2D34;
}
.blog-card {
    border-left: 5px solid #8B384A;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.blog-fecha {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* Estilo para los Testimonios */
.testimonio-card {
    background-color: #fcebeb; /* Un rosa muy clarito */
    border-radius: 15px 15px 15px 0;
    padding: 25px;
    margin: 20px;
    position: relative;
    font-style: italic;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}
.cliente-nombre {
    font-weight: bold;
    color: #8B384A;
    text-align: right;
    display: block;
    margin-top: 10px;
    font-style: normal;
}

/* Estilo para Preguntas Frecuentes */
.faq-item {
    background-color: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-bottom: 2px solid #E3B4B4;
}
.pregunta {
    color: #8B384A;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}