:root {
  --primary-color: #b7af8d;
  --secondary-color: #828386;
  --accent-color: rgb(120, 25, 63);
  --text-color: #333333;
  --nav-bar-color: #ffffff;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--nav-bar-color);
  color: var(--text-color);
}

h2 {
  color: rgb(120, 25, 63);
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.title-subsection {
  font-weight: 900;
  text-transform: uppercase;
}
.navbar.shrink {
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.5);
}


.video-header {
  background-image: url('./assets/images/bg-header.png');
  background-size: cover;
  background-position: center;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.video-header video {
  width: 100%;
  height: auto;
}

.right-header {
background: rgb(130, 131, 134, 0.7);;
padding: 40px;
}

.divider {
  background-color: var(--accent-color);
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.section {
  padding: 20px;
  font-size: 18px;
}

.section .container {
padding: 80px 0;
}

.section-beige {
  background-color: var(--primary-color);
}

.section-gray {
  background-color: #919088;
}

.section-wine {
  background-color: rgb(120, 25, 63);
}

.section-wine h2{
  color: #fff;
}

.footer {
  background-color: var(--accent-color);
  color: var(--text-color);
  text-align: center;
  padding: 20px 0;
}

.spacer {
  height: 80px; /* Same as the navbar height */
}

.benefits-list {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.benefits-list li i {
  color: #49524f;
  font-size: 1.5rem;
  margin-right: 10px;
}

.color-red {
color: rgb(120, 25, 63);
}
.color-green {
color: #49524f;
}

.color-beige {
color: #b7af8d;
}

.title {
  font-weight: bold;
}

/* Estilo Base del Botón */
.btn-custom {
  background-color: rgb(120, 25, 63);
  border-color: rgb(120, 25, 63);
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Hover (Cuando el mouse pasa sobre el botón) */
.btn-custom:hover {
  background-color: rgb(100, 20, 50);
  border-color: rgb(100, 20, 50);
  color: white;
}

/* Active (Cuando el botón es presionado) */
.btn-custom:active {
  background-color: rgb(80, 15, 40);
  border-color: rgb(80, 15, 40);
  color: white;
  transform: scale(0.98);
  transition: all 0.1s ease-in-out;
}

/* Focus (Cuando el botón recibe foco, útil para accesibilidad) */
.btn-custom:focus {
  box-shadow: 0 0 0 4px rgba(120, 25, 63, 0.5);
  border-color: rgb(100, 20, 50);
}

/* Disabled (Cuando el botón está deshabilitado) */
.btn-custom:disabled {
  background-color: rgb(180, 100, 120);
  border-color: rgb(180, 100, 120);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}

.btn-xl {
  padding: 0.75rem 1.25rem;
  font-size: 1.5rem;
  border-radius: var(--bs-border-radius-lg);
}

/* Estilo para la sección de afiliados */
.afiliados-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.afiliados-section h2 {
  color: rgb(120, 25, 63);
  font-weight: bold;
  margin-bottom: 20px;
}

.afiliados-section p {
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Tarjetas de afiliados */
.afiliado-card {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.afiliado-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.afiliado-card h5 {
  font-size: 1.1rem;
  font-weight: bold;
  color: rgb(120, 25, 63);
}

.afiliado-card p {
  font-size: 14px;
  color: #777;
}

/* Efecto Hover */
.afiliado-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Botón */
.btn-ver-mas {
  background-color: rgb(120, 25, 63);
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-ver-mas:hover {
  background-color: rgb(100, 20, 50);
}