@charset "utf-8";
/* CSS Document */


a {color: #3BC4FF; text-decoration: underline;}
a:hover {color: #ffffff; text-decoration: none;}

a.pie {color: #ffffff; font-weight: 400; text-decoration: underline;}
a.pie:hover {color: #ffffff; text-decoration: none;}

a.header {color: #016DD9; font-weight: 600; text-decoration: underline;}
a.header:hover {color: #000033; text-decoration: none;}

/*FUENTES*/
.h1 {
    color: #ffffff;
    font-size: 35px;
    font-weight: normal;
	font-family: 'Roboto', sans-serif;
}
.h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
	font-family: 'Roboto', sans-serif;
}
.fuente25blanca {
    color: #FFFFFF;
    font-style: normal;
	font-size: 25px;
    font-weight: 500;
	font-family: 'Roboto', sans-serif;
}
.fuente20blanca {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 20px;
    word-spacing: 2px;
	font-family: 'Roboto', sans-serif;
}
.fuente22azul {
    color: #4997D2;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    word-spacing: 2px;
	font-family: 'Roboto', sans-serif;
}
.fuente18blanca {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 18px;
	font-family: 'Roboto', sans-serif;
}
.fuente20negra {
    color: #000000;
    font-size: 20px;
    font-weight: normal;
	font-family: 'Roboto', sans-serif;
}
.fuente18negra{
    color: #000000;
    font-size: 18px;
    font-weight: normal;
	font-family: 'Roboto', sans-serif;
}
.fuente20amarilla {
    color: #FFCE09;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

/*PADDINGS*/
.paddings {
    padding-top: 20px;
    padding-bottom: 20px;
}
.padding20abajo {
    padding-bottom: 20px;
}
.padding15arriba {
    padding-top: 15px;
}
.colchon {
    margin-left: 10px;
    margin-right: 10px;
}

/*ALINEACION*/
.centrado {
    text-align: center;
}
.derecha {
    text-align: right;
}
.sangria {
    margin-left: 20px;
    margin-right: 20px;
}
/*CENTRAR DIV DENTRO DE UN DIV*/
.flexbox {
	display: flex;
	align-items: center;
	justify-content: center;
}
/*FONDOS*/
.fondo-gris {
    background-color: #E5E5E5;
}
.fondo-negro {
    background-color: #000000;
}
.fondo-azulFB {
    background-color: #3b5998
}
.fondo-azulmarino {
    background-color: #000033;
}
.fondo-azulclaro {
    background-color: #0C8FC7;
}
.fondo-amarillo {
    background-color: #36AB0D;
}
.fondo-azuldegradado {
    background-color: #1D4A6E;
    background-image: -webkit-linear-gradient(270deg,rgba(28,76,112,1.00) 0%,rgba(29,74,110,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(28,76,112,1.00) 0%,rgba(29,74,110,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(28,76,112,1.00) 0%,rgba(29,74,110,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(28,76,112,1.00) 0%,rgba(29,74,110,1.00) 100%);
}
.sombra {
    -webkit-box-shadow: 0px 4px 8px #636363;
    box-shadow: 0px 4px 8px #363636;
    z-index: 100;
}
/*PARA EL BOTON FLOTANTE DE WHATSAPP*/
.whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 5px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 15px 20px;
            font-weight: 500;
            font-size: 14px;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }

        .whatsapp-float:focus {
            outline: none;
            text-decoration: none;
            color: white;
        }

        .whatsapp-icon {
            font-size: 24px;
            margin-right: 10px;
        }

        .whatsapp-text {
            white-space: nowrap;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .whatsapp-float {
                padding: 12px 15px;
                font-size: 12px;
                bottom: 120px;
                right: 5px;
            }
            
            .whatsapp-icon {
                font-size: 20px;
                margin-right: 8px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-float {
                padding: 10px 12px;
                font-size: 11px;
            }
            
            .whatsapp-text {
                display: none;
            }
            
            .whatsapp-icon {
                margin-right: 0;
                font-size: 24px;
            }
        }

        /* Animación de pulso opcional */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        .whatsapp-float.pulse {
            animation: pulse 2s infinite;
        }

        /* Contenido de ejemplo para la página */
        .content {
            padding: 20px;
            margin-bottom: 200px;
        }
