.header {
  height: 300px;
  background-image:
    linear-gradient(
      rgba(32, 32, 32, 0.4),
      rgba(32, 32, 32, 0.4)
    ),
    url(header.jpeg);
  background-size: cover;
  background-position: center;
  color: white;
   display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
  text-align: center;
  background-color: #0000008a;
  padding: 20px 40px;
  border-radius: 8px;
}

.header h1 {
  color: #f7770e;
  font-size: 3rem;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  margin: 0;
}

.header p {
  color: #ddd;
  font-size: 1.3rem;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin-top: 10px;
}


.titulos {
    font-size: 35px;
    font-weight: bold;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color: #f7770e;
    margin: auto;
    text-align: center;

}

p {
    font-size: 18px;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: black;
}

.navbar .nav-link {
  color:#f7770e;
}

.navbar .nav-link:hover {
  color:#f7770e
}



.card-body {
    background-color: rgb(43, 43, 43);
}

#card-title {
    color: #f7770e;
    font-size: 28px; 
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 800;
    margin-bottom: 10px; 
    letter-spacing: 0.5px; 
}

.card-text {
    color: white; 
    font-size: 16px;
    font-family: system-ui, -apple-system, sans-serif; 
}

.card-text strong {
    color: white;
}

 .div_blanco{
 padding: 20px;
 width: 97%;
 border-color: black;
  border-radius: 68px 68px 68px 68px;
-webkit-border-radius: 68px 68px 68px 68px;
-moz-border-radius: 68px 68px 68px 68px;
box-shadow: 0px 0px 6px 0px black;
-webkit-box-shadow: 0px 0px 6px 0px black;
-moz-box-shadow: 0px 0px 6px 0px black;
margin: auto;
background-color: white;
}



.site-footer{
  background: rgb(43, 43, 43);       
  color: #e5e7eb;
  padding: 48px 16px 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.footer-container{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-title{
  font-size: 1.05rem;
  margin: 0 0 14px;
  color:#f7770e;
  letter-spacing: .2px;
}

.footer-item{
  margin: 0 0 12px;
  line-height: 1.5;
  color: #cbd5e1;
}

.footer-label{
  color: #f8fafc;
  font-weight: 600;
}

.footer-link{
  color: #93c5fd;
  text-decoration: none;
}
.footer-link:hover{
  text-decoration: underline;
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cbd5e1;
}

.footer-list li{
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-list li span{
  color: #f8fafc;
  font-weight: 600;
}

.social-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.social-btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  background: rgba(147,197,253,.18);
  border-color: rgba(147,197,253,.35);
}

.social-btn svg{
  width: 22px;
  height: 22px;
  fill: #e5e7eb;
}

.footer-note{
  margin: 0;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-bottom{
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 16px;
  text-align: center;
  background: rgba(0,0,0,.12);
}
.footer-bottom p{
  margin: 0;
  color: #94a3b8;
  font-size: .95rem;
}

/* Responsivo */
@media (max-width: 900px){
  .footer-container{
    grid-template-columns: 1fr;
  }
}