body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: color #e6e6e6;
    color: #000000;
}
header{
    background-image: url("cielo.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 2rem;
}
header h1{
    color: #000000;
    text-shadow: 1px 1px 2px #ccbb9f;
}
.frase-inicial{
font-style: italic;
color: #5e5050;
margin-top: 1rem;
text-shadow: 1px 1px 1px #c4964b;
}
nav{
    background-color:#4690c1;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    flex-wrap: wrap;
}
nav a{
color:#5e5050;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
nav a:hover{
    color: gold;
}
section{
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}
section h2{
    color: #5e5e5e;
    text-align: center;
}
#frases table{
    width:100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color:#f8f8f8 ;
    box-shadow: 0 2px 8px royalblue;
}
#frases th,
#frases td{
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #54aae2;
}
#frases th{
    background-color:#54aae2;
    color:#5e5050;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#frases tr:hover{
    background-color: #54aae2;
    transition: background-color 0.3s ease;
}
#datos table{
    width:100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color:#f8f8f8;
    box-shadow: 0 2px 8px royalblue;
}
#datos th,
#datos td{
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #54aae2;
}
#datos th{
    background-color: #54aae2;
    color:#5e5050;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#valores table{
    width:100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: #54aae2;
    border-radius: 8px;
    padding: 1.5rem;
}
#virtudes {
    width:100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: #54aae2;
    border-radius: 8px;
    padding: 1.5rem;
}
#galeria .contenedor-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tarjeta-obra {
  background-color: #50aff3;
  border: 1px solid #98c9f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tarjeta-obra:hover {
  transform: scale(1.02);
}

.tarjeta-obra img {
  width: 100%;
  height: auto;
}