:root {
    --primary-color: #043409;
    --secondary-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #043409;
}
.btn-primary

 {
    --bs-btn-color: #fff;
    --bs-btn-bg: #467529;
    --bs-btn-border-color: #467529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #467529;
    --bs-btn-hover-border-color: #467529;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #467529;
    --bs-btn-active-border-color: #467529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #467529;
    --bs-btn-disabled-border-color: #467529;
}
.bg-brown {
    background-color: #8B4513 !important; /* Marrón */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}


.navbar-brand img {
    height: 50px;
}

.hero-section {
    position: relative;
    background-image: url('../../images/ganado.png'); /* Cambia la ruta por tu imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto parallax */
    background-repeat: no-repeat;
    height: 50vh; /* 100% del alto de la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Capa oscura semitransparente */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.card-remate {
    transition: transform 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-remate:hover {
    transform: translateY(-5px);
}

.badge-live {
    background-color: var(--secondary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.weather-card {
    background: linear-gradient(135deg, #72b4eb 0%, #0a67a3 100%);
    color: white;
    border-radius: 10px;
    padding: 20px;
}

.animal-card {
    transition: all 0.3s;
    cursor: pointer;
}

.animal-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stream-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
}

.stream-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

