@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&display=swap');

body {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    text-align: left;
    color: #333;
    background-color: #FFF;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 1px transparent;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-shadow: 0 0 1px rgba(0,0,0,0.01);
}

p {
    margin-top: .75rem;
    margin-bottom: .75rem;
}

.section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.section-x {
    padding: 6rem;
}

.lead {
    font-size: 28px;
}

/* HEADER */

.logo {
    height: 60px;
}
@media (max-width: 750px) {
    .logo {
        height: 50px;
    }
    .dropdown-toggle::after {
        display: none;
    }
}

/* BOTONES */

.btn {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: 500;
}
.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}
.btn-co3uruguay {
    --bs-btn-color: #fff;
    --bs-btn-bg: #d7a360;
    --bs-btn-border-color: #d7a360;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #a98353;
    --bs-btn-hover-border-color: #a98353;
    --bs-btn-focus-shadow-rgb: 225,83,97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #a98353;
    --bs-btn-active-border-color: #a52834;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d7a360;
    --bs-btn-disabled-border-color: #d7a360;
}
.btn-secondary {
    --bs-btn-color: #f9d67d;
    --bs-btn-bg: #444;
    --bs-btn-border-color: #444;
}

@media (max-width: 750px) {
    .btn-group-lg>.btn, .btn-lg {
        --bs-btn-font-size: 1.1rem;
    }
}

/* BACKGROUNDS */

.bg-secondary {
    background-color: #444 !important;
}
.bg-success {
    background-color: #25D366 !important;
}
.bg-success-2 {
    background-color: #eaf7e2 !important;
}
.bg-info {
    background-color: #e4f1fb !important;
}
.bg-danger-2 {
    background-color: #ffdbdb;
}
.bg-co3uruguay {
    background-color: #d7a360;
}

/* COLOR DE TEXTOS */

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}
.text-success {
    color: #25D366 !important;
}
.text-co3uruguay {
    color: #d7a360;
}

/* VARIOS */

.list-group {
    --bs-list-group-border-radius: 0 !important;
}
.badge {
    --bs-badge-font-weight: 500;
    --bs-badge-border-radius: 0;
}
.form-control {
    border-radius: 0;
}

/* BOTONERA FLOTANTE EN FICHA */

.botonera-flotante {
    position:-webkit-sticky;
    position:sticky;
    top: 0;
    z-index:1090;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
@media (max-width: 750px) {
    .botonera-flotante { display: none; }
}


/* TITULOS */

.titulo {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
}
.subtitulo {
    color: #d7a360;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .8em;
    letter-spacing: 2px;
}
.descripcion {
    font-size: 28px;
}
.propiedad-titulos {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
@media (max-width: 750px) {
    .titulo {
        font-size: 3rem;
    }
    .subtitulo {
        font-size: .7em;
    }
    .descripcion {
        font-size: 22px;
    }
}

/* BACKGROUND */

.background {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    width: 100%;
}
.background-sm {
    height: 300px;
}
.background-md {
    height: 500px;
}
.background-lg {
    height: 100vh;
}
.background-x {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}
@media (max-width: 750px) {
    .background {
        background-attachment: inherit;
    }
    .background-md {
        height: 350px;
    }
}
