@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap");
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

*,
*::before,
*::after {
  outline: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html.contrast {
  filter: grayscale(100%);
}

#wpadminbar {
  position: fixed !important;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body,
input,
textarea,
button {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 130%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilda Display", serif;
  color: #57575a;
  margin-top: 0;
  margin-bottom: 1rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #5a2a57;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
}
h1 strong {
  color: #5a2a57;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}
h2 strong {
  color: #5a2a57;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 23px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}

a {
  text-decoration: none;
  transition: 0.3s all;
  color: #666;
}
a:hover {
  opacity: 0.7;
}

.btn {
  background: linear-gradient(135deg, #5a2a57 0%, #5a2a57 100%);
  border-radius: 8px;
  padding: 16px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px); /* leve elevação */
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
}

.overflow {
  width: 100%;
  overflow: auto;
}

*::-webkit-scrollbar {
  width: 9px !important;
  height: 9px !important;
}

*::-moz-scrollbar {
  width: 9px !important;
  height: 9px !important;
}

*::-webkit-scrollbar-track {
  background-color: rgba(102, 102, 102, 0.15) !important;
}

*::-moz-scrollbar-track {
  background-color: rgba(102, 102, 102, 0.15) !important;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(90, 42, 87, 0.75) !important;
}

*::-moz-scrollbar-thumb:hover {
  background: rgba(90, 42, 87, 0.75) !important;
}

*::-webkit-scrollbar-thumb:active {
  background: #5a2a57 !important;
}

*::-moz-scrollbar-thumb:active {
  background: #5a2a57 !important;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #57575a !important;
}

*::-moz-scrollbar-thumb {
  border-radius: 5px;
  background: #57575a !important;
}

.homeHighlights {
  padding: 4rem 0;
  background-color: #ffffff;
}
.homeHighlights__txt {
  text-align: center;
  padding-bottom: 32px;
}
.homeHighlights__item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  margin-bottom: 32px;
  gap: 32px;
}
@media (max-width: 1199px) {
  .homeHighlights__item {
    flex-direction: column;
  }
}
.homeHighlights__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .homeHighlights__item:nth-child(even) {
    flex-direction: column;
  }
}
.homeHighlights__item:hover {
  transform: translateY(-5px);
}
.homeHighlights__item .homeHighlights__content {
  text-align: left;
  max-width: 610px;
}
@media (max-width: 1199px) {
  .homeHighlights__item .homeHighlights__content {
    max-width: 100%;
  }
}
.homeHighlights__item .homeHighlights__content ul {
  padding-left: 24px;
}
.homeHighlights__item .homeHighlights__content ul li {
  list-style: disc;
  margin-bottom: 16px;
}
.homeHighlights__item .homeHighlights__image {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center;
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .homeHighlights__item .homeHighlights__image {
    height: 400px;
  }
}
.homeHighlights__item__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #5a2a57;
}
.homeHighlights__item__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f3b73;
  margin-bottom: 0.5rem;
}
.homeHighlights__item__text {
  font-size: 1rem;
  color: #444;
}
.homeHighlights__last {
  text-align: center;
}
.homeHighlights__btn {
  text-align: center;
}
.homeHighlights__btn .buttonHighlights {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #5a2a57;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.homeHighlights__btn .buttonHighlights:hover {
  background-color: #5a2a57, 8%;
}

.homeAbout {
  padding: 4rem 0;
  background-color: #f8f8f8;
  text-align: center;
}
.homeAbout .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .homeAbout .container {
    flex-direction: column;
  }
}
.homeAbout__content {
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 1199px) {
  .homeAbout__content {
    text-align: center;
  }
}
.homeAbout__img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 800px;
  height: 400px;
  border-radius: 16px;
}
.homeAbout__text p {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.homeAbout__text p strong {
  color: #1f3b73;
}
.homeAbout__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #5a2a57;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.homeAbout__button:hover {
  background-color: #5a2a57, 8%;
}

.homeCta {
  background-color: #1f3b73;
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
}
.homeCta__content {
  max-width: 700px;
  margin: 0 auto;
}
.homeCta__text * {
  color: white;
}
.homeCta__text h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}
.homeCta__button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #ffffff;
  color: #5a2a57;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.homeCta__button:hover {
  background-color: #ffffff, 5%;
  color: #5a2a57, 10%;
}

.homeMarcas {
  padding: 48px 0;
  background: #f9f9f9;
  text-align: center;
  border-radius: 16px;
  position: relative;
  /* Slick carousel lúdico */
  /* Responsivo */
}
.homeMarcas .slick-slider .slick-track,
.homeMarcas .slick-slider .slick-list {
  display: flex;
  padding-bottom: 16px;
}
.homeMarcas .marcas-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding-top: 32px;
}
.homeMarcas .marca-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 0 16px;
}
.homeMarcas .marca-item:hover {
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.homeMarcas .marca-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.homeMarcas .marca-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .homeMarcas .marcas-carousel {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .homeMarcas .marcas-carousel {
    gap: 10px;
  }
}

.aboutHero {
  padding: 4rem 0;
  background-color: #f8f8f8;
}
.aboutHero__container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .aboutHero__container {
    flex-direction: column;
  }
}
.aboutHero__text {
  flex: 1;
  min-width: 300px;
}
.aboutHero h2 {
  font-size: 2rem;
  color: #1f3b73;
  margin-bottom: 1rem;
}
.aboutHero p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}
.aboutHero p:not(:last-child) {
  margin-bottom: 1rem;
}
.aboutHero p strong {
  color: #5a2a57;
}
.aboutHero__image {
  flex: 1;
  min-width: 300px;
}
.aboutHero__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.aboutValues {
  padding: 4rem 0;
  background-color: #ffffff;
  text-align: center;
}
.aboutValues__intro {
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.aboutValues__intro p {
  font-size: 1.125rem;
  color: #444;
  line-height: 1.6;
}
.aboutValues__cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.aboutValues__card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.aboutValues__card:hover {
  transform: translateY(-5px);
}
.aboutValues__icon {
  font-size: 2rem;
  color: #5a2a57;
  margin-bottom: 1rem;
}
.aboutValues__label {
  font-weight: 600;
  font-size: 1rem;
  color: #1f3b73;
}

.aboutClosing {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
  text-align: center;
}
.aboutClosing__text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f3b73;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}
.aboutClosing__text h2 span {
  color: #1f3b73, 10%;
}
@media (max-width: 600px) {
  .aboutClosing__text {
    font-size: 1.5rem;
  }
}

.about__galeria {
  padding-bottom: 48px;
}
.about__galeria__txt {
  padding-top: 48px;
  text-align: center;
  margin-bottom: 32px;
}
.about__galeria .galeria-main {
  background: black;
  padding: 48px 32px 32px;
  border-radius: 16px;
}
.about__galeria .galeria-main .slick-prev::before,
.about__galeria .galeria-main .slick-next::before {
  color: #5a2a57;
  font-size: 32px;
}
.about__galeria .galeria-main .slick-prev {
  left: 16px;
}
@media (max-width: 767px) {
  .about__galeria .galeria-main .slick-prev {
    left: 0;
  }
}
.about__galeria .galeria-main .slick-next {
  right: 32px;
}
@media (max-width: 767px) {
  .about__galeria .galeria-main .slick-next {
    right: 10px;
  }
}
.about__galeria .galeria-item img {
  margin: 0 auto;
  max-height: 700px;
  border-radius: 8px;
  max-width: 90%;
}
@media (max-width: 767px) {
  .about__galeria .galeria-item img {
    max-height: 300px;
  }
}
.about__galeria .galeria-item.slick-current .txt {
  display: block;
}
.about__galeria .galeria-item .txt {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
}
.about__galeria .galeria-item .txt * {
  color: white;
}
.about__galeria .galeria-thumbs {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about__galeria .galeria-thumbs {
    margin-top: 32px;
  }
}
.about__galeria .galeria-thumbs img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .about__galeria .galeria-thumbs img {
    padding: 0 8px;
  }
}

.contactMap {
  width: 100%;
}
.contactMap__iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contactMap__iframe {
    height: 300px;
  }
}

.contactInfo {
  padding: 4rem 0;
  background-color: #f8f8f8;
  /* Cartões */
  /* Formulário */
  /* Container do CF7 */
  /* Inputs e textarea */
  /* Botão de envio */
  /* Mensagens de sucesso e erro */
  /* Responsividade */
}
.contactInfo__container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contactInfo__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-width: 280px;
}
.contactInfo__card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.contactInfo__card:hover {
  transform: translateY(-3px);
}
.contactInfo__card a {
  color: #1f3b73;
  text-decoration: none;
}
.contactInfo__card a:hover {
  text-decoration: underline;
}
.contactInfo__icon {
  font-size: 1.75rem;
  color: #5a2a57;
}
.contactInfo__text {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}
.contactInfo__form {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.contactInfo__form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contactInfo__form form br {
  display: none; /* Remove quebras de linha extras */
}
.contactInfo .contactInfo__form .wpcf7 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contactInfo .wpcf7-form input[type=text],
.contactInfo .wpcf7-form input[type=email],
.contactInfo .wpcf7-form input[type=tel],
.contactInfo .wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  resize: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contactInfo .wpcf7-form input[type=text]:focus,
.contactInfo .wpcf7-form input[type=email]:focus,
.contactInfo .wpcf7-form input[type=tel]:focus,
.contactInfo .wpcf7-form textarea:focus {
  border-color: #0072c6; /* azul principal */
  outline: none;
  box-shadow: 0 0 5px rgba(0, 114, 198, 0.4);
}
.contactInfo .wpcf7-submit {
  padding: 0.75rem 1.5rem;
  background-color: #800080; /* roxo/vinho do site */
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contactInfo .wpcf7-submit:hover {
  background-color: #660066; /* versão mais escura do roxo */
}
.contactInfo .wpcf7-response-output {
  margin-top: 1rem;
  font-weight: 500;
}
.contactInfo .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: green;
}
.contactInfo .wpcf7-response-output.wpcf7-validation-errors, .contactInfo .wpcf7-response-output.wpcf7-mail-failed {
  color: red;
}
@media (max-width: 768px) {
  .contactInfo .wpcf7-form {
    gap: 0.75rem;
  }
}
.contactInfo__success {
  margin-top: 1rem;
  color: green;
  font-weight: 500;
  display: none; /* Mostrado via JS após envio */
}
@media (max-width: 768px) {
  .contactInfo__container {
    flex-direction: column;
    gap: 2rem;
  }
}

.imgEffect {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .imgEffect {
    width: 100%;
  }
}
.imgEffect:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cardEffect {
  box-shadow: 0 4px 10px rgba(22, 17, 3, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.cardEffect:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.295);
}

.page-template-page-default .header {
  background: rgba(0, 0, 0, 0.85);
  transition: background 0.3s, position 0.3s;
}
.page-template-page-default .content-default {
  padding: 180px 0 90px;
}

.btnContacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btnContacto:hover {
  background: #5a2a57;
  color: white !important;
}
.btnContacto img {
  max-width: 24px;
}

.header {
  transition: background 0.3s, position 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 24px;
}
.header.fixed {
  position: fixed;
  /*background-color: rgba(31, 59, 115, 0.7);*/
  background-color:	#1f3b73; /* mesmo azul, 100% opaco */
  transition: background 0.3s, position 0.3s;
}
.header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  max-width: 200px;
}
@media (max-width: 1199px) {
  .header .logo {
    max-width: 180px;
  }
}
@media (min-width: 1200px) {
  .header .openMenu {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .header nav {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    background: white;
    padding: 48px 0;
    z-index: 1;
  }
  .header nav.active {
    right: 0;
  }
}
.header nav .closeMenu {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (min-width: 1200px) {
  .header nav .closeMenu {
    display: none !important;
  }
}
.header .primary-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .header .primary-menu {
    flex-direction: column;
  }
}
.header .primary-menu li a {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 4px;
}
@media (max-width: 1199px) {
  .header .primary-menu li a {
    color: #666;
  }
}
.header .primary-menu li a:hover {
  background: #5a2a57;
  color: white;
  opacity: 1;
}
.header .iconsHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .iconsHeader__item {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.header .iconsHeader__item:hover {
  transform: scale(1.05);
}
.header .iconsHeader__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  background-color: rgba(31, 59, 115, 0.6);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.banner-slick .slick-dots {
  bottom: 60px;
  z-index: 1;
}
.banner-slick .slick-dots li button:before {
  font-size: 24px;
  width: 32px;
  height: 32px;
  color: white;
}
.banner > .container {
  position: relative;
}
.banner h1 {
  text-align: center;
  margin: 16px auto;
  color: white;
}
.banner h2,
.banner h3,
.banner h4 {
  color: white;
}
.banner__txt {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.banner__txt h2 {
  font-weight: 500;
}
.banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  gap: 24px;
}
@media (max-width: 1199px) {
  .banner__btns {
    flex-direction: column;
  }
}
.banner__btns .btn {
  padding: 16px 24px;
}

.footer__top {
  background: #1f3b73;
}
.footer__top > .container {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding: 24px 0;
}
@media (max-width: 1199px) {
  .footer__top > .container {
    flex-direction: column;
    padding: 24px 16px;
    gap: 48px;
  }
}
.footer__top .logos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1199px) {
  .footer__top .logos {
    align-items: center;
    text-align: center;
  }
}
.footer__top .logos p {
  color: white;
}
.footer__top .logos .logo {
  max-width: 240px;
}
.footer__top .logos .logo-ppr {
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .footer__top .logos .logo-ppr {
    margin: 0;
  }
}
.footer__top .txt {
  text-align: center;
}
.footer__top .txt .linksSocials {
  padding-bottom: 16px;
}
.footer__top .txt .linksSocials > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__top .txt .linksSocials img {
  filter: brightness(0) invert(1);
}
.footer__top .txt * {
  color: white;
}
.footer__top .txt .btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 1199px) {
  .footer__top .txt .btns {
    align-items: center;
  }
}
.footer__top .txt .btns .btn {
  background: white;
  color: #666;
  min-width: 207px;
  opacity: 1;
}
.footer__top .txt .btns.contacto {
  flex-direction: row;
}
.footer__top .txt .btns.contacto .btn {
  background: white;
  max-width: 32px;
  max-height: 32px;
  text-align: center;
  min-width: inherit;
}
.footer__bottom {
  text-align: center;
  background: #1e1e1e;
  padding: 24px 0;
}
@media (max-width: 1199px) {
  .footer__bottom {
    padding: 24px 16px;
  }
}
.footer__bottom p {
  margin: 0;
  color: white;
}