* {
  padding: 0;
margin: 0;
}

/* color del body */
body {
  background-color: blue;
padding: 0;
margin: 0;  
}

/* encabezado */
.contenedor-encabezado {
width: 100%;
height: 100px;
display: flex;
}

.contenedor-logo {
width: 20%;
height: 100px;
display: flex;
float: left;
background-color: white;
}

.contenedor-titulo-principal {
width: 80%;
height: 100px;
display: flex;
background-color: white;
text-align: center;
float: left;
align-items: center;
}

.contenedor-titulo-principal h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
font-weight: bold;
color: blue;
letter-spacing: 1px;
}

/* menu de navegación */
nav {
width: 100%;
height: 100px;
background-color: lightblue;
text-align: center;
padding-top: 24px;
box-sizing: border-box;
text-transform: uppercase;
}

nav ul li {
  display: inline;
}

nav ul li a {
color: blue;
font-size: 50px;
text-decoration: none;
padding-left: 15px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
letter-spacing: 1px;
transition: font-size 0.3s ease-in-out;
}

nav ul li a:hover {
color: lightblue;
background-color: blue;
font-size: 60px;
}

/* carrusel */
.contenedor-carrusel {
width: 100%;
height: 400px;
position: relative;
overflow: hidden;
}

.slide {
width: 100%;
height: 100%;
position: absolute;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

.slide.active {
  opacity: 1;
}

@keyframes carruselAnimation {
0% {
  opacity: 0;
}

25% {
  opacity: 1;
}

75% {
  opacity: 1;
}

100% {
  opacity: 0;
}
}

/* articulos */
a {
text-decoration: none;
}

.contenedor-articulos {
width: 1650px;
display: flex;
}

.contenedor-articulo1,
.contenedor-articulo2 {
width: 800px;
height: 400px;
display: flex;
display: flex;
align-items: center;
justify-content: center;
background-color: blue;
}

.contenedor-articulo1 h2,
.contenedor-articulo2 h2 {
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
float: left;
color: white;
}

.contenedor-articulo1 img,
.contenedor-articulo2 img {
max-width: 50%;
height: auto;
object-fit: cover;
float: right;
}

.contenedor-secundario {
display: flex;
width: 1650px;
border: 2px solid white;
}

.contenedor-fiesta,
.contenedor-actividades {
width: 800px;
height: 400px;
margin: 10px;
align-items: center;
}

.contenedor-fiesta {
background-color: white;
border: 2px solid red;
}

.contenedor-actividades {
background-color: yellow;
border: 2px solid blue;
}

.contenedor-fiesta h1,
.contenedor-actividades h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
letter-spacing: 1px;
}

.contenedor-fiesta h1 {
color: red;
float: left;
}

.contenedor-actividades h1 {
color: blue;
}

.contenedor-fiesta img {
max-width: 50%;
height: auto;
object-fit: cover;
float: right;
}

.contenedor-articulo1:hover,
.contenedor-articulo2:hover {
background-color: white;
}

.contenedor-fiesta:hover {
background-color: lightblue;
border: 2px solid white;
}

.contenedor-actividades:hover {
background-color: lightblue;
}

.contenedor-articulo1 h2:hover,
.contenedor-articulo2 h2:hover,
.contenedor-fiesta h1:hover,
.contenedor-actividades h1:hover {
color: blue;
}

/* compartir */
.compartir {
  width: 100%;
  height: 100px;
  background-color: yellow;
  display: flex;
}

.titulo-compartir {
  width: 30%;
  height: 100px;
  display: flex;
  background-color: yellow;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.titulo-compartir h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 50px;
  color: blue;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.btn-compartir {
  width: 30%;
  height: 100px;
float: left;
padding-top: 35px;
}

.btn-compartir a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: blue;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

/* pie de la pagina */
.pie-pagina {
width: 100%;
height: 100px;
background-color: white;
display: flex;
}

.titulo-pie {
width: 30%;
height: 100px;
display: flex;
background-color: blue;
box-sizing: border-box;
justify-content: center;
align-items: center;
margin: 0;
}

.titulo-pie h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 90px;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
text-align: center;
margin: 0;
}

.pie-pagina nav {
width: 100%;
height: 100px;
background-color: white;
text-align: center;
padding-top: 40px;
box-sizing: border-box;
text-transform: uppercase;
flex-grow: 1;
}

.pie-pagina nav ul {
display: inline-block;
padding: 0;
}

.pie-pagina nav ul li {
display: inline-block;
}

.pie-pagina nav ul li a {
font-size: 20px;
/* Reducí el tamaño de fuente para que se ajuste mejor */
text-decoration: none;
padding-left: 15px;
font-weight: bold;
letter-spacing: 1px;
font-family: Arial, Helvetica, sans-serif;
}

.pie-pagina nav ul li a[href="https://www.facebook.com/adivica.cabrero"] {
color: blue;
}

.pie-pagina nav ul li a[href="mailto:adivica.cabrero@gmail.com"] {
color: red;
}

.pie-pagina nav ul li a[href="https://www.facebook.com/adivica.cabrero"]:hover {
background-color: blue;
color: white;
}

.pie-pagina nav ul li a[href="mailto:adivica.cabrero@gmail.com"]:hover {
background-color: red;
color: white;
}

/* Dispositivos moviles */
@media only screen and (max-width: 600px) {
/* encabezado */
.contenedor-encabezado {
width: 100%;
height: 100px;
display: flex;
}

.contenedor-logo {
width: 30%;
height: 100px;
display: flex;
float: left;
background-color: white;
}

.contenedor-titulo-principal {
width: 70%;
height: 100px;
display: flex;
background-color: white;
text-align: center;
float: left;
align-items: center;
}

.contenedor-titulo-principal h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
font-weight: bold;
color: blue;
letter-spacing: 1px;
}

/* menu de navegación */
nav {
width: 100%;
height: 100px;
background-color: lightblue;
text-align: center;
padding-top: 24px;
box-sizing: border-box;
text-transform: uppercase;
}

nav ul li {
    display: inline;
}

nav ul li a {
color: blue;
font-size: 15px;
text-decoration: none;
padding-left: 15px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
letter-spacing: 1px;
transition: font-size 0.3s ease-in-out;
}

nav ul li a:hover {
color: lightblue;
background-color: blue;
font-size: 60px;
}

/* carrusel */
.contenedor-carrusel {
width: 100%;
height: 400px;
position: relative;
overflow: hidden;
}

.slide {
width: 100%;
height: 100%;
position: absolute;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

.slide.active {
    opacity: 1;
}

@keyframes carruselAnimation {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* articulos */
a {
  text-decoration: none;
}

.contenedor-articulos {
  width: 100%;
display: flex;
flex-direction: column;  
}

.contenedor-articulo1,
.contenedor-articulo2 {
  width: 300px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
background-color: blue;
}

.contenedor-articulo1 h2,
.contenedor-articulo2 h2 {
  font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
float: left;
color: white;
}

.contenedor-articulo1 img,
.contenedor-articulo2 img {
  max-width: 50%;
height: auto;
object-fit: cover;
float: right;
}

.contenedor-secundario {
  display: flex;
width: 300px;
flex-direction: column;  
}

.contenedor-fiesta,
.contenedor-actividades {
  width: 300px;
height: 200px;
margin: 10px;
}

.contenedor-fiesta {
  background-color: white;
border: 2px solid red;
}

.contenedor-actividades {
  background-color: yellow;
border: 2px solid blue;
}

.contenedor-fiesta h1,
.contenedor-actividades h1 {
  font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
letter-spacing: 1px;
}

.contenedor-fiesta h1 {
  color: red;
float: left;
}

.contenedor-actividades h1 {
  color: blue;
}

.contenedor-fiesta img {
  max-width: 50%;
height: auto;
object-fit: cover;
float: right;
}

.contenedor-articulo1:hover,
.contenedor-articulo2:hover {
  background-color: white;
}

.contenedor-fiesta:hover {
  background-color: lightblue;
}

.contenedor-actividades:hover {
  background-color: lightblue;
}

.contenedor-articulo1 h2:hover,
.contenedor-articulo2 h2:hover,
.contenedor-fiesta h1:hover,
.contenedor-actividades h1:hover {
  color: blue;
}

/* compartir */
.compartir {
  width: 100%;
  height: 100px;
  background-color: yellow;
  display: flex;
}

.titulo-compartir {
  width: 50%;
  height: 100px;
  display: flex;
  background-color: yellow;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.titulo-compartir h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: blue;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.btn-compartir {
  width: 50%;
  height: 100px;
float: left;
padding-top: 35px;
}

.btn-compartir a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: blue;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

/* pie de la pagina */
.pie-pagina {
  width: 100%;
  height: 100px;
  background-color: white;
  display: flex;
}

.titulo-pie {
  width: 30%;
  height: 100px;
  display: flex;
  background-color: blue;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.titulo-pie h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.pie-pagina nav {
  width: 100%;
  height: 100px;
  background-color: white;
  text-align: center;
  padding-top: 40px;
  box-sizing: border-box;
  text-transform: uppercase;
  flex-grow: 1;
}

.pie-pagina nav ul {
  display: inline-block;
  padding: 0;
}

.pie-pagina nav ul li {
  display: inline-block;
}

.pie-pagina nav ul li a {
  font-size: 15px;
  /* Reducí el tamaño de fuente para que se ajuste mejor */
  text-decoration: none;
  padding-left: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: Arial, Helvetica, sans-serif;
}

.pie-pagina nav ul li a[href="https://www.facebook.com/adivica.cabrero"] {
  color: blue;
}

.pie-pagina nav ul li a[href="mailto:adivica.cabrero@gmail.com"] {
  color: red;
}

.pie-pagina nav ul li a[href="https://www.facebook.com/adivica.cabrero"]:hover {
  background-color: blue;
  color: white;
}

.pie-pagina nav ul li a[href="mailto:adivica.cabrero@gmail.com"]:hover {
  background-color: red;
  color: white;
} 
}