@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Nunito+Sans:wght@200;300;400&display=swap');

#intro {
  display: table;
  width: 100%;
  height: 30em;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 30em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  text-align: center;
}

@media (min-width: 768px) {
  #intro .carousel-content {
    width: 100%;
  }
}


/*--------------------- Carousel classes ------------------ */
#intro .carousel-content .row {
  padding: 0 100px;
}

#intro .carousel-content .row .carouselFloatRight {
  float: right;
}

#intro .carousel-content .row .carouselFloatLeft {
  float: left;
}

#intro .carousel-content .row hr {
  width: 300px;
  border-bottom: 2px solid #ccc;
}

#intro .carousel-content .row .carouselHRRed {
  border-bottom: 2px solid #cc112c;
}

#intro .carousel-content .row .carouselHRDisp {
  display: none;
}

#intro .carousel-content .row p {
  margin: 0 auto 30px auto;
  text-align-last: center;
}

#intro .carousel-content .row .carouselPRight {
  text-align: right;
  text-align-last: right;
}

#intro .carousel-content .row .carouselPLeft {
  text-align: left;
  text-align-last: left;
}

@media (max-width: 768px) {
  #intro .carousel-content .row .pL0, #intro .carousel-content .row .pL1 {
    margin: 0 0 30px 0;
    text-align-last: center;
  }

  #intro .carousel-content .row .carouselFloatRight {
    float: inherit;
  }

  #intro .carousel-content .row .carouselFloatLeft {
    float: inherit;
  }

  #intro .carousel-content .row .carouselPRight {
    text-align: center;
    text-align-last: center;
  }

  #intro .carousel-content .row .carouselPLeft {
    text-align: center;
    text-align-last: center;
  }
}

/*--------------------- End Carousel classes ------------------ */


#intro h2 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
  }
}

#intro p {
  width: 50%;
  color: #fff;
}

#intro .pAlt {
  width: 50%;
  margin: 0 auto 30px auto;
  color: #fff;
  padding-left: 123px;
}

@media (max-width: 720px) {
  #intro p {
    text-align: center;
    width: 100%;
  }

  #intro .pAlt {
    width: 100%;
    margin: 0 auto 30px auto;
    color: #fff;
    padding-left: 0px;
  }
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators {
  bottom: 30px
}

#intro .carousel-indicators li {
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #0062cc;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #0062cc;
}


.banner {
  position: relative;
  width: 100%;
  height: 30em;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
}


.banner .imgContainer::before {
  content: '';
  background: rgba(212, 228, 239, 0);
  background: -moz-linear-gradient(left, rgba(212, 228, 239, 0) 0%, rgba(142, 153, 160, 0) 33%, rgba(66, 71, 74, 0.52) 69%, rgba(0, 0, 0, 0.52) 100%);
  background: -webkit-linear-gradient(left, rgba(212, 228, 239, 0) 0%, rgba(142, 153, 160, 0) 33%, rgba(66, 71, 74, 0.52) 69%, rgba(0, 0, 0, 0.52) 100%);
  background: -o-linear-gradient(left, rgba(212, 228, 239, 0) 0%, rgba(142, 153, 160, 0) 33%, rgba(66, 71, 74, 0.52) 69%, rgba(0, 0, 0, 0.52) 100%);
  background: -ms-linear-gradient(left, rgba(212, 228, 239, 0) 0%, rgba(142, 153, 160, 0) 33%, rgba(66, 71, 74, 0.52) 69%, rgba(0, 0, 0, 0.52) 100%);
  background: linear-gradient(to right, rgba(212, 228, 239, 0) 0%, rgba(142, 153, 160, 0) 33%, rgba(66, 71, 74, 0.52) 69%, rgba(0, 0, 0, 0.52) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4e4ef', endColorstr='#000000', GradientType=1);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


.banner .content {
  text-align: center;
  padding: 0 100px;
}

.banner .content h2 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 48px;
  font-weight: 700;
}

.banner .content p {
  text-align: end;
  width: 100%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (max-width: 768px) {
  .banner .container .content {
    width: 100%;
    padding: 0;
  }

  .banner .content h2 {
    font-size: 28px;
  }

  .banner .content p {
    text-align: center;
    width: 100%;
  }
}

.seven-cols .card {
  border-radius: 50%;
  overflow: visible;
}

.seven-cols .card .card-body {
  position: absolute;
  /*display: none;*/
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /*top: 0;*/
  top: 55%;
  /*background-color: white;*/
  padding: 0;
}

.cardDesc {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  text-align: center;
}

.card-title {
  font-size: 0.8rem !important;
}

@media (max-width: 768px) {
  .seven-cols .card {
    overflow: visible;
  }

  .seven-cols .mb-5, .seven-cols .my-5 {
    margin-bottom: 7rem !important;
  }

  .seven-cols .card .card-body {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 25px;
    background-color: white;
    padding: 0;
  }
}

#NatalVid {
  pointer-events: none;
  width: 100%;
  margin-bottom: 50px;
}

.title {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  left: 5%;
  color: white;
}

.title h2 {
  /*font-size: 2vw;*/
  font-size: 20pt;
}

.title hr {
  width: 100%;
  border-bottom: 2px solid #ccc;
}

.title.float-right {
  top: 70%;
  right: 5%;
  left: auto;
  text-align: right;

}

#vidFlag {
  width: 100%;
}

.titleSobre {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  color: white;
}

.titleSobre h2 {
  position: absolute;
  top: 20%;
  left: 5%;
  right: 40%;
  font-size: 13pt;
  font-weight: 500;
  margin: 0;
}

.titleSobre p {
  position: absolute;
  bottom: 20px;
  left: 5%;
  font-size: 7pt;
  margin: 0;
}

.barra1 {
  border-right: 5px solid green;
}

.barra2 {
  border-right: 5px solid red;
  margin-right: 5px;
}

@media (max-width: 986px) {
  .titleSobre h2 {
    font-size: 9pt;
  }
}

/*@media (max-width: 768px) {*/
/*  .title h2 {*/
/*    font-size: 13pt;*/
/*  }*/
/*}*/


/*VideoScale*/
.videoSection {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

#video-elem {
  position: absolute;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

/*VideoScale*/

#services {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  margin-bottom: 60px;
}

.contServ {
  max-width: 1400px;
}

#pages {
  /*background: white;*/
  background-size: cover;
  /*padding: 60px 0 40px 0;*/
  padding: 60px 0 0 0;
  position: relative;
}

#fsInfo {
  position: relative;
}

#fsInfo #FSVid {
  pointer-events: none;
  width: 100%;
  margin-bottom: 50px;
}

#fsInfo .allInfo {
  position: absolute;
  top: 50px;
  right: 50px;
  color: white;
  width: 100%;
  text-align: right;
}

containerAlt {
  padding: 0 5% 0 5%;
}

#sustentabilidade img {
  width: 100%;
}

#sustentabilidade .info {
  position: absolute;
  top: 40%;
  right: 50px;
  color: white;
  width: 100%;
  text-align: right;
}

#sustentabilidade .info hr {
  width: 300px;
  border-bottom: 2px solid #ccc;
}


#veraoseguro img {
  width: 100%;
  margin-bottom: 50px;
}

#veraoseguro .info {
  position: absolute;
  top: 55%;
  right: 50px;
  color: white;
  width: 100%;
  text-align: right;
}

#veraoseguro .info hr {
  width: 300px;
  border-bottom: 2px solid #00b4e8;
}

@media (max-width: 1000px) {
  #fsInfo #FSVid {
    height: 440px;
    object-fit: cover;
  }
}

@media (max-width: 780px) {
  #fsInfo #FSVid {
    height: 440px;
    object-fit: cover;
  }

  #fsInfo .allInfo {
    right: 0;
    padding: 20px;
  }

  #sustentabilidade img {
    height: 440px;
    object-fit: cover;
  }

  #sustentabilidade .info {
    right: 25px;
  }

  #veraoseguro img {
    height: 440px;
    object-fit: cover;
    object-position: 100% 50%;
  }

  #veraoseguro .info {
    right: 25px;
  }
}


#firstText {
  margin-bottom: 50px;
  text-align: justify;
}

.titleCom {
  font-family: "Agency FB";
  font-weight: bold;
  font-size: 2.5em;
  text-align: center;
  padding: 0 2%;
}

#allText {
  color: #231f4c;
  text-align: justify;
  margin-bottom: 50px;
}

.card {
  border: 0px;
  background-color: white;
  overflow: hidden;
}

.card .card-links {
  display: block;
  transform-origin: 100% 50%;
  transition: transform .4s ease-out; /* smoother zoom */
}

.card .card-rec {
  display: block;
  transform-origin: 0 50%;
  transition: transform .4s ease-out; /* smoother zoom */
}

.card .card-rec-right {
  display: block;
  transform-origin: 100% 100%;
  transition: transform .4s ease-out; /* smoother zoom */
}

.card .card-rec-center {
  display: block;
  transform-origin: 50% 50%;
  transition: transform .4s ease-out; /* smoother zoom */
}

.card .card-links:hover, .card .card-rec:hover, .card .card-rec-center:hover {
  transform: scale(1.1) translateX(0);
}

.carouselFloatRight {
  float: right;
}

.carouselHRRed {
  width: 300px;
  border-bottom: 2px solid #cc112c;
}

.carouselPRight {
  text-align: right;
  text-align-last: right;
}

/*#recom [class*='col-']{*/
/*  display: flex;*/
/*}*/

.btnEco {
  display: none;
  background-color: #98a972;
  color: #ffffff;
  border-radius: 20px;
  border: 0px;
  font-size: 10pt;
  width: 90px;
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.btnDebito {
  display: none;
  background-color: #425c77;
  color: #ffffff;
  border-radius: 20px;
  border: 0px;
  font-size: 10pt;
  width: 90px;
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.btnRecruta {
  display: none;
  background-color: #381315;
  color: #ffffff;
  border-radius: 20px;
  border: 0px;
  font-size: 10pt;
  width: 90px;
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.btnContacto {
  display: none;
  background-color: #746b6b;
  color: #ffffff;
  border-radius: 20px;
  border: 0px;
  font-size: 10pt;
  width: 90px;
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.btnSobre {
  display: none;
  background-color: #ffffff;
  color: #11114c;
  border-radius: 20px;
  border: 0px;
  font-size: 10pt;
  width: 90px;
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

#recomendComp {
  background-color: #ededed;
}

#bannerCovid img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

#recom {
  /*background: white;*/
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

@media (max-width: 768px) {
  #recom {
    /*background: white;*/
    background-size: cover;
    padding: 20px 0 40px 0;
    position: relative;
  }
}

#recom .container {
  position: relative;
  z-index: 10;
}

#recom .recom-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#recom .view {
  width: 100%;
  height: 100%;
  background-color: white;
  /*padding: 53px*/
}

#recom .view img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#h3Covid {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 50px;
}

.lastRecom {
  background-color: transparent;
}

.FRecom {
  margin-bottom: 15px;
}

.SRecom {
  padding: 0px;
  background-color: white;
}

.TRecom {
  padding: 20px;
  background-color: white;
}


/*@media (min-width: 768px){*/
/*  .seven-cols .col-md-1,*/
/*  .seven-cols .col-sm-1,*/
/*  .seven-cols .col-lg-1  {*/
/*    width: 100%;*/
/*    *width: 100%;*/
/*    !*flex: 0 0 14.285714285714285714285714285714%;;*!*/
/*    !*max-width: 14.285714285714285714285714285714%;;*!*/
/*    flex: 0 0 12.5%;*/
/*    max-width: 12.5%;*/
/*  }*/
/*}*/

@media (min-width: 992px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    /*width: 14.285714285714285714285714285714%;*/
    /**width: 14.285714285714285714285714285714%;*/
    flex: 0 0 12.5%;
    max-width: 12.5%;
    width: 12.5%;
    *width: 12.5%;
  }
}

/**
 *  The following is not really needed in this case
 *  Only to demonstrate the usage of @media for large screens
 */
@media (min-width: 1200px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    /*width: 14.285714285714285714285714285714%;*/
    /**width: 14.285714285714285714285714285714%;*/
    flex: 0 0 12.5%;
    max-width: 12.5%;
    width: 12.5%;
    *width: 12.5%;
  }
}


#card-acores {

  content: url("/img/Index/card_compromisso.jpg");

}

#compromisso-card::before {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 364px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(56, 61, 72, 0.2);
}


#card-mapa, #card-acores {
  max-height: 364px;

}

.webp #card-acores {
  content: url("/img/Index/card_compromisso.webp");

}


@media only screen and (max-width: 760px) {


  #card-mapa, #card-acores {
    height: 440px;
    max-height: 440px;

  }

  #card-acores {

    content: url("/img/Index/card_compromissoMobile.jpg");
    position: center;

  }

  .webp #card-acores {
    content: url("/img/Index/card_compromissoMobile.webp");

  }

  #compromisso-card::before {

    max-height: 100%;
  }

}


/*-----------------------------------Modal-----------------------*/

.modal {
  /* This way it could be display flex or grid or whatever also. */
  display: flex;
  flex-direction: row;
  visibility: hidden;

  /* Probably need media queries here */
  width: 800px;
  max-width: 100%;
  height: 500px;
  max-height: 100%;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;

  /* Use this for centering if unknown width/height */
  transform: translate(-50%, -50%);

  /* If known, negative margins are probably better (less chance of blurry text). */
  /* margin: -200px 0 0 -200px; */

  background: transparent;
  /*border-radius: 10px;*/
  /*box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);*/
  padding: 20px;

}

#modal-objetivos #img1 {

  /*object-fit: cover;*/
  /*height: 100%;*/
  width: 100%;
  flex-grow: 1;
  /*overflow: hidden;*/

}


#modal-objetivos .modal-content {

  justify-content: center;

}

#close-button-objetivos {
  top: 40px;
  right: 40px;

}


.modal-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  border-radius: 10px;
  border-color: #000000;
  border-width: 0;
  background-color: transparent;

  flex-direction: row;
}


.show .modal-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.show {

  visibility: visible;

}

.modal-overlay.show {
  /*display: none;*/
  visibility: visible;
  background: rgba(0, 0, 0, 0.6);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;

  background: rgba(0, 0, 0, 0);
  visibility: hidden;

  /*animation: fadeIn linear 1s;*/
  /*-webkit-animation: fadeIn linear 1s;*/
  /*-moz-animation: fadeIn linear 1s;*/
  /*-o-animation: fadeIn linear 1s;*/
  /*transition: all ease 1s;*/
  transition: all ease 0.5s;
}


.modal .close-button {
  position: absolute;

  /* don't need to go crazy with z-index here, just sits over .modal-guts */
  z-index: 1;

  /*top: 3px;*/
  top: -12px;

  /* needs to look OK with or without scrollbar */
  right: -12px;

  width: 30px;
  height: 30px;
  align-content: center;
  text-align: center;

  background: url("/img/Index/close_btn.png");
  background-size: contain;

  border-radius: 50%;
  border: 0;

}

.modal .close-button:hover {

  transform: scale(1.1);
}


.modal-left {

  width: 600px;
  height: 100%;

}

.modal-left p {

  font-family: "Agency FB";
  font-weight: 600;
  font-size: 18pt;
  position: absolute;
  text-align: center;
  top: 20px;
  width: 600px;
  color: white;
}


.img-modal {

  width: 600px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.modal-guts {
  width: 700px;
  max-width: 100%;
  height: 100%;
  overflow: auto;
  padding-top: 20px;
  /*padding: 20px 50px 20px 20px;*/
  background-color: #ebf3f5;
  border-radius: 0 10px 10px 0;
}

.title-modal {

  background-color: #2b5026;
  color: white;
  /*font-family: "Agency FB", sans-serif;*/
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  font-size: 14pt;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 20px;

}

.title-modal p, p.text-modal {
  margin: 0;
  margin-bottom: 5px;

}

.subtitle-modal {
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 16pt;
  color: #2b5026;
  padding: 10px;

}

.text-modal {
  font-family: 'Quicksand', sans-serif;
  padding: 10px 20px;
  font-size: 12pt;
  font-weight: 500;

}

#conteudo-modal {

  position: absolute;
  display: flex;
  align-content: center;
  justify-content: center;
  /*width: 100%;*/
  text-align: center;
  /*margin-right: 20px;*/
  right: 20px;
  left: 20px;

}

#logoSegur {
  object-fit: none;
  /*height: 100%;*/
  /*width: 100%;*/
  /*flex-grow: 1;*/
  /*overflow: hidden;*/
  padding-top: 40px;
}

#formSubscribeNews {
  display: flex;
  flex-direction: column;
  padding-top: 15px;

}

#formSubscribeNews input {

  background-color: #333654;
  border-radius: 16px;
  padding: 6px;
  border-color: #333654;
  border-width: 1px;
  border-style: solid;
  text-align: center;
  width: 250px;
  color: white;
  margin-bottom: 5px;
  font-size: 11pt;

}


#btnSubmitNews {

  background-color: #33A8FF;
  background-size: 0% 100%;

  display: inline-block;
  transition: background-color .5s;
  border-radius: 16px;
  padding: 6px;
  border-color: #333654;
  border-width: 1px;
  border-style: solid;
  width: 150px;
  color: white;
  font-size: 11pt;
}

#btnSubmitNews:hover {
  background-color: #26294B;
  /*background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .7) 100%);*/
  background-image: linear-gradient(90deg, #26294B, #33A8FF);
  background-repeat: no-repeat;
  background-size: 150% 100%;
  transition: background-size 1s, background-color 1s;
}

#btnSubmitNews:active {
  background-color: #2980b9;
  transition: background-size 0s;
}

/*#btnSubmitNews {*/
/*  background: linear-gradient(90deg, var(--myColor1), var(--myColor2));*/
/*  transition: all 3s;*/
/* */
/*}*/

/*#btnSubmitNews:hover {*/
/*  --myColor1: #3d3f65;*/
/*  --myColor2: #66ff33;*/
/*}*/

#social-landing {
  padding-top: 10px;
}

#social-landing i {
  color: white;
  font-size: 1.33em;

  width: 37px;
  /*height: 45px;*/
  padding: 6px;
  border: solid 2px transparent;

}

#social-landing i:hover {

  border-radius: 50%;
  border: solid 2px white;

}

#linkProtecao:hover {
  text-decoration: underline;
}

#miniaturaNewsletter{

  position: absolute;
  z-index: 1000;
  top: 40px;
  left: 40px;
  height: auto;
  width: 50%;
}

.textRecom{
  position: absolute;
  right: 0;
  top: 20px;
  left: auto;
  z-index: 1001;
  font-family: "Agency FB", sans-serif;
  font-weight: normal;
  font-size: 25px;
  color: white;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
  border-color: white;
  border-width: 0 0 2px 0;
  border-style: solid;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.6);
  padding: 0 15px 0 5px;
  transition: all 0.5s;
}

#cardSubscribe:hover{
  /*transition: all 0.5s;*/
  cursor: pointer;
  /*transform: scale(1.1);*/
  /*-webkit-transform: scale(1.1); !* Saf3.1+, Chrome *!*/
  /*-moz-transform: scale(1.1); !* FF3.5+ *!*/
  /*-ms-transform: scale(1.1); !* IE9 *!*/
  /*-o-transform: scale(1.1); !* Opera 10.5+ *!*/
}


@media only screen and (max-width: 760px) {

  #logoSegur {
    -webkit-transform: scale(0.8); /* Saf3.1+, Chrome */
    -moz-transform: scale(0.8); /* FF3.5+ */
    -ms-transform: scale(0.8); /* IE9 */
    -o-transform: scale(0.8); /* Opera 10.5+ */
    transform: scale(0.8);
  }

  #btnSubmitNews {
    background-color: #26294B;
    background-image: linear-gradient(90deg, #26294B, #33A8FF);
    background-size: 150% 100%;
  }
}
