/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FFFFFF;
  color: #333;
  line-height: 1.6;
}

/* general container*/
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/************************************* Header *******************************************/
.site-header {
  background-color: #1D4ED8; 
  color: #FFFFFF;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #10B981; 
}

.btn-cta {
  background-color: #10B981;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
}

.btn-cta:hover {
  background-color: #0b8c65;
}

/************  cards and h1 ********************/


/* H1 style*/

h1 {
  font-size: 3rem;
  text-align: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);

}


/* general style of the cards*/
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
}


#cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}


#cards section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


#cards section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}


#cards h2 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.8rem;
}


#cards img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#cards a {

  text-decoration: none;
  color: #1D4ED8; /* azul principal */
  font-weight: 500;
}

a:hover {
  color: #10B981; /* verde acento */
  text-decoration: underline; /* opcional, solo en hover */
}





/*********************** Footer ***********************************/
.site-footer {
  background-color: #F3F4F6; 
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-content h3,
.footer-content h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
  color: #1D4ED8; 
}

.footer-content ul {
  list-style: none;
}

.footer-content ul li {
  margin: 0.3rem 0;
}

.footer-content a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.footer-content a:hover {
  color: #1D4ED8;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
  color: #666;
}


.get-date {
  display: flex;
  flex-direction: column; 
  align-items: center;   
  justify-content: center; 
  text-align: center;
}


/************************* Social  ***************************************/
.Social {
    display: flex;
    justify-content: center;
    column-gap: 8px;

}

.Social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: #ccc solid 1px;
    border-radius: 22px;
}

.Social img {
    width: 22px;
    height: 22px;
}


.Social a:hover {
    background-color: #ddd;
}

