*{
     margin: 0;
     padding: 0;
     border: 0;
     vertical-align: baseline;
     box-sizing: border-box;
     font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
body{
     transition: padding-top 0.5s ease;
     position: relative; /* importante */
     min-height: 100vh;
}
body::before{
  content: "";
  position: fixed;   /* 👈 clave */
  inset: 0;

  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("https://grainy-gradients.vercel.app/noise.svg");

  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}
/* ============================= */
/* CONFIGURACIÓN BASE HEADER */
/* ============================= */

header nav{
  border-bottom: solid 2px #bf9f34;
  padding-bottom: 8px;
}

#header--active{
  color: #bf9f34;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.header--hero {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Branding principal */
.header--hero .branding {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header--hero .branding img {
  width: 350px;
}
/* Navegación */
.header--hero nav {
  display: flex;
  gap: 25px;
}
.header--hero nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #d6cb8d;
  position: relative;
  transition: 0.3s ease;
}
.header--hero nav a:hover {
  color: #bf9f34;
}
/* Estado oculto del hero */
.header--hero.hide {
  opacity: 0;
  transform: translateY(-60px);
  pointer-events: none;
}
/* ============================= */
/* COMPACT HEADER */
/* ============================= */
.header--compact {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;

  opacity: 0;
  transform: translateY(-60px);
  pointer-events: none;
}
/* Bloque izquierdo */
.header--compact > div:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header--compact > div:first-child img {
  width: 200px;
  height: auto;
}
.header--compact > div:first-child h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}
/* Bloque derecho */
.header--compact > div:last-child {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header--compact > div:last-child img {
  width: 35px;
  height: auto;
}
/* Navegación */
.header--compact nav {
  display: flex;
  gap: 25px;
}
.header--compact nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #d6cb8d;
  position: relative;
  transition: 0.3s ease;
}
.header--compact nav a:hover {
  color: #bf9f34;
}
/* Estado visible del compacto */
.header--compact.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

  body {
    padding-top: 140px;
  }

  .header--hero {
    height: 160px;
  }

  .header--hero .branding img {
    width: 90px;
  }

  .header--hero .branding h1 {
    font-size: 18px;
  }

  .header--hero > div:nth-child(2) {
    flex-direction: column;
    gap: 10px;
  }

  .header--hero nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .header--compact {
    padding: 0 20px;
  }

  .header--compact nav {
    display: none; /* simplificamos mobile */
  }

}


/* footer */
footer {
	background: transparent;
	padding: 86px 0;
}
.single-content {
	text-align: center;
	padding: 115px 0;
     
}
.single-box img{
     width: 200px;
     height: auto;
     margin-bottom: 14px;
}
.single-box p {
	color: #d6cb8d;
	line-height: 1.9;
}
.single-box h3 {
	font-size: 16px;
	font-weight: 700;
	color: #d6cb8d;
}
.single-box .card-area i {
	color: #d6cb8d;
	font-size: 20px;
	margin-right: 10px;
}
.single-box ul {
	list-style: none;
	padding: 0;
}
.single-box ul li a {
	text-decoration: none;
	color: #d6cb8d;
	line-height: 2.5;
	font-weight: 100;
}
.single-box h2 {
	color: #d6cb8d;
	font-size: 20px;
	font-weight: 700;
}
.single-box a{
     text-decoration: none;
}
#basic-addon2 {
	background: #fe1e4f;
	color: #d6cb8d;
}
.socials i {
	font-size: 18px;
	margin-right: 15px;
}
.socials a{
     color: #d6cb8d;
     text-decoration: none;
     transition: ease all .3s;
}

.socials a:hover{
  color: #bf9f34;
}

@media (max-width: 767px) {
	.single-box {
		margin-bottom: 50px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.single-box {
		margin-bottom: 50px;
	}
}


.anim__active{
    opacity: 1;
    transform: translateY(-50px);
    animation: appearFromTop 1s ease forwards;
}
@keyframes appearFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}