body {
      font-family: 'Quicksand', sans-serif;
      background: #fafafa;
      color: #333;
      min-height: 100vh;
    }
    .navbar-brand {
      font-weight: 600;
      font-size: 1.6rem;
      color: #b08b2b;
      letter-spacing: 0.1em;
    }
    .navbar-brand:hover {
      color: #d4ac0d;
    }
    .nav-link {
      color: #555;
      font-weight: 500;
      transition: color 0.3s;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .nav-link:hover,
    .nav-link.active {
      color: #b08b2b;
    }
    /* Carousel */
    .carousel-item img {
      height: 450px;
      object-fit: cover;
      filter: brightness(0.85);
    }
    .carousel-caption {
      background: rgba(255 255 255 / 0.8);
      color: #5a4a1a;
      border-radius: 10px;
      padding: 1rem 2rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-shadow: none;
    }
    /* Sección noticias */
    #noticias {
      max-width: 1100px;
      margin: 60px auto 40px;
      padding: 0 15px;
    }
    #noticias h2 {
      color: #b08b2b;
      font-weight: 700;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .noticia-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgb(176 139 43 / 0.15);
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .noticia-card:hover {
      box-shadow: 0 10px 20px rgb(176 139 43 / 0.3);
      transform: translateY(-8px);
      border: 1px solid #d4ac0d;
    }
    .noticia-card h3 {
      color: #5a4a1a;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1.3rem;
    }
    .noticia-card p {
      flex-grow: 1;
      color: #555;
      font-weight: 400;
    }
    .noticia-card small {
      color: #999;
      margin-top: 15px;
      font-style: italic;
    }
    /* Sección afiliación */
	section#afiliate {
	  max-width: 1100px;
	  margin: 40px auto 80px;
	  padding: 10px 15px;
	}
    section#afiliate h2 {
      color: #b08b2b;
      font-weight: 700;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
      text-align: center;
    }
    section#afiliate p {
      text-align: center;
      color: #666;
      font-weight: 500;
      margin-bottom: 40px;
    }
    /* Formulario */
    form {
      background: #fff;
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgb(176 139 43 / 0.15);
    }
    input[type="text"],
    input[type="email"] {
      border: 1.8px solid #b08b2b;
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }
    input[type="text"]:focus,
    input[type="email"]:focus {
      border-color: #d4ac0d;
      outline: none;
      box-shadow: 0 0 8px #d4ac0daa;
    }
    button[type="submit"] {
      background: #b08b2b;
      color: white;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      padding: 14px;
      width: 100%;
      font-size: 1.1rem;
      transition: background 0.3s ease;
      cursor: pointer;
    }
    button[type="submit"]:hover {
      background: #d4ac0d;
    }
    /* Footer */
    footer {
      background: #f2f1ec;
      color: #5a4a1a;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-align: center;
      padding: 20px 15px;
      border-top: 2px solid #b08b2b;
      user-select: none;
    }
	@media (min-width: 768px) {
	form > .col-md-4 {
    /* Ajuste para inputs alineados en 3 columnas */
      flex: 0 0 32%;
      max-width: 32%;
      }
    }
	
	/* Scroll vertical */
	/* Estilo Scroll WebKit */
	::-webkit-scrollbar {
	  width: 12px;
	}

	::-webkit-scrollbar-track {
	  background: #f5f5f5; /* Fondo claro para contraste */
	  border-radius: 10px;
	}

	::-webkit-scrollbar-thumb {
	  background: #b08b2b; /* Dorado principal */
	  border-radius: 10px;
	  border: 3px solid #f5f5f5; /* Da efecto “espaciado” */
	  transition: background-color 0.3s ease;
	}

	::-webkit-scrollbar-thumb:hover {
	  background: #d4ac0d; /* Dorado oscuro al pasar */
	}

	/* Scroll para Firefox */
	* {
	  scrollbar-width: thin;
	  scrollbar-color: #b08b2b #f5f5f5;
	}

	/* Acordeón */
	.accordion-button {
	background-color: #f7f7f7;
	font-weight: bold;
	}

	.accordion-body ul {
	list-style-type: '✔ ';
	padding-left: 1rem;
	}

	h2 {
	color: #333;
	}
	
	/* Efectos para imagen principal de cada sección */
	.text-shadow {
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
	}

	.contact-image {
	overflow: hidden;
	}
