@charset "utf-8";

/* 1. RESET Y CONFIGURACIÓN BASE */
* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  background: #fff;
}

body {
  font-family: Helvetica, Verdana, sans-serif;
  font-size: 12px;
}

/* 2. CONTENEDOR PRINCIPAL (PC) */
#portadaanimadaindex {
  width: 95%;
  max-width: 960px;
  height: 550px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  animation: glowBorde 4s ease-in-out infinite alternate;
}

@keyframes glowBorde {
  0%   { box-shadow: 0 0 12px #ed3036, 0 0 20px #000; }
  50%  { box-shadow: 0 0 35px #ed3036, 0 0 60px #000; transform: scale(1.01); }
  100% { box-shadow: 0 0 12px #ed3036, 0 0 20px #000; }
}

/* 3. ELEMENTOS (PC) */
#escudounoindex {
  width: 231px; height: 231px;
  background: url(../img/escuindexuno.png) no-repeat center/contain;
  position: absolute; top: 93px; left: 50%; z-index: 2; opacity: 0;
  animation: entradaEscudoUno 1.5s ease forwards;
}

#escudodosindex {
  width: 356px; height: 356px;
  background: url(../img/escuindexdos.png) no-repeat center/contain;
  position: absolute; top: 30px; left: 50%; z-index: 1; opacity: 0;
  animation: entradaEscudoDos 2s ease forwards;
}

#amomarineraindex {
  width: 90%; max-width: 513px; height: 122px;
  background: url(../img/amoindex.png) no-repeat center/contain;
  position: absolute; left: 50%; z-index: 1; opacity: 0;
  animation: entradaAmoMarinera 1.0s ease-out forwards 1.0s;
}

#ingresar {
  font-size: 25px; font-weight: bold; color: #ff2b33;
  position: absolute; top: 230px; left: 780px; z-index: 10;
  text-align: center; opacity: 0; text-decoration: none;
  animation: fadeZoomIn 0.6s ease forwards 2.0s, latidoCorazon 1.5s ease-in-out infinite 2.6s;
}

/* ANIMACIONES PC */
@keyframes entradaEscudoUno {
  0%   { top: -70px; opacity: 0; transform: translateX(-50%) scale(0.5) rotate(720deg); }
  100% { top: 93px;  opacity: 1; transform: translateX(-50%) scale(1.0) rotate(0deg); }
}
@keyframes entradaEscudoDos {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.5) rotate(-720deg); }
  100% { top: 30px;  opacity: 1; transform: translateX(-50%) scale(1.0) rotate(0deg); }
}
@keyframes entradaAmoMarinera {
  0%   { top: -80px; opacity: 0; transform: translateX(-50%) scale(0.8) rotate(-5deg); }
  70%  { top: 400px; opacity: 1; transform: translateX(-50%) scale(1.05) rotate(3deg); }
  100% { top: 400px; opacity: 1; transform: translateX(-50%) scale(1) rotate(0deg); }
}
@keyframes fadeZoomIn { 0% { opacity: 0; transform: scale(0.5); } 100% { opacity: 1; transform: scale(1); } }
@keyframes latidoCorazon {
  0%, 70%, 100% { transform: scale(1);    color: #ff2b33; }
  14%           { transform: scale(1.1);  color: #ff2b33; }
  28%           { transform: scale(1);    color: #ff2b33; }
  42%           { transform: scale(1.15); color: #104ea3; }
}





/* ======================================= */
/* 4. VISTA CELULARES (AJUSTE MILIMÉTRICO)  */
/* ======================================= */
@media screen and (max-width: 800px) {
  
  #portadaanimadaindex {
    width: 95% !important;
    height: 900px !important;
    margin: 20px auto !important;
  }

  /* ESCUDO DOS (MARCO) */
  #escudodosindex { 
    width: 220px !important; 
    height: 220px !important;
    top: 110px !important; 
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation: entradaEscudoDosMovil 1.2s ease-out forwards;
  }

  /* ESCUDO UNO (CORAZÓN - TUS 154px SAGRADOS) */
  #escudounoindex { 
    width: 135px !important; 
    height: 135px !important;
    top: 154px !important; 
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 5 !important;
    animation: entradaEscudoUnoMovil 1s ease-out forwards 0.2s;
  }

  /* BANNER MARINERA MÓVIL */
  #amomarineraindex {
    width: 280px !important;
    height: 65px !important;
    top: 340px !important; 
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation: entradaAmoMarineraMovil 0.8s ease-out forwards 0.8s;
  }

  /* BOTÓN INGRESAR MÓVIL */
  #ingresar {
    width: 100% !important;
    left: 0 !important;
    top: 480px !important; 
    text-align: center !important;
    transform: none !important;
    animation: fadeZoomIn 0.5s ease forwards 1.4s, latidoCorazon 1.5s ease-in-out infinite 2.0s;
  }

  /* KEYFRAMES MÓVIL (Sincronizados con tus valores) */
  @keyframes entradaEscudoUnoMovil {
    0%   { top: 50px; opacity: 0; transform: translateX(-50%) scale(0.5); }
    100% { top: 154px; opacity: 1; transform: translateX(-50%) scale(1); }
  }
  @keyframes entradaEscudoDosMovil {
    0%   { top: 50px; opacity: 0; transform: translateX(-50%) scale(0.5); }
    100% { top: 110px; opacity: 1; transform: translateX(-50%) scale(1); }
  }
  @keyframes entradaAmoMarineraMovil {
    0%   { top: 280px; opacity: 0; transform: translateX(-50%) scale(0.8); }
    100% { top: 340px; opacity: 1; transform: translateX(-50%) scale(1); }
  }

 
}

/* ============================= */
/* fontface */
/* ============================= */


@font-face {
    font-family:"Gonzo";
    src:url("fuentes/gonzo6.eot?") format("eot"),
    url("fuentes/gonzo6.woff") format("woff"),
    url("fuentes/gonzo6.ttf") format("truetype"),
    url("fuentes/gonzo6.svg#Gonzo") format("svg");
    font-weight:normal;
	font-style:normal;
}

#tls {font-family: 'Gonzo';}

header {
	width: 100%;
	overflow:hidden;
	/*background: rgba(255, 0, 0, 0.97);*/
	background: #e20505;
	margin-bottom: 0px;
}

.wrapper {
	width: 90%;
/*	max-width: 960px;*/
max-width: 100%;
	margin: auto;
	overflow: hidden;

}


header .logoescudo{
	line-height: 120px;
    float: left;
    padding: 10px;
    width: 100px; 
    height: 100px; 
    
}


header .logo{
	color: #f2f2f2;
	font-size: 40px;
	line-height: 120px;
    float: left;
   /* padding: 10px;*/
    
}

header nav {
	float: right;
	line-height: 120px;
}

header nav a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	padding: 10px 10px;
	line-height: normal;
	font-size: 15px;
	/* font-weight: bold; */
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;

}

header nav a:hover {
	background: #2f0396;
	border-radius: 1px;
}

.header2 {
/*	max-width: 960px;*/
    max-width: 100%;
	position: fixed;
	height: 80px;
}


.header2 .logoescudo {
	line-height: 80px;
	/*src: "img/escudotlssolo100.png"; */  /* prueba tamaño */
    src: "img/escudoyomarinera60sba.png";  /* prueba tamaño */
    /*width: 50%; 
    height: 70px; */
   }  


.header2 .logo {
    font-size: 30px;
	line-height: 80px;
}



.header2 nav {
/*	float: right;*/
	line-height: 80px;
}

/* en 1080 se pasa al logo2*/
@media screen and (max-width: 1080px) {
    header .logoescudo,
	/*header .logo,*/
	header nav {
        font-size: 30px; /* para no partir TLS tex*/
		width: 100%;
		text-align: center;
		line-height: 40px;
	}

	header .logo{
	display: none;
	}
	.header2 {
		height: auto;
	}

    /*	
    .header2 .logo,
	.header2 nav {
		line-height: 50px; 
    }
    */
    
    /*.header2 .logoescudo,   al roler¿ar se va ek escudo*/
    .header2 .logo,
    .header2 nav {
		line-height: 50px;
	}

}

.social {
    position: fixed;
    left: 0;
    top: 200px; /* Ajustado a tu nueva preferencia */
    font-size: 2rem; /* Mantenemos tu tamaño de iconos original */
    z-index: 2000;
    
    /* Crucial para que el script de desaparición se vea suave */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.social ul {
    list-style: none;
}

.social ul li a {
    display: inline-block;
    color: white;
    background: #000;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;

}

.social ul li .icon-facebook { background: #3b5998;}
.social ul li .icon-youtube { background: #e83028;}
.social ul li .icon-tiktok { background: #ee1052;}
.social ul li .icon-twitter { background: #00abf0;}
.social ul li .icon-instagram { background: #515BD4;}
.social ul li .icon-whatsapp { background: #00BB2D;}
.social ul li .icon-mail2 { background: #666666;}

.social ul li a:hover {
    padding: 10px 30px;
    background: black;
}


/*CONTENIDO anterior*/
section#contenido{
	background: rgba(183,204,219,0.3);
	width: 960px;
	margin:0 auto;
}


/* --- 1. CONTENEDOR DE LA SECCIÓN --- */
section#contenidonuevo {
    background: rgba(183, 204, 219, 0.3);
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    overflow: visible;
}

/* --- 2. CONTENEDOR DE BANNERS (FLEX) --- */
.contenedor-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px; /* Espacio uniforme entre banners y botones */
    padding: 20px 0;
    max-width: 960px;
    margin: 0 auto;
}

/* Enlaces que envuelven los banners */
.contenedor-banners > a {
    text-decoration: none;
    display: block; 
    width: 100%; 
    margin: 0;
}

/* --- 3. ESTILO DE BANNERS --- */
.banner-main {
    width: 100%;
    max-width: 960px;
    height: 360px; 
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

.banner-main:hover {
    transform: scale(1.01);
}

/* IDs de Imágenes */
#internoreina2026   { background-image: url(../img/internoreina2026.webp); }
#aniversario        { background-image: url(../img/BandasyDanzas2026.webp); }
#sedesyprofestls    { background-image: url(../img/ClasesMarineraPresencialyOnline2026.webp); }
#resultadosN2025    { background-image: url(../img/resultadosN2025960360.jpg); }
#resultadosT2025    { background-image: url(../img/resultadosT2025960360.jpg); }
#resultadosL2025    { background-image: url(../img/resultados30cl2025960.jpg); }
#resultadosNN2025   { background-image: url(../img/resultadosNN2025960360.jpg); }
#tlspersonmeritoria { background-image: url(../img/TLSpersonalidadMeritoria2026.webp); }

/* --- 4. CONTENEDOR DE BOTONES --- */
.contenedor-botones {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 !important; /* Eliminamos márgenes para que el gap del padre mande */
}

/* --- 5. ESTILO UNIFICADO DE BOTONES (btn-tls) --- */
.btn-tls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
}

.btn-tls:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-tls i {
    margin-right: 10px;
    font-size: 18px;
}

/* Colores de Botones */
.btn-rojo    { background-color: #ea1c34; }
.btn-azul    { background-color: #214f9f; }
.btn-verde   { background-color: #25d366 !important; } /* WhatsApp oficial */
.btn-guinda  { background-color: #af0d0d; }
.btn-celeste { background-color: #3254fc; }
.btn-negro   { background-color: #3d3637; }

/* Botón especial de WhatsApp hover */
.btn-verde:hover {
    background-color: #128c7e !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Etiqueta de Título (No clickable) */
.btn-titulo {
    cursor: default;
    box-shadow: none !important;
    transform: none !important;
}

/* --- 6. RESPONSIVE (MÓVIL) --- */
@media screen and (max-width: 600px) {
    .banner-main {
        height: 250px;
        border-radius: 0;
    }

    .contenedor-botones {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .btn-tls {
        width: 90%;
        max-width: 300px;
    }
}



/* Animación de la Barra (Simplificada) */
#barratls {
    animation: animarbarratls 25s infinite;
}

@keyframes animarbarratls {
    0%, 10%  { background-image: url(../img/barra1.webp); }
    15%, 24% { background-image: url(../img/barra2.webp); }
    29%, 38% { background-image: url(../img/barra3.webp); }
	    41%, 51% { background-image: url(../img/barra4.webp); }
		    53%, 62% { background-image: url(../img/barra5.webp); }
			    65%, 73% { background-image: url(../img/barra6.webp); }
				    76%, 98% { background-image: url(../img/barra7.webp); }
    /* ... continúa la secuencia ... */
    100%     { background-image: url(../img/barra1.webp); }
}





/* otro escudo */
#portadaanimada{
	width: 960px;
	height:250px;
	background: #fff;	
	margin:0 auto;	
	position:relative;
	overflow:hidden;
	margin-top: 0.5em;
	box-sizing: border-box;	
}

/*animar escudo 1*/

#escudo1{
	width:107px;
	height:107px;
	background:url(../img/escufinal1.png) no-repeat;
	position:absolute;
	top:48px;
	left: 75px;
	z-index: 1;	
	animation: animarescudouno 7s ease infinite;
	-moz-animation: animarescudouno 7s ease infinite;
	-ms-animation: animarescudouno 7s ease infinite;
	-o-animation: animarescudouno 7s ease infinite;
	-webkit-animation: animarescudouno 7s ease infinite;
	
	}

@keyframes animarescudouno{
	0%{left: -163px; top:-70px;-webkit-transform: scale(.2)rotate(720deg);}
	20%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
	100%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
}
@-moz-keyframes animarescudouno{
	0%{left: -163px; top:-70px;-webkit-transform: scale(.2)rotate(720deg);}
	20%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
	100%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
}
@-o-keyframes animarescudouno{
	0%{left: -163px; top:-70px;-webkit-transform: scale(.2)rotate(720deg);}
	20%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
	100%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
}

@-webkit-keyframes animarescudouno{
	
	0%{left: -163px; top:-70px;-webkit-transform: scale(.2)rotate(720deg);}
	20%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
	100%{left: 75px; top:48px;-webkit-transform: scale(1.0)rotate(0deg);}
}



#escudo2{
	width:152px;
	height:151px;
	background:url(../img/escufinal2.png) no-repeat;
	position:absolute;
	top:25px;
	left: 50px;
	z-index: 1;

	animation: animarescudodos 15s infinite;
	-moz-animation: animarescudodos 15s infinite;
	-ms-animation: animarescudodos 15s infinite;
	-o-animation: animarescudodos 15s infinite;
	-webkit-animation: animarescudodos 15s infinite;

	}

@keyframes animarescudodos{
	0%{-webkit-transform: scale(0.9)rotate(-360deg);}
	20%{-webkit-transform: scale(1.0)rotate(0deg);}
	45%{-webkit-transform: scale(1.0)rotate(0deg);}
	75%{-webkit-transform: scale(0.9)rotate(-360deg);}
	100%{-webkit-transform: scale(0.9)rotate(-360deg);}
}
@-moz-keyframes animarescudodos{
	0%{-webkit-transform: scale(0.9)rotate(-360deg);}
	20%{-webkit-transform: scale(1.0)rotate(0deg);}
	45%{-webkit-transform: scale(1.0)rotate(0deg);}
	75%{-webkit-transform: scale(0.9)rotate(-360deg);}
	100%{-webkit-transform: scale(0.9)rotate(-360deg);}
}
@-o-keyframes animarescudodos{
	0%{-webkit-transform: scale(0.9)rotate(-360deg);}
	20%{-webkit-transform: scale(1.0)rotate(0deg);}
	45%{-webkit-transform: scale(1.0)rotate(0deg);}
	75%{-webkit-transform: scale(0.9)rotate(-360deg);}
	100%{-webkit-transform: scale(0.9)rotate(-360deg);}
}

@-webkit-keyframes animarescudodos{
	
	0%{-webkit-transform: scale(0.9)rotate(-360deg);}
	20%{-webkit-transform: scale(1.0)rotate(0deg);}
	45%{-webkit-transform: scale(1.0)rotate(0deg);}
	75%{-webkit-transform: scale(0.9)rotate(-360deg);}
	100%{-webkit-transform: scale(0.9)rotate(-360deg);}
}


/*TLF CEL 932322803*/
#telefono{
	width:134px;
	height:41px;
	background:url(../img/telefono.png) no-repeat;
	position:absolute;
	top:112px;
	left: 810px;
	
	animation: animartelefono 2s linear infinite;
	-moz-animation: animartelefono 2s linear infinite;
	-ms-animation: animartelefono 2s linear infinite;
	-o-animation: animartelefono 2s linear infinite;
	-webkit-animation: animartelefono 2s linear infinite;
	}

@keyframes animartelefono{
	0%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
	10%{left: 800px; top:195px;-webkit-transform: scale(1);}
	90%{left: 800px; top:195px;-webkit-transform: scale(1);}
	100%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
}
@-moz-keyframes animartelefono{
	0%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
	10%{left: 800px; top:195px;-webkit-transform: scale(1);}
	90%{left: 800px; top:195px;-webkit-transform: scale(1);}
	100%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
}
@-o-keyframes animartelefono{
	0%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
	10%{left: 800px; top:195px;-webkit-transform: scale(1);}
	90%{left: 800px; top:195px;-webkit-transform: scale(1);}
	100%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
}	

@-webkit-keyframes animartelefono{	
	0%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
	10%{left: 800px; top:195px;-webkit-transform: scale(1);}
	90%{left: 800px; top:195px;-webkit-transform: scale(1);}
	100%{left: 800px; top:195px;-webkit-transform: scale(0.8);}
}



/*FONDO TLS CON WEB ANIMADO*/
#fondo_animado{
	width:1024px;
	height:341px;
	background:url(../img/fondo-animado.jpg) no-repeat;
	position:absolute;
	top:1px;
	left: 1px;
	opacity: 0.8;
	
	animation: animarfondoanimado 15s ease infinite;
	-moz-animation: animarfondoanimado 15s ease infinite;
	-ms-animation: animarfondoanimado 15s ease infinite;
	-o-animation: animarfondoanimado 15s ease infinite;
	-webkit-animation: animarfondoanimado 15s ease infinite;

	}

@keyframes animarfondoanimado{
	0%{left: -45px; top:0px;}	
	35%{left: 0px; top:0px;}
	70%{left: 0px; top:-20px;}
	100%{left: -40px; top:0px;}
}
@-moz-keyframes animarfondoanimado{
	0%{left: -45px; top:0px;}	
	35%{left: 0px; top:0px;}
	70%{left: 0px; top:-20px;}
	100%{left: -40px; top:0px;}
}
@-o-keyframes animarfondoanimado{
	0%{left: -45px; top:0px;}	
	35%{left: 0px; top:0px;}
	70%{left: 0px; top:-20px;}
	100%{left: -40px; top:0px;}
}	
@-webkit-keyframes animarfondoanimado{	
	0%{left: -45px; top:0px;}	
	35%{left: 0px; top:0px;}
	70%{left: 0px; top:-20px;}
	100%{left: -40px; top:0px;}	
}


/*ESPECTACULOS ANIMADO*/

#espectaculos{
	width:107px;
	height:19px;
	background:url(../img/espectaculos.png) no-repeat;
	position:absolute;
	top:10px;
	left: 615px;
	z-index: 1;
	
	animation: animarespectaculo 5s linear infinite;
	-moz-animation: animarespectaculo 5s linear infinite;
	-ms-animation: animarespectaculo 5s linear infinite;
	-o-animation: animarespectaculo 5s linear infinite;
	-webkit-animation: animarespectaculo 5s linear infinite;
	}

@keyframes animarespectaculo{
	0%{left: 1500px; top:10px;}
	10%{left: 615px; top:10px;}	
	100%{left: 615px; top:10px;}
}
@-moz-keyframes animarespectaculo{
	0%{left: 1500px; top:10px;}
	10%{left: 615px; top:10px;}	
	100%{left: 615px; top:10px;}
}
@-o-keyframes animarespectaculo{
	0%{left: 1500px; top:10px;}
	10%{left: 615px; top:10px;}	
	100%{left: 615px; top:10px;}
}	

@-webkit-keyframes animarespectaculo{	
	0%{left: 1500px; top:10px;}
	10%{left: 615px; top:10px;}	
	100%{left: 615px; top:10px;}
}


/*ARTISITICOS ANIMADO*/
#artisticos{
	width:78px;
	height:15px;
	background:url(../img/artisticos.png) no-repeat;
	position:absolute;
	top:10px;
	left: 727px;
	z-index: 1;
	
	animation: animarartistico 5s linear infinite;
	-moz-animation: animarartistico 5s linear infinite;
	-ms-animation: animarartistico 5s linear infinite;
	-o-animation: animarartistico 5s linear infinite;
	-webkit-animation: animarartistico 5s linear infinite;

	}

@keyframes animarartistico{
	0%{left: 1500px; top:10px;}
	15%{left: 727px; top:10px;}	
	100%{left: 727px; top:10px;}
}
@-moz-keyframes animarartistico{
	0%{left: 1500px; top:10px;}
	15%{left: 727px; top:10px;}	
	100%{left: 727px; top:10px;}
}
@-o-keyframes animarartistico{
	0%{left: 1500px; top:10px;}
	15%{left: 727px; top:10px;}	
	100%{left: 727px; top:10px;}
}	

@-webkit-keyframes animarartistico{
	
	0%{left: 1500px; top:10px;}
	15%{left: 727px; top:10px;}	
	100%{left: 727px; top:10px;}
}


/*Y ANIMADO*/

#y{
	width:10px;
	height:15px;
	background:url(../img/y.png) no-repeat;
	position:absolute;
	top:14px;
	left: 810px;
	z-index: 1;
	
	animation: animary 5s linear infinite;
	-moz-animation: animary 5s linear infinite;
	-ms-animation: animary 5s linear infinite;
	-o-animation: animary 5s linear infinite;
	-webkit-animation: animary 5s linear infinite;

	}

@keyframes animary{
	0%{left: 1500px; top:14px;}
	20%{left: 810px; top:14px;}
	100%{left: 810px; top:14px;}
}
@-moz-keyframes animary{
	0%{left: 1500px; top:14px;}
	20%{left: 810px; top:14px;}
	100%{left: 810px; top:14px;}
}
@-o-keyframes animary{
	0%{left: 1500px; top:14px;}
	20%{left: 810px; top:14px;}
	100%{left: 810px; top:14px;}
}	

@-webkit-keyframes animary{
	
	0%{left: 1500px; top:14px;}
	20%{left: 810px; top:14px;}
	100%{left: 810px; top:14px;}
}

/*PALABRA CULTURALES ANIMADO*/
#culturales{
	width:86px;
	height:16px;
	background:url(../img/culturales.png) no-repeat;
	position:absolute;
	top:30px;
	left: 700px;
	z-index: 1;
	
	animation: animarculturales 5s linear infinite;
	-moz-animation: animarculturales 5s linear infinite;
	-ms-animation: animarculturales 5s linear infinite;
	-o-animation: animarculturales 5s linear infinite;
	-webkit-animation: animarculturales 5s linear infinite;

	}

@keyframes animarculturales{
	0%{left: 1500px; top:30px;}
	25%{left: 700px; top:30px;}
	100%{left: 700px; top:30px;}
}
@-moz-keyframes animarculturales{
	0%{left: 1500px; top:30px;}
	25%{left: 700px; top:30px;}
	100%{left: 700px; top:30px;}
}
@-o-keyframes animarculturales{
	0%{left: 1500px; top:30px;}
	25%{left: 700px; top:30px;}
	100%{left: 700px; top:30px;}
}	

@-webkit-keyframes animarculturales{
	
	0%{left: 1500px; top:30px;}
	25%{left: 700px; top:30px;}
	100%{left: 700px; top:30px;}
}


/*PALABRA DE ANIMADO*/
#de{
	width:20px;
	height:16px;
	background:url(../img/de.png) no-repeat;
	position:absolute;
	top:30px;
	left: 790px;
	z-index: 1;
	
	animation: animarde 5s linear infinite;
	-moz-animation: animarde 5s linear infinite;
	-ms-animation: animarde 5s linear infinite;
	-o-animation: animarde 5s linear infinite;
	-webkit-animation: animarde 5s linear infinite;

	}

@keyframes animarde{
	0%{left: 1500px; top:30px;}
	30%{left: 790px; top:30px;}
	100%{left: 790px; top:30px;}
}
@-moz-keyframes animarde{
	0%{left: 1500px; top:30px;}
	30%{left: 790px; top:30px;}
	100%{left: 790px; top:30px;}
}
@-o-keyframes animarde{
	0%{left: 1500px; top:30px;}
	30%{left: 790px; top:30px;}
	100%{left: 790px; top:30px;}
}	

@-webkit-keyframes animarde{
	
	0%{left: 1500px; top:30px;}
	30%{left: 790px; top:30px;}
	100%{left: 790px; top:30px;}
}


/*PALABRA CALIDAD ANIMADO*/
#calidad{
	width:63px;
	height:16px;
	background:url(../img/calidad.png) no-repeat;
	position:absolute;
	top:30px;
	left: 815px;
	z-index: 1;
	
	animation: animarcalidad 5s linear infinite;
	-moz-animation: animarcalidad 5s linear infinite;
	-ms-animation: animarcalidad 5s linear infinite;
	-o-animation: animarcalidad 5s linear infinite;
	-webkit-animation: animarcalidad 5s linear infinite;

	}

@keyframes animarcalidad{
	0%{left: 1500px; top:30px;}
	35%{left: 815px; top:30px;}
	100%{left: 815px; top:30px;}
}
@-moz-keyframes animarcalidad{
	0%{left: 1500px; top:30px;}
	35%{left: 815px; top:30px;}
	100%{left: 815px; top:30px;}
}
@-o-keyframes animarcalidad{
	0%{left: 1500px; top:30px;}
	35%{left: 815px; top:30px;}
	100%{left: 815px; top:30px;}
}	

@-webkit-keyframes animarcalidad{
	
	0%{left: 1500px; top:30px;}
	35%{left: 815px; top:30px;}
	100%{left: 815px; top:30px;}
}


#animanosotros{
	width:221px;
	height:140px;
	background:url(../img/nosotros.png) no-repeat;
	position:absolute;
	top:125px;
	left: 568px;

	animation: animarnosotros 5.5s ease infinite;
	-moz-animation: animarnosotros 5.5s ease infinite;
	-ms-animation: animarnosotros 5.5s ease infinite;
	-o-animation: animarnosotros 5.5s ease infinite;
	-webkit-animation: animarnosotros 5.5s ease infinite;

	}

@keyframes animarnosotros{
	0%{left: 320px; top:-88px;}
	25%{left: 398px; top:-20px;}
	75%{left: 398px; top:-20px;}
	100%{left: 320px; top:-88px;}	
}
@-moz-keyframes animarnosotros{
	0%{left: 320px; top:-88px;}
	25%{left: 398px; top:-20px;}
	75%{left: 398px; top:-20px;}
	100%{left: 320px; top:-88px;}
}
@-o-keyframes animarnosotros{
	0%{left: 320px; top:-88px;}
	25%{left: 398px; top:-20px;}
	75%{left: 398px; top:-20px;}
	100%{left: 320px; top:-88px;}
}	

@-webkit-keyframes animarnosotros{
	
	0%{left: 320px; top:-88px;}
	25%{left: 398px; top:-20px;}
	75%{left: 398px; top:-20px;}
	100%{left: 320px; top:-88px;}
}

#animaconcurso{
	width:247px;
	height:45px;
	background:url(../img/animaconcurso.png) no-repeat;
	position:absolute;
	top:90px;
	left: 0px;
	
	animation: animarconcurso 4s ease infinite;
	-moz-animation: animarconcurso 4s ease infinite;
	-ms-animation: animarconcurso 4s ease infinite;
	-o-animation: animarconcurso 4s ease infinite;
	-webkit-animation: animarconcurso 4s ease infinite;

	}

@keyframes animarconcurso{
	0%{left: -187px; top:73px;}
	25%{left: 0px; top:73px;}
	75%{left: 0px; top:73px;}
	100%{left: -187px; top:73px;}
}
@-moz-keyframes animarconcurso{
	0%{left: -187px; top:73px;}
	25%{left: 0px; top:73px;}
	75%{left: 0px; top:73px;}
	100%{left: -187px; top:73px;}
}
@-o-keyframes animarconcurso{
	0%{left: -187px; top:73px;}
	25%{left: 0px; top:73px;}
	75%{left: 0px; top:73px;}
	100%{left: -187px; top:73px;}
}	

@-webkit-keyframes animarconcurso{
	
	0%{left: -187px; top:73px;}
	25%{left: 0px; top:73px;}
	75%{left: 0px; top:73px;}
	100%{left: -187px; top:73px;}
}

#animaclases{
	width:247px;
	height:45px;
	background:url(../img/animaclases.png) no-repeat;
	position:absolute;
	top:90px;
	left: 718px;
		
	animation: animarclases 4.5s ease infinite;
	-moz-animation: animarclases 4.5s ease infinite;
	-ms-animation: animarclases 4.5s ease infinite;
	-o-animation: animarclases 4.5s ease infinite;
	-webkit-animation: animarclases 4.5s ease infinite;

	}

@keyframes animarclases{
	0%{left: -187px; top:203px;}
	25%{left: 0px; top:203px;}
	75%{left: 0px; top:203px;}
	100%{left: -187px; top:203px;}
}
@-moz-keyframes animarclases{
	0%{left: -187px; top:203px;}
	25%{left: 0px; top:203px;}
	75%{left: 0px; top:203px;}
	100%{left: -187px; top:203px;}
}
@-o-keyframes animarclases{
	0%{left: -187px; top:203px;}
	25%{left: 0px; top:203px;}
	75%{left: 0px; top:203px;}
	100%{left: -187px; top:203px;}
}	

@-webkit-keyframes animarclases{
	
	0%{left: -187px; top:203px;}
	25%{left: 0px; top:203px;}
	75%{left: 0px; top:203px;}
	100%{left: -187px; top:203px;}
}


/*
#animapresentaciones{
	width:247px;
	height:45px;
	background:url(../img/animapresentaciones.png) no-repeat;
	position:absolute;
	top:170px;
	left: 718px;
		
	animation: animarpresentaciones 3.5s ease infinite;
	-moz-animation: animarpresentaciones 3.5s ease infinite;
	-ms-animation: animarpresentaciones 3.5s ease infinite;
	-o-animation: animarpresentaciones 3.5s ease infinite;
	-webkit-animation: animarpresentaciones 3.5s ease infinite;

	}

@keyframes animarpresentaciones{
	0%{left: -187px; top:160px;}
	25%{left: 0px; top:160px;}
	75%{left: 0px; top:160px;}
	100%{left: -187px; top:160px;}
}
@-moz-keyframes animarpresentaciones{
	0%{left: -187px; top:160px;}
	25%{left: 0px; top:160px;}
	75%{left: 0px; top:160px;}
	100%{left: -187px; top:160px;}
}
@-o-keyframes animarpresentaciones{
	0%{left: -187px; top:160px;}
	25%{left: 0px; top:160px;}
	75%{left: 0px; top:160px;}
	100%{left: -187px; top:160px;}
}	

@-webkit-keyframes animarpresentaciones{
	
	0%{left: -187px; top:160px;}
	25%{left: 0px; top:160px;}
	75%{left: 0px; top:160px;}
	100%{left: -187px; top:160px;}
}
*/

#amomarinera{
	width:188px;
	height:56px;
	background:url(../img/amomarinera.png) no-repeat;
	position:absolute;
	top:173px;
	left: 35px;
	z-index: 1;
	
}




section#contenido1{
	background: rgba(183,204,219,0.1);
	width: 165px;
	margin:0 auto;	
	display: inline-block;
	vertical-align: top;
}
section#contenido2{
	background: rgba(183,204,219,0.1);
	width: 165px;
	margin:0 auto;
	display: inline-block;
	vertical-align: top;
}
#salesianos img{
	padding-top: 8px;

}
#salesianos{
	background: #fff;	
	width: 150px;
	height: 150px;
	margin: 5px;
	margin-top: 10px;	
	text-align: center;
	box-shadow: 5px 5px 5px #888888;
	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
}
#salesianos:hover{
	-webkit-transform: rotate(360deg);
	box-shadow: 5px 5px 5px #B5D1E8;

	}
#concursos{
	background: url(../img/calendario1.jpg)no-repeat;
	width: 150px;
	height: 150px;	
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;	
	
	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
}
#concursos:hover{
	background: url(../img/calendario2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;
}

#nosotros{
	background: url(../img/nosotros1.jpg)no-repeat;
	width: 150px;
	height: 150px;	
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#nosotros:hover{
	background: url(../img/nosotros2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;
	
}

#elencos{
	background: url(../img/elencos1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#elencos:hover{
	background: url(../img/elencos2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;	
}

#puntajes{
	background: url(../img/puntajes1.jpg)no-repeat;
	width: 150px;
	height: 150px;	
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#puntajes:hover{
	background: url(../img/puntajes2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;	
}

#pensamientos{
	background: url(../img/pensamientos1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#pensamientos:hover{
	background: url(../img/pensamientos2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;
}

#registrodeconcursantes{
	background: url(../img/registro1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#registrodeconcursantes:hover{
	background: url(../img/registro2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;
}

#galeriafotos{
	background: url(../img/fotos1.jpg)no-repeat;
	width: 150px;
	height: 150px;	
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#galeriafotos:hover{
	background: url(../img/fotos2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;
}

#actividades{
	background: url(../img/actividades1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#actividades:hover{
	background: url(../img/actividades2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;
}

#facebook{
	background: url(../img/facebook1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;
	margin-top: 10px;
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}
#facebook:hover{		
	background: url(../img/facebook2.jpg)no-repeat;
	box-shadow: 5px 5px 5px #B5D1E8;

}

#presentaciones{
background: url(../img/presentaciones1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;
	margin-top: 10px;
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}


#presentaciones:hover{
background: url(../img/presentaciones2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}

#clasesmarinera{
	background: url(../img/clasesmarinera1.jpg)no-repeat;
	width: 150px;
	height: 150px;	
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#clasesmarinera:hover{
background: url(../img/clasesmarinera2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}


#repertorio{
	background: url(../img/repertorio1.jpg)no-repeat;
	width: 150px;
	height: 150px;
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#repertorio:hover{
background: url(../img/repertorio2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}

#nuestrosconcursos{
	background: url(../img/nuestrosconcursos1.jpg)no-repeat;
	width: 150px;
	height: 150px;
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#nuestrosconcursos:hover{
background: url(../img/nuestrosconcursos2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}

#youtube{
	background: url(../img/logoyoutube1.jpg)no-repeat;
	width: 150px;
	height: 150px;
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#youtube:hover{
background: url(../img/logoyoutube2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}



#registrodecampeones{
	background: url(../img/campeones1.jpg)no-repeat;
	width: 150px;
	height: 150px;
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#registrodecampeones:hover{
background: url(../img/campeones2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}


#vinculodeinteres{
	background: url(../img/interes1.jpg)no-repeat;
	width: 150px;
	height: 150px;
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#vinculodeinteres:hover{
background: url(../img/interes2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}

#marinerainstitucion{
	background: url(../img/marinera1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#marinerainstitucion:hover{
background: url(../img/marinera2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}



#marinerasautoresycompositores{
	background: url(../img/autoresmarineras1.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#marinerasautoresycompositores:hover{
background: url(../img/autoresmarineras2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}


#revista{
	background: url(../img/revistayomarinera.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#revista:hover{
background: url(../img/revistayomarinera2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}


#elencotls{
	background: url(../img/elencotls.jpg)no-repeat;
	width: 150px;
	height: 150px;		
	margin: 5px;	
	box-shadow: 5px 5px 5px #888888;
	
	transition: all .4s ease-in;
	-ms-transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

#elencotls:hover{
background: url(../img/elencotls2.jpg)no-repeat;
box-shadow: 5px 5px 5px #B5D1E8;
}

#noticias{	
	/*width: 690px;*/
	width: 615px;
	display: inline-block;
	vertical-align: top;
	margin: 0 0 5px 0;
	text-align: center;
	padding-top: 5px;
}
#noticiasimpresion{	
	width: 615px;
	display: inline-block;
	vertical-align: top;
	margin: 0 165px;
	text-align: center;
	padding-top: 5px;
}

#noticias img{
	margin-top: 5px;
}




#clasespresencialesonline2025{
	background: url(../img/ClasesMarineraPresencialyOnline2025.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}



#saludonavidadyfeliz2025{
	background: url(../img/feliznavidadyfeliz2025.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}


/*

#resultadosN2025{

	background: url(../img/resultadosN2025960360.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}*/


/*


#resultadosT2025{

	background: url(../img/resultadosT2025960360.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}*/




/*

#resultadosNN2025{

	background: url(../img/resultadosNN2025960360.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}*/




/*

#resultadosI2025{

	background: url(../img/resultados26ci2025960.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}
*/

/*

#resultadosL2025{

	background: url(../img/resultados30cl2025960.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}
*/


/*


#internoreina2026{

	background: url(../img/internoreina2026.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}
*/





#limatls2025{

	background: url(../img/limenareina2025.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}




#tlsBLN2024{

	background: url(../img/30BailandoLoNuestro2024.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}






#nacional2025{

	background: url(../img/nacionalreina2025.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;	
	box-shadow: 5px 5px 5px #888888;
}



/*
#aniversario{

	background: url(../img/BandasyDanzas2026.jpg)no-repeat;
	width: 960px;
	height: 360px;	
	margin: 6px;
	box-shadow: 5px 5px 5px #888888;

}
*/







.titulotabla{
	background: #fff;
	width: 600px;	
	margin-top: 5px;
	font-size: 18px;
	color: #00335B;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
}


.titulotabla:hover{
	font-size: 20px;
	color: #6693BC;

	}
	
.tablaconcurso{	
	background: #fff;
	width: 600px;	
	margin-top: 5px;
	font-size: 11.2px;
	color: #00335B;
	padding-top: 10px;
	padding-bottom: 10px;	
	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
}

.tablaconcurso:hover{
	padding-top: 20px;
	padding-bottom: 20px;
	background: #3F6075;
	color: #fff;	
}

.tituloconcursos{
	width: 600px;	
	vertical-align: middle;	
	background: #fff;
	width: 600px;	
	margin-top: 5px;
	font-size: 22px;
	color: #00335B;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;	
}

.tituloconcursos a{
	text-decoration: none;
	font-size: 14px;
	color: #FA5858

}
.fecha{
	width: 60px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

.fechaNew{
	width: 45px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}


.hora{
	width: 50px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

.horaNew{
	width: 95px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

.actividad{
	width: 120px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
.lugar{
	width: 120px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
.organizador{
	width: 110px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

.organizadorNew{
	width: 95px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

.informes{
	width: 100px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

.informesNew{
	width: 90px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}


.informes a{
	text-decoration: none;
	color: #00335B;
	text-align: center;
}

.tablacursos{
	background: #fff;
	font-size: 20px;
	width: 610px;	
	margin-top: 15px;
	color: #00335B;
	padding-top: 10px;
	padding-bottom: 15px;
	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
}

.tablacursos:hover{
	padding-top: 15px;
	padding-bottom: 15px;
	background: #fdfcfc;
	color: #fff;	
}


 .tablacursos a{
 	text-decoration: none;
	color: #00335B;
	text-align: center;

 }

/* --- Contenedor tablacursos1 Original --- */


.tablacursosx{
	background: #fff;
	font-size: 20px;
	/*width: 960px;	*/
	width: 960px;
	margin-top: 15px;
	color: #00335B;
	padding-top: 10px;
	padding-bottom: 15px;
	text-align: center;
	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
}


.tablacursosx:hover{
	padding-top: 15px;
	padding-bottom: 15px;
	background: #3F6075;
	color: #fff;	
}



 .tablacursosx a{
	text-decoration: none;
   color: #00335B;
   text-align: center;

}






.tablanosotros{
	text-align: left;
	background: #FAFAFA;
	font-size: 20px;
	width: 595px;	
	margin-top: 5px;
	color: #00335B;
	padding: 10px;
	border-radius: 4px;
	border:1px solid #A9BCF5;
}
.tablanosotros a{
	text-decoration:none;
}
.tablanosotros a{
	font-size: 16px;
	color: #013ADF;

	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;	
}

.tablanosotros a:hover{
	color: #585858;
	font-size: 18px;
}

.tablacampeones{
	background: #fff;
	font-size: 15px;
	width: 595px;	
	margin-top: 5px;
	color: #00335B;
	padding: 10px;
	text-align: left;
}
.escudoacademia{	
	width: 100px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	margin: 0 auto;

}
.nombreacademia{	
	width: 490px;	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	font-size: 25px;
}


#inscrip{	
	
	font-size: 20pt;
}

#inscrip a{
	
	color: #005BBF;
	text-decoration:none;
	transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
}

#inscrip a:hover{
	color: #002868;
	font-size: 30px;
}


/* ================================================================ */
/* FOOTER PROFESIONAL - FINALIZADO CON TEXTO INSTITUCIONAL          */
/* ================================================================ */

#pie {
    background: #0d1b2a; 
    width: 100%;
    padding: 60px 0 20px 0;
    text-align: left;
    color: #cbd5e0; 
    font-family: Arial, sans-serif;
    clear: both;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

/* --- COLUMNAS PC --- */
.footer-area:nth-child(1) { flex: 0 0 180px; min-width: 150px; margin-bottom: 30px; }
.footer-area:nth-child(2) { flex: 1.5; min-width: 260px; margin-bottom: 30px; }
.footer-area:nth-child(3) { 
    flex: 1; 
    min-width: 280px; 
    margin-bottom: 30px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

/* Título "Contáctanos" */
.footer-area h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: none; 
    letter-spacing: 0.5px;
    font-weight: bold;
}

/* --- ENLACES Y TEXTO --- */
.enlaces-footer a, 
.contacto-detallado a {
    color: #cbd5e0;
    text-decoration: none !important;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.enlaces-footer a:hover,
.contacto-detallado a:hover { color: #ffffff; }

.contacto-detallado p { font-size: 14px; margin-bottom: 15px; }

.contacto-detallado p span {
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
}

.icon-whatsapp { color: #25d366; }
.icon-mail2 { color: #cbd5e0; }

.sede-txt {
    font-size: 13px;
    color: #cbd5e0;
    margin-top: 15px;
    display: block;
}

/* Línea divisoria debajo de la dirección */
.sep-footer { 
    border: 0; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    margin: 20px 0; 
}

.img-libro-footer {
    width: 90px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.img-libro-footer:hover { transform: scale(1.05); }

/* --- REDES Y LOGO X --- */
.footer-social-icons-blancos { display: flex; gap: 12px; margin-bottom: 20px; }

.footer-social-icons-blancos a,
.icon-x-nuevo {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.icon-x-nuevo { font-family: Arial, sans-serif !important; font-weight: bold; }

.footer-social-icons-blancos a:hover,
.icon-x-nuevo:hover {
    background: #ffffff !important;
    color: #0d1b2a !important;
    transform: translateY(-5px);
}

/* --- LOGO PUNTOS DE CULTURA Y TEXTO --- */
.espacio-puntos { 
    margin-top: 80px; 
}

.txt-institucional {
    color: #cbd5e0;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: normal;
}

.img-puntos-cultura {
    width: 320px;
    height: auto;
    display: block;
    filter: drop-shadow(0px 4px 5px rgba(0,0,0,0.3));
}

/* --- COPYRIGHT --- */
.copyright {
    text-align: center;
    font-size: 11px;
    color: #718096;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    margin-top: 40px;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    #pie { text-align: center; }
    .footer-grid { flex-direction: column; align-items: center; }
    .footer-area:nth-child(1), .footer-area:nth-child(2), .footer-area:nth-child(3) {
        flex: 1; width: 100%; min-width: 100%; align-items: center;
    }
    .footer-social-icons-blancos { justify-content: center; }
    .espacio-puntos { margin-top: 25px; }
    .img-puntos-cultura, .img-libro-footer { margin: 0 auto; }
}