@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@200;400;500;600&display=swap');

/* Colores */
:root {
    --bs-primary: #E8550D !important;
    --bs-primary-bg: #E8550D !important;
    --bs-secondary: #002D5D !important;
    --bs-secondary-bg: #002D5D !important;
    --color-primary: #E8550D;
    --color-primary-mas-claro: #ff6c23;
    --color-secondary: #002D5D;
    --color-secondary-mas-claro-100: #00356d;
    --color-secondary-mas-claro-200: #003a77;
    --color-secondary-mas-claro-300: #003e81;
    --color-secondary-mas-claro-400: #00458f;
    --color-secondary-mas-claro-500: #004a99;
    --color-default: #444444;
    --color-gris: #666666;
    --color-gris-alto: #e6e6e6;
    --color-gris-medio: #9e9e9e;
    --color-gris-bajo: #5e5e5e;
}

/* Tipografias */
:root {
    --font-condensed: 'Saira Semi Condensed', sans-serif;
    --font-default: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-default);
    color: var(--color-default);
}

main {
    margin-top: 5rem;
    margin-bottom: 7rem;
}
#inicio main {
    margin-top: 0;
    margin-bottom: 0;
}
main.sin-margin-bottom {
    margin-bottom: 0 !important;
}

a:link, a:active, a:visited {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.5s ease 0s;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    font-family: var(--font-condensed);
    color: var(--color-secondary);
}
h2 {
    font-size: 1.6rem;
}
ol, ul {
    padding-left: 1rem;
  }
main li {
    /* color: var(--color-primary); */
    list-style: none; /* Remove default bullets */
}
main li::before {
    content: "\25AA";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--color-primary); /* Change the color */
    font-size: 1.3rem;
    line-height: 1.5rem;
    /* margin-top: 10rem; */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 0.9rem; /* Also needed for space (tweak if needed) */
    margin-left: -1rem; /* Also needed for space (tweak if needed) */
  }
.btn {
    color: white !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 1rem 5rem;
    /*letter-spacing: 0.2rem;*/
    border-radius: 0.5rem;
    transition: all 0.5s ease;
    /* background-color: var(--color-primary); */
    /* border-color: #fd8447; */
}
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary-mas-claro);
}
.btn-primary:hover {
    background-color: var(--color-secondary-mas-claro-100);
    border-color: var(--color-secondary-mas-claro-200);
}
.btn-secondary {
    background-color: var(--color-secondary);
    border-color: #003d7e;
}
.btn-secondary:hover {
    background-color: var(--color-primary);
}
.btn-whatsapp:hover {
    background-color: #29A71A;
    border-color: #29A71A;
}

.container {
    max-width: 1280px;
}
.card {
    /* border-color: rgba(255, 255, 255, 0.25); */
    transition: all 0.5s ease 0s;
}
.card:hover {
    margin-top: -10px;
    margin-bottom: 10px;
}
.card img {
    transition: all 0.5s ease 0s;
}
.card:hover img {
    filter: brightness(1.2);
}
.card, .card-img-overlay, .card-img, .card-img-top {
    /* border-radius: 0 !important; */
    /* border: 0; */
}
.card .card-img-overlay {
    background: linear-gradient(rgba(0, 36, 75, 0) 10%, rgba(0, 36, 75, 1));
    /* background-color: rgba(39, 77, 130, 0.5); */
    /* background: rgb(0,45,93);
    background: -moz-linear-gradient(0deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8043418050814075) 25%, rgba(0,45,93,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8043418050814075) 25%, rgba(0,45,93,0) 100%);
    background: linear-gradient(0deg, rgba(31,84,141,1) 0%, rgba(0,51,105,0.8043418050814075) 25%, rgba(0,45,93,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002d5d",endColorstr="#002d5d",GradientType=1);  */

    /* background: linear-gradient(0deg, rgb(31 84 141) 0%, rgb(0 51 105 / 70%) 25%, rgba(0,45,93,0) 100%); */
}
.card .card-title {
    font-size: 1.4rem;
}

/* Accordion */

/* .accordion-item {
    border-bottom: 1px solid var(--color-gris);
  } */
.accordion-button {
    background: linear-gradient(0deg, #eeeeee, #ffffff);
    /* background-color: var(--color-gris-alto); */
    /* color: white; */
    font-size: 1.3rem;
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    background: none;
    color: white;
    background-color: var(--color-primary);
  }

/* ********** Navegacion ********** */

header {
    position: absolute;
}

.top-bar {
    background-color: var(--color-secondary);
    color: white;
    padding: 0;
    font-size: 0.9rem;
}
.top-bar span {
    color: white !important;
}
.top-bar a:link, .top-bar a:active, .top-bar a:visited {
    color: white !important;
}
.top-bar .link-idioma {
    text-transform: uppercase;
    font-size: 0.7rem;
}
.top-bar .link-idioma img {
    width: 15px;
    margin-right: 5px;
    padding-bottom: 3px;
}
.navbar {
    text-transform: uppercase;
    /* margin-top: -2rem; */
    /* border-top: solid 2px var(--color-primary); */
    margin-top: 37px;
    transition: all 0.5s ease 0s;
    /* border-bottom: solid 2px var(--color-gris-alto); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.navbar * {
    font-size: 0.9rem;
    font-weight: 600;
}
.navbar a:link, .navbar a:active, .navbar a:visited {
    color: var(--color-secondary);
}
.navbar a:hover {
    color: var(--color-primary);
}
.margen-superior {
    /* transition: all 0.5s ease 0s; */
    margin-top: 0px !important;
}
@media (max-width: 768px) {
    /* .navbar a:link, .navbar a:active, .navbar a:visited {
        color: white;
    } */
    .dropdown-menu {
        background-color: none !important;
    }
    .navbar {
        margin-top: 0;
    }
 }
.navbar-brand img {
    transition: all 0.5s ease 0s;
    max-width: 140px !important;
}
.scroll-logo img {
    max-width: 100px !important;
}
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.dropdown-menu hr {
    margin: 5px 10px;
    color: #666666 !important;
    opacity: .20;
  }

.dropdown-item {
    font-size: 0.82rem;
    /* text-transform: initial; */
    /* font-weight: normal !important; */
}
.dropdown-item.active {
    color: var(--color-primary) !important;
    background-color: transparent;
}
@media all and (min-width: 992px) {
	/* .navbar .nav-item .dropdown-menu{ display: none; } */
	/* .navbar .nav-item:hover .nav-link{  } */
	.navbar .nav-item:hover .dropdown-menu { display: block; transition: 0.5s;}
	/* .navbar .nav-item .dropdown-menu{ margin-top:0; } */
}
.nav-link.active {
    color: var(--color-primary) !important;
}

/* ********** Todas las secciones ********** */
.seccion {
    padding: 3.5rem 0 5rem 0;
}
#inicio .seccion {
    padding: 6.7rem 0 7.5rem 0;
}
.seccion-oscura *{
    color: white;
}
.seccion-gris {
    background-color: var(--color-gris);
}
.seccion-gris-claro {
    background-color: var(--bs-gray-100);
}
.seccion-gris-oscuro {
    background-color: var(--bs-gray-200);
}
.seccion-primary {
    background-color: var(--color-primary);
}
.seccion-secondary {
    background-color: var(--color-secondary);
}
.seccion-gris *, .seccion-primary *, .seccion-secondary * {
    color: white;
}
.seccion-degrade-desde-abajo {
    background: rgb(238,238,238);
    background: -moz-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#ffffff",GradientType=1);
}
.seccion-degrade-desde-arriba {
    background: linear-gradient(#f5f5f5, #ffffff);
    /* background: rgb(238,238,238);
    background: -moz-linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(245,246,247,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(245,246,247,1) 100%);
    background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(245,246,247,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#f5f6f7",GradientType=1); */
}
.encabezado {
    font-family: var(--font-condensed);
    margin-bottom: 1.2rem;
  }
.encabezado .titulo {
    font-size: 3rem;
    line-height: 3rem;
    /* letter-spacing: 1px; */
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.encabezado .titulo::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: -10px; 
}
@media (max-width: 768px) {
    .encabezado .titulo {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin-bottom: 2.5rem;
    }
    .encabezado .titulo::after {
        margin: auto;
    }
 }
.encabezado-centrado {
    margin-bottom: 4rem;
}
.encabezado-centrado .titulo::after {
    margin: auto;
}
.encabezado p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7rem;
}


/* ********** Slider carousel Inicio ********** */

#carouselInicio {
    /* height: 100vh; */
    width: 100%;
}

#carouselInicio .carousel-item {
    background-size: cover;
    background-position: center top;
    /* box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8); */
    height: 100vh;
}
#carouselInicio .carousel-content {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    /* background-color: rgba(20, 29, 112, 0.2); */

    /* background: rgb(0,45,93);
    background: -moz-linear-gradient(320deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8267507686668417) 39%, rgba(0,45,93,0) 100%);
    background: -webkit-linear-gradient(320deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8267507686668417) 39%, rgba(0,45,93,0) 100%);
    background: linear-gradient(320deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8267507686668417) 39%, rgba(0,45,93,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002d5d",endColorstr="#002d5d",GradientType=1);  */
}
#carouselInicio .carousel-content h1 {
    font-size: 2.5rem;
    /* color: white;
    padding-left: 1rem;
    border-left: solid 3px var(--color-primary); */
}
#carouselInicio .caja {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2.1rem;
    margin-bottom: 9rem;
    border-left: solid 3px var(--color-primary);
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
@media (max-width: 768px) {
    #carouselInicio .carousel-content h1 {
        font-size: 1.7rem;
    }
    #carouselInicio .caja {
        padding: 1.7rem;
        margin-bottom: 5rem;
    }
}

  /* **************************
Secciones Inicio
************************** */


/* ********** Introduccion ********** */

#introduccion {
    /* background-color: var(--color-primary); */
    background-color: var(--color-primary);
    /* background: rgb(0,45,93);
    background: -moz-linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,62,129,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,62,129,1) 100%);
    background: linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,62,129,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002d5d",endColorstr="#003e81",GradientType=1);  */
    border-top: solid 1px white;
}
#introduccion .caja {
    /* background-color: var(--color-primary); */
    color: white;
    padding: 3.7rem 0;
    /* margin-top: -5rem; */
}
#introduccion .caja h2 {
    font-size: 1.8rem;
    line-height: 1.9rem;
    margin-bottom: 0;
}
#introduccion .caja img {
    padding-right: 20px;
    border-right: solid 2px white;
    height: 52px;
    margin-right: 20px;
}
@media (max-width: 768px) {
    #introduccion .caja img {
        padding-right: 10px;
        height: 65px;
        margin-right: 15px;
    }
    #introduccion .caja h2 {
        font-size: 1.15rem;
        line-height: 1.4rem;
    }
 }


/* ********** Empresa ********** */

#la-empresa .icono {
    margin-right: 0.8rem;
    width: 75px;
    height: 75px;
}
#la-empresa .numero {
    font-size: 3.8rem;
    line-height: 3.8rem;
    font-weight: bold;
    /* margin-bottom: 0 !important; */
    color: var(--color-primary);
    letter-spacing: -0.2rem;
}
#la-empresa .numero p {
    margin-bottom: 0 !important;
}
/* .counters span {
    display: block;
  } */
#la-empresa .texto {
    color: var(--bs-secondary);
    font-weight: bold;
    margin-left: 5px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    #la-empresa .numero {
        font-size: 3.5rem;
        line-height: 3rem;
        letter-spacing: -0.2rem;
    }
    #la-empresa .texto {
        font-weight: bold;
        margin-left: 5px;
        font-size: 0.95rem;
    }
 }

/* ********** Servicios ********** */
#servicios {
    background-color: var(--color-secondary);
    /* background-image: url("../img/fondo-01.jpg");
    background-repeat: no-repeat;
    background-size: cover; */
}
#servicios .card {
    border: solid 5px var(--color-secondary);
}
#servicios .card:hover {
    border: solid 5px var(--color-secondary-mas-claro-500);
}
#servicios .card .contenido {
    /* background-color: var(--color-primary); */
    text-align: center;
    padding-top: 1.6rem;
    width: 100%;
}
#servicios .card-title {
    font-family: var(--font-condensed) !important;
    /* text-transform: uppercase; */
    font-size: 1.8rem;
    margin-bottom: 1.1rem;
}
#servicios .btn-primary {
    /* border: 0; */
    background: var(--color-primary);
}
#servicios .btn-primary:hover {
    background: var(--color-primary-mas-claro);
}

/* ********** Novedades ********** */
#novedades {
    /* background: rgb(238,238,238);
    background: -moz-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#ffffff",GradientType=1); */
}
#novedades .card, #pagina-novedades .card {
    border: 12px solid white;
    border-bottom: none;
}
.text-bg-dark {
    background-color: var(--color-secondary) !important;
}
.card-body {
    padding: 1.3rem 0.7rem 0.4rem 0.7rem;
}
.card-title {
    font-family: var(--font-default);
    font-size: 1.3rem;
    font-weight: 600;
    /* margin-bottom: 0.7rem; */
    /* padding-bottom: 1rem; */
    /* color: var(--color-secondary); */
}
.card-title a:link, .card-title a:active, .card-title a:visited {
    color: var(--color-secondary);
}
.card-title a:hover {
    color: var(--color-primary);
}
.card-footer {
    border-top: var(--bs-card-border-width) solid rgba(0, 0, 0, 0.2);
    /* padding: 0.7rem 0.5rem 0.7rem 0.5rem; */
    padding-bottom: 0.7rem;
    padding-right: 0;
    text-align: right;
}

/* ********** Seguridad ********** */
#seguridad {
    /* background-color: var(--color-secondary); */
    background: rgb(238,238,238);
    background: -moz-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#ffffff",GradientType=1);
   
}
/* #seguridad .container {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
}
@media (max-width: 768px) {
    #seguridad .container {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }
 } */
#seguridad .row {
    background-color: var(--color-secondary);
    background-image: url("../img/fondo-seguridad.jpg");
    background-size: cover;
    padding: 3rem !important;
    border-radius: 10px;
    border: solid 1px var(--color-secondary-mas-claro-300);
}
#seguridad .caja {
    background-color: var(--color-primary);
    padding: 2.3rem;
}
#seguridad .encabezado .titulo {
    font-size: 2.3rem;
    line-height: 2.5rem;
}
#seguridad .encabezado .titulo::after {
    background: var(--color-secondary);
}
#seguridad .btn-secondary {
    /* border: 0; */
    background: var(--color-secondary);
}
#seguridad .btn-secondary:hover {
    filter: brightness(1.5);
}
@media (max-width: 768px) {
    #seguridad .btn {
        padding: 1rem 3.5rem;
    }
    #seguridad .row {
        padding: 1.5rem !important;
    }
    #seguridad .encabezado .titulo.eng {
        font-size: 2rem;
        line-height: 2.3rem;
    }
 }

/* **************************************
****** Comunes a todas las paginas ******
************************************** */

/* ********** Titulo pagina ********** */
.titulo-pagina {
    background-size: cover;
    /* background-color: var(--color-gris-medio); */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
    border-bottom: solid 2px var(--color-gris-alto);
    /* height: 40vh; */
    /* margin-bottom: 5rem; */
}
.titulo-pagina .capa-opacidad {
    padding: 11.5rem 0 4rem 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary-mas-claro-500);
    /* background-color:rgba(141, 141, 141, 0.8); */
    /* background: rgb(0,45,93);
    background: -moz-linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8211485277704832) 41%, rgba(232,85,13,0.7623249983587185) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8211485277704832) 41%, rgba(232,85,13,0.7623249983587185) 100%);
    background: linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,45,93,0.8211485277704832) 41%, rgba(232,85,13,0.7623249983587185) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002d5d",endColorstr="#e8550d",GradientType=1);  */

    /* background: rgb(232,85,13);
    background: -moz-linear-gradient(135deg, rgba(232,85,13,1) 0%, rgba(0,45,93,0.9415967070421919) 57%, rgba(0,45,93,0.6866947462578781) 100%);
    background: -webkit-linear-gradient(135deg, rgba(232,85,13,1) 0%, rgba(0,45,93,0.9415967070421919) 57%, rgba(0,45,93,0.6866947462578781) 100%);
    background: linear-gradient(135deg, rgba(232,85,13,1) 0%, rgba(0,45,93,0.9415967070421919) 57%, rgba(0,45,93,0.6866947462578781) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8550d",endColorstr="#002d5d",GradientType=1);  */

    background: rgb(0,45,93);
    background: -moz-linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,62,129,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,62,129,1) 100%);
    background: linear-gradient(135deg, rgba(0,45,93,1) 0%, rgba(0,62,129,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002d5d",endColorstr="#003e81",GradientType=1); 
}
@media (max-width: 768px) {
    .titulo-pagina .capa-opacidad {
        padding: 9rem 0 4rem 0;
    }
 }
.titulo-pagina h1 {
    text-transform: uppercase;
    font-size: 2.3rem;
    color: white;
    position: relative;
    margin-top: 15px;
}
.titulo-pagina span {
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--color-primary);
    position: relative;
}
.titulo-pagina span::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-primary);
    left: 0;
    top: 28px;
    /* bottom: -10px; */
}
/* .titulo-pagina h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: -10px; 
} */
.titulo {
    font-size: 2.5rem;
}
.subtitulo {
    position: relative;
    margin: 2rem 0;
}
.subtitulo::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: -10px; 
}
.fecha-novedad {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.titulo-novedad {
    position: relative;
    margin-top: 0 !important;
}
.titulo-novedad::after {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: -10px; 
}
.subtitulo-novedad {
    margin-bottom: 1.2rem;
}
.subtitulo-novedad::after {
    content: none;
}
.texto-novedad {
    font-size: 1rem;
    line-height: 1.7rem;
}

.introduccion-pagina {
    background-color: var(--color-gris-alto);
    /* position: relative; */
    padding: 5rem 0;
    margin-bottom: 2rem;
    overflow: visible;
    height: 300px;
}
.menor-altura {
    height: 230px;
}
.introduccion-pagina p {
    font-family: var(--font-condensed);
    color: var(--color-secondary);
    font-size: 1.4rem;
    font-weight: 600;
    border-left: solid 4px var(--color-primary);
    padding-left: 15px;
    margin-bottom: 5rem;
}
.imagen-pagina {
    /* margin-top: -14rem; */
    /* position: absolute; */
    /* top: 0; */
}
@media (max-width: 768px) {
    .introduccion-pagina {
        height: auto;
        /* padding: 2rem 0; */
    }
    .introduccion-pagina p {
        margin-bottom: auto;
        margin-top: 1rem;
    }
    .menor-altura {
        height: auto !important;
    }
    .imagen-pagina {
        margin-top: auto;
        margin: 1rem 0;
    }
 }
.texto-introduccion {
    font-family: var(--font-condensed);
    color: var(--color-secondary);
    font-size: 1.4rem;
    font-weight: 600;
    border-left: solid 4px var(--color-primary);
    padding-left: 15px;
    margin-bottom: 3rem;
}
.link {
    /* color: var(--color-secondary); */
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    text-transform: uppercase !important;
    /* float: right; */
}
.link:hover {
    /* color: var(--color-primary); */
}
.espaciador {
    height: 5rem;
}

/*
******************* Estilos independientes de las paginas *******************
*/
#pagina-servicios main {
    margin-top: 0;
}

#pagina-novedades main {
    margin-top: 6rem;
}

#pagina-contacto .col-md-6 {
    /* border-left: solid 2px var(--color-gris-medio); */
    /* padding-left: 40px; */
    /* margin: 2rem;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); */
}
#pagina-contacto .col-md-6 .caja-sector {
    /* border-left: solid 2px var(--color-gris-medio); */
    /* padding-left: 40px; */
    margin: 1rem;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}
#pagina-contacto .subtitulo {
    margin-top: 0;
}
#pagina-contacto main ul {
    padding-left: 0;
}
#pagina-contacto main li {
    font-weight: 600;
    margin-bottom: 0.4rem;
}
#pagina-contacto main li::before {
    content: none;
    margin-left: -20px !important;
}




/* ********** Contactarse ********** */
#contactarse {
    background-color: #eeeeee;
    padding: 4rem 0;
}
#contactarse .titulo {
    font-size: 1.3rem;
}
#contactarse .texto p {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.6rem;
    border-left: solid 1px #bbb;
    padding: 0 2rem 0 20px;
    margin-left: 3.5rem;
}
#contactarse .caja {
    padding: 2rem 1.7rem 2rem 1.5rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
#contactarse .caja img {
    width: 80px;
    margin-right: 25px;
}
#contactarse i.icono-contacto {
    font-size: 4.5rem;
    margin-right: 15px;
    color: var(--color-secondary);
}
#contactarse .btn {
    padding-left: 20px;
    padding-right: 20px;
}
/* #contactarse .btn:hover {
    background-color: #25d366;
    border-color: #36f07a;
} */
#contactarse i {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-right: 5px;
}

@media (max-width: 768px) {
    #contactarse .container {
        padding: 3rem 1.7rem;
    }
    #contactarse .titulo {
        font-size: 1.5rem;
    }
    #contactarse .texto p {
        border-left: none;
        padding: initial;
        margin-left: initial;
    }
 }

/* ********** Pie ********** */
#pie {
    color: white;
    border-top: solid 4px var(--color-primary);
    background-color: var(--color-secondary);
}
#pie .caja {
    color: var(--color-secondary);
    background-color: white;
    padding: 2rem;
    border-left: solid 3px var(--color-primary);
}
#pie .caja h4 {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    margin-bottom: 0.8rem;
}
#pie .caja li {
    list-style: none;
    margin-bottom: 4px;
}
#pie .caja ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
#pie i {
    color: var(--bs-primary);
}
#pie .caja .borde {
    border-left: solid 1px var(--color-secondary);
    padding-left: 1rem;
}
#pie footer {
    font-size: 0.8rem;
    letter-spacing: 0.02rem;
}
#pie footer a:link, #pie footer a:active, #pie footer a:visited {
    color: white;
}
#pie footer a:hover {
    color: var(--color-primary);
}

/* ********** Pie 2 ********** */
#pie-2 {
    font-family: var(--font-condensed);
    color: white;
    border-top: solid 4px var(--color-primary);
    background-color: var(--color-secondary);
    padding: 2.1rem 0 4.5rem 0;
}
#pie-2 .texto-destacado p {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin-bottom: 0 !important;
}
#pie-2 h4 {
    color: white;
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: 0.15rem;
    margin-bottom: 12px;
}
#pie-2 li {
    list-style: none;
    margin-bottom: 6px;
}
#pie-2 ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
#pie-2 i {
    color: var(--bs-primary);
    margin-right: 3px;
}
#pie-2 .borde {
    border-left: solid 1px var(--color-primary);
    padding-left: 1rem;
}
#pie-2 a:link, #pie-2 a:active, #pie-2 a:visited {
    color: white;
}
#pie-2 a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    #pie-2 .borde {
        border-left: none;
        /* padding-left: 1rem; */
    }
 }

/* Footer */
footer {
    color: rgba(255, 255, 255, 0.7);
    background-color: var(--color-secondary-mas-claro-100);
    font-size: 0.8rem;
    letter-spacing: 0.02rem;
    padding: 1rem 0 0.4rem 0;
}
footer a:link, footer a:active, footer a:visited {
    color: rgba(255, 255, 255, 0.7);
}
footer a:hover {
    color: var(--color-primary);
}
footer p {
    margin-bottom: 10px;
}
footer .icono-whatasapp {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 10px;
    bottom: 20px;
    z-index: 996;
    /* background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50px; */
    transition: all 0.4s;
  }
footer .icono-whatasapp.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    footer {
        color: white;
        background-color: #00244b;
        font-size: 0.8rem;
        letter-spacing: 0.02rem;
        padding: 2rem 1rem;
    }
    
 }

 /* Icono subir */

.icono-subir {
    display: none;
    color: var(--color-primary) !important;
    font-size: 2.2rem;
    line-height: 1rem;
    /* padding: 0 !important;
    margin: 0; */
    margin-top: 0px;
	position: fixed;
	bottom: 50px;
	right: 20px;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease 0s;
}
.icono-subir:hover {
	color: var(--color-secondary) !important;
    background-color: white;
    border-radius: 10px;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.9); */
}

/* Animacion */
.animar {
    margin-top: -50px;
    transition: all 0.5s ease 0s;
}

.slide-bottom {
	-webkit-animation: slide-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-1-6 12:38:51
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(40px);
              transform: translateY(40px);
    }
  }
  @keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(40px);
              transform: translateY(40px);
    }
  }
  