:root{
    --pink: #F01E60;
    --purple: #511A57;
}

body {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400;
}
h1, h2, h3 {
    font-weight: 700;
}
strong {
    font-weight: 600;
}

.btn-collapse {
    background-color:#CBCBCB !important;
    border-color: #CBCBCB !important;
    color:white;
}

.btn-primary {
    background-color: var(--purple) !important;
    border-color: #350B3A !important;
    font-weight:800;
}

.btn-primary:hover {
    background-color: #7A3E80 !important;
    border-color: #A366A9 !important;
}

.btn-primary:active,
.btn-primary.active {
    background-color: #440412 !important;
    border-color: #440412 !important;
}

.btn-secondary {
    background-color: #b68400 !important;
    border-color: #b68400 !important;
}

.btn-secondary:hover {
    background-color: #b0aba1 !important;
    border-color: #440412 !important;
}

.btn-secondary:active,
.btn-secondary.active {
    background-color: #b68400 !important;
    border-color: #b68400 !important;
}

/* Backgrounds */
.bg-primary {
    background-color: #ab0a3d !important;
}

.bg-secondary {
    background-color: #b68400 !important;
}

.bg-imove {
    background-color: #B0ABA1;
}

.bg-imove-2 {
    background-color: #3D3935;
}

/* Borders */
.border-primary {
    border-color: #3498db !important;
}

.border-secondary {
    border-color: #b68400 !important;
}

/* Links */
a {
    color: #ab0a3d;
}

a:hover {
    color: #440412;
}

.text-primary {
    color: #ab0a3d !important;
}
.text-lead {
  font-size: 1.8rem;
  font-weight: 300;
}
/* FOOTER */
.footer-color{
    width: 100%;
    height: 40px; 
    background-color: var(--purple); 
}
.footer-img{
    width: 100%;
    max-width: 250px;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
}
.footer-wrapper {  
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    overflow: hidden; 
    flex-wrap: wrap;
}

/* container */
.header-container{
    align-items: left;
    justify-content: left;
    flex-wrap: wrap;
    overflow: hidden;
    margin-bottom: 10px;
}
.image-container {
    display: flex;
    align-items: left;
    justify-content: left;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 600px;
    max-width: 600px;
}

/* image */
.logo-img{
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 80px;   
    object-fit: cover; 
    object-position: center; 
}

.image{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    overflow: hidden;
}

.logo-escudo {
    height: 80px;
    width: 100%;
    object-fit: cover; 
    object-position: center; 
    overflow: hidden;
}

@media (max-width: 768px) {
    .logo-container {
        gap: 20px;
    }

    .logo-item {
        height: 90px;
    }

    .footer-links a {
        margin: 0 10px;
        display: inline-block;
        margin-bottom: 5px;
    }

    .diagrama{
        display: inline-block
    }
}

.navbar .nav-link {
    font-weight: bold;
}

.nav-link.active {
    background-color: var(--purple);
    padding: 0.5em 1em !important;
    color: white !important;
    border-radius: 30px; 
}

/* HEADER */
.header-logo-container {
    width: 350px;
    height: 50px;
    overflow: hidden;
    background-color: white; 
}

.header-logo {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
}

/* Cards */
.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.card-image-top {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.custom-card {
    background: #fff;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.custom-card:hover::before {
    transform: translateX(0);
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.text-pink{
    background-color: var(--pink);
    color: white;
}

.text-purple {
    background-color: var(--purple) !important;
    color: white;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    padding: 10px;
}

.count-number {
    background: var(--purple);
    font-weight: 900;
    color: white;
    display: block;
    padding: 10px 20px;
    min-width: 150px;
}

.count-label {
    font-weight: 800;
    color: var(--purple);;
    margin-top: 10px;
    display: block;
    letter-spacing: 1px;
    font-size: 1.5em;
}

.separator {
    color: var(--purple);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .custom-card:hover {
        transform: none;
    }
}

.header-ciudades {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: white;
}

.header-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}


.img-box {
    height: 250px;      
    overflow: hidden;
    background-color: white;     /* fallback elegante */
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
    display: block;
}


.custom-input {
  background-color: #E8E8E8;
  border-radius: 10px;
  padding: 12px;
}

.custom-input:focus {
  border-color: #E8E8E8;
  background-color: #E8E8E8;
  /* box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.25); */
}

.form-control::placeholder, .form-select {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #9ca3af; gris suave
}

.pin-container{
    max-width: 60px;
    max-height: 60px;
    overflow: hidden;
    display: flex; 
    align-items: center;
    justify-content: center;
    /* transition: all 0.3s ease; */
    /* filter: grayscale(0.2); */
}

.arrows-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    display: flex; 
    align-items: center;
    justify-content: center;
    max-height: 100px;
    margin-left: -150px;
}


.arrows-absolute {
    position: absolute;
    left: 10px;
    /* margin-left: -0px; */
    top: 40px;
    /* transform: translateY(-50%); */
    z-index: 10;
    max-width: 150px;
}

.arrows-container-home {
    display: flex;
    align-items: center;
    overflow: hidden;
    display: flex; 
    align-items: center;
    justify-content: center;
    max-height: 100px;
    max-width: 200px;
    margin-left: -220px;
    /* left: -400px; */
    
}
