﻿body{
    background: #a34aa5;
    font-family: 'Roboto';
    font-family: "Roboto", sans-serif;
}

.btn-flotante {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
    z-index: 999;
}

.btn-flotante:hover {
    transform: scale(1.1);
}

/* Botón derecha */
.btn-llamada {
    right: 20px;
    background: #28a745; /* verde */
}

/* Botón izquierda */
.btn-correo {
    left: 20px;
    background: #007bff; /* azul */
}

.logotipo img{
    width: 100%;
}

.leyenda1{
    text-align: center;
    color: white;
    font-size: 50px;
    font-weight: bold;
}


.menuSup{
    background: #ffffff;
    text-align: center;
}
.menuSup a{
    color: gray;
}

.menu{
    border-right: 1px solid #1bc1ff;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    padding: 20px 10px;
}
.menu:hover{
    color: #1bc1ff;
}

.menuInicio{
    border-left: 1px solid #1bc1ff;
}


.textos{
    text-align: center;
    font-weight: bold;
    margin: 30px 0 50px;
}
.textos a{
    color: white;
}

.t1{
    font-size: 32px;
    color: white;
}

.t2{
    color: white;
    font-size: 24px;
    margin: 40px 0;
}

.t3{
    font-size: 32px;
    color: #f5f900;
}


.titulo{
    text-align: center;
    color: white;
    font-size: 33px;
    margin-bottom: 30px;
}


.seccion{
    font-size: 24px;
    color: #f5f900;
}
.seccion a{
    color: white;
}

.imagen img{
    width: 100%;
}


.lineaNegra{
    background-color: black;
    height: 120px;
}


.formulario{
    color: white;
    font-size: 22px;
    line-height: 32px;
}
.formulario a{
    color: white;
}
.formulario img{
    width: 100%;
}
.formulario iframe{
    width: 100%;
    height: 220px;
}

input, textarea{
    padding: 20px 10px !important;
}

.form-group{
    margin-bottom: 30px;
}


.audio-button {
    display: flex;
    gap: 6px;
    cursor: pointer;
    width: 40px;
    height: 18px;
    align-items: flex-end;
}

.bar {
    width: 6px;
    height: 2px;
    background: black;
    animation: none;
    transition: height 0.2s ease;
}

.playing .bar:nth-child(1) {
    animation: bounce 0.6s infinite ease-in-out;
}
.playing .bar:nth-child(2) {
    animation: bounce 0.6s infinite ease-in-out 0.1s;
}
.playing .bar:nth-child(3) {
    animation: bounce 0.6s infinite ease-in-out 0.2s;
}
.playing .bar:nth-child(4) {
    animation: bounce 0.6s infinite ease-in-out 0.3s;
}

@keyframes bounce {
    0%, 100% { height: 10px; }
    50% { height: 35px; }
}


footer{
    background: black;
    text-align: center;
    color: white;
    font-size: 20px;
    padding: 12px 0;
}
footer span{
    width: 100%;
    text-transform: uppercase;
    color: rgb(122, 122, 122);
    font-size: 28px;
    display: inline-block;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .textos img{
        width: 100%;
    }
    .leyenda1{
        line-height: 60px;
    }
}

@media screen and (max-width:576px){
    
}


h1, h2, h3, h4, h5 {
    margin: 0;        /* Elimina los márgenes por defecto */
    padding: 0;       /* Elimina el padding (si hubiera) */
    font-size: inherit; /* Hereda el tamaño de fuente del padre */
    font-weight: normal; /* Quita la negrita */
    line-height: normal; /* Restaura la altura de línea */
}