.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
	background-color:#fff;
}

 .float:focus {
	color: #fff;
	background-color:#25d366;
}

.my-float{
	margin-top:16px;
}

.fb{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 550px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fb ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.fb ul li{
	width: 40px;
	height: 40px;
	line-height: 75px;
	margin: 0 10px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	border: 5px solid #c95a1a;
	transition: all 0.5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fb ul li .fa{
	color: #c95a1a;
	transition: all 0.5s ease;           
}

.fb ul li:hover.facebook{
	border: 5px solid #3b5998;  
	box-shadow: 0 0 15px #3b5998;
	transition: all 0.5s ease;  
}

.fb ul li:hover .fa-facebook{
	color: #3b5998;
	text-shadow: 0 0 15px #3b5998;
	transition: all 0.5s ease;  
}
.fb ul li:hover.instagram{
	border: 5px solid #bc2a8d;  
	box-shadow: 0 0 15px #bc2a8d;
	transition: all 0.5s ease;  
}

.fb ul li:hover .fa-instagram{
	color: #bc2a8d;
	text-shadow: 0 0 15px #bc2a8d;
	transition: all 0.5s ease;  
}

@media screen and (max-width: 768px) {
	.fb{
		width: 350px;
	}
	.fb ul li{
		margin-top: 10px;
	}
}

/*
    Auther: Abdelrhman Said
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");




.face .icon{
	position: relative;
	background-color: #ffffff;
	border-radius: 50%;
	margin: 10px;
	width: 40px;
	height: 40px;
	line-height: 50px;
	font-size: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	color: #333;
	text-decoration: none;
}
.face .tooltip {
  position: absolute;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.face .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.face .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.face .icon:hover span,
.face .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.face .facebook:hover,
.face .facebook:hover .tooltip,
.face .facebook:hover .tooltip::before {
  background-color: #3b5999;
  color: #ffffff;
}

.face .twitter:hover,
.face .twitter:hover .tooltip,
.face .twitter:hover .tooltip::before {
  background-color: #46c1f6;
  color: #ffffff;
}

.face .instagram:hover,
.face .instagram:hover .tooltip,
.face .instagram:hover .tooltip::before {
  background-color: #e1306c;
  color: #ffffff;
}

.face .github:hover,
.face .github:hover .tooltip,
.face .github:hover .tooltip::before {
  background-color: #333333;
  color: #ffffff;
}

.face .youtube:hover,
.face .youtube:hover .tooltip,
.face .youtube:hover .tooltip::before {
  background-color: #de463b;
  color: #ffffff;
}


/*====== MODAL ======*/

.hero{
    background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%);
    color: #fff;
    display: grid;
    grid-template-rows:max-content 1fr;
    grid-template-areas: 
    "nav"
    "content";
    min-height: 100vh;
}



.nav__list{
    list-style: none;
    display: grid;
    grid-auto-flow: column;
    gap: 1em;
}

.nav__link{
    color:#fff;
    text-decoration: none;
}

.nav__logo{
    font-size: 1.8rem;
    font-weight: 300;
}

.nav__menu{
    display: none;
}

.nav__icon{
    width: 30px;
}

/* Hero main */

.hero__main{
    grid-area: content;
    display: grid;
    gap: 2em;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: 1fr 1fr;
    padding-bottom: 180px; 
    align-items: center;
}

.hero__waves{
    grid-area: content;
    align-self: end;
}

.hero__title{
    font-size: 2.6rem;
    letter-spacing: 2px;
}

.hero__subtitle{
    margin-top:1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
}

.hero__cta{
    text-decoration: none;
    color: #fff;
    padding: 15px 60px;
    border: 1px solid;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    transition: background-color .3s;
}

.hero__cta:hover{
    background-color: #fff;
    color: #1e3c72;
}

.hero__img{
    width: 100%;
}

.modal{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111111bd;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s .9s;
    --transform: translateY(-100vh);
    --transition: transform .8s;
}

.modal--show{
    opacity: 1;
    pointer-events: unset;
    transition: opacity .6s;
    --transform: translateY(0);
    --transition: transform .8s .8s;
}

.modal__container{
    margin: auto;
    width: 90%;
    max-width: 600px;
    max-height: 90%;
    background-color: #fff;
    border-radius: 6px;
    padding: 3em 2.5em;
    display: grid;
    gap: 1em;
    place-items: center;
    grid-auto-columns: 100%;
    transform: var(--transform);
    transition:var(--transition);
}


.modal__title{
    font-size: 2.5rem;
}

.modal__paragraph{
    margin-bottom: 10px;
    text-justify: auto;
}

.modal__img{
    width: 30%;
    max-width: 300px;
}

.modal__close{
    text-decoration: none;
    color: #fff;
    background-color: #5780da;
    padding: 1em 3em;
    border: 1px solid ;
    border-radius: 6px;
    display: inline-block;
    font-weight: 300;
    transition: background-color .3s;
}

.modal__close:hover{
    color: #F26250;
    background-color: #fff;
}


@media (max-width:800px) {
    .nav__list{
        display: none;
    }

    .nav__menu{
        display: block;
    }

    .hero__main{
        grid-template-columns: 1fr;
        grid-template-rows:max-content max-content ;
        text-align: center;
    }

    .hero__picture{
        grid-row: 1/2;
    }

    .hero__img{
        max-width: 500px;
        display: block;
        margin: 0 auto;
    }

    .modal__container{
        padding: 2em 1.5em;
    }

    .modal__title{
        font-size: 2rem;
    }
}
/*tabla*/

.temporadas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
  }

  .temporada-box {
    background-color: #f5f5f5;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .temporada-box strong {
    display: block;
    font-size: 1.4rem;
    color: #00558c;
    margin-bottom: 8px;
    font-family: sans-serif;
    text-align: center;
  }

  .temporada-box small {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
    font-family: sans-serif;
  }

  @media (max-width: 768px) {
    .temporadas-container {
      flex-direction: column;
      align-items: center;
    }
  }

  .about_img {
    /* Asegúrate de que el contenedor tenga un tamaño definido */
    width: 100%;
    max-width: 400px; /* Ajusta según tu diseño */
    height: 250px;    /* Ajusta según tu diseño */
    position: relative;
    overflow: hidden; /* Oculta el exceso de imagen */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen para llenar el contenedor sin deformarla */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}