/* Codelander v1.0 by Codefest */
/* TABLE OF CONTENTS */
/* ------------------
1. General
2. Navbar
3. Header
4. Strategy Section
5. Services Section
6. Pricing Section
7. Clients Section
8. News Section
9. Contact Section
10. Footer
-------------------- */

/* 1. GENERAL */

.hidden {
  display: none !important;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-os-font-smoothing: grayscale;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #fbfbfb;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
}

.padding-0 {
  padding: 0 !important;
}

.wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 !important;
  overflow: hidden;
}

button:focus {
  outline: none !important;
}

/* 2. NAVBAR */
.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: #fff !important;
  -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
  box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}

.header-scrolled .navbar-brand img {
  height: auto;
  margin-top: 32px;
}

.header-scrolled .nav-link-number {
  display: none;
}

.navbar {
  background-color: #fff;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.navbar-nav {
  align-items: center;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
}

.navbar-brand img {
  margin-left: 15px;
  height: auto;
}

.navbar-brand-menu {
  margin-right: 40px;
}

.menu-navbar-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-item {
  margin-left: 5px;
  margin-right: 5px;
}

.navbar-nav:not(.menu-navbar-nav) .nav-item:last-of-type {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.nav-item .nav-link {
  text-align: right;
}

.nav-item .nav-link:hover .nav-link-number {
  color: #2c2c2c !important;
}

.nav-item .nav-link:hover .nav-link-menu {
  color: #2c2c2c !important;
}

.nav-link-number {
  font-family: "Poppins", sans-serif;
  font-weight: 200 !important;
  font-size: 12px;
  color: #3c3c3ccc;
  letter-spacing: 1.5px;
  line-height: 1;
}

.nav-link-menu {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 18px;

  line-height: 1;
}

.nav-link-menu:hover {
  color: #2c2c2c;
}

.learn-more-btn {
  background-color: #3a88ec;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #fff;
  padding: 10px 12px !important;
  border-radius: 14px;
}


.btn-invert {
  background-color: #3a88ec !important;
}

.btn-invert:hover {
  background-color: #2c2c2c !important;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  font-size: 32px;
  padding: 15px 28px !important;
}

.owl-stage {
  margin: auto;
}

.contact-text>img {
  border-radius: 16px;
}

.clients-container {
  width: 100%;
  max-width: 520px;
  margin: 14px auto;
  padding: 0 12px;
  display: flex;
  gap: 14px;
}

@media screen and (max-width: 991.98px) {
  .navbar {
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
  }

  .clients-container {
    padding-top: 80px !important;
  }

  .navbar-brand img {
    padding: 0 0;
  }

  .header-scrolled .navbar-brand img {
    margin-top: 0;
  }

  .header-scrolled {
    height: auto;
  }
}

@media screen and (max-width: 575.98px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-navbar-nav {
    padding-bottom: 10px;
  }
}

/* 3. HEADER */
.header {
  display: flex;
  width: 100%;
  padding: 144px 0 25px 0;
  justify-content: center;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.header-img-section img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.header-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.5;
  padding-bottom: 10px;
}

.header-title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 55px;
  line-height: 1;
  padding-bottom: 25px;
  color: #2c435d;
}

.header-title-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 15px;
}

.learn-more-btn-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

@media screen and (max-width: 991.98px) {
  .header-container {
    flex-direction: column;
  }

  .header-title-section {
    text-align: center;
    margin-top: 40px;
  }

  .navbar-collapse {
    background-color: rgba(255, 255, 255, 1);
    color: #505050;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
  }

  .navbar-collapse .nav-link-menu {
    color: #505050;
  }

  .nav-link-number {
    color: #fff;
    display: none;
  }

  .nav-link-menu {
    color: #fff;
  }

  .learn-more-btn-section {
    justify-content: center;
  }
}

@media screen and (max-width: 799.98px) {
  .header {
    height: auto;
    padding-top: 20%;
  }

  .footer-sells {
    max-width: 450px;
  }
}

@media screen and (max-width: 499.98px) {
  .header {
    padding-top: 30%;
  }

  .header-subtitle {
    font-size: 24px;
  }

  .header-title {
    font-size: 46px;
  }

  .header-title-text {
    font-size: 18px;
  }

  .footer-sells {
    max-width: 350px;
  }
}

/* 5. SERVICES SECTION */
.services-section {
  position: relative;
}

.services-section-bg-graphics {
  position: absolute;
  width: 25%;
  left: -17%;
  top: -20%;
}

.services-section-bg-graphics img {
  width: 100%;
}

.services-container {
  position: relative;
  display: flex;
  padding-top: 55px;
  padding-bottom: 55px;
  flex-wrap: wrap;
}

.services-header-img-section img {
  width: 100%;
}

.services-title-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.services-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 2;
}

.services-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: #2c435d;
  margin-bottom: 20px;
}

.services-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
}

.services-accordion .accordion {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: #3a88ec;
  border-radius: 50px;
  padding: 10px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.services-accordion .panel>p>img {
  border-radius: 12px;
  max-width: 100%;
}

.services-accordion .accordion::after {
  color: #fff !important;
}

.accordion:active,
.accordion:hover {
  background-color: #2c435d !important;
}

.services-accordion .panel {
  background-color: transparent !important;
}

.services-accordion .panel p {
  color: #516a75;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

@media screen and (max-width: 991.98px) {
  .services-section .services-container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .services-container img {
    margin-bottom: 5px;
  }

  .services-title-section {
    text-align: center;
  }
}

/* 6. PRICING SECTION */
.pricing-section {
  display: flex;
  padding-top: 55px;
  padding-bottom: 55px;
  flex-wrap: wrap;
  position: relative;
}

.pricing-section-left-bg-graphics {
  position: absolute;
  top: -15%;
  right: -10%;
  z-index: -1;
}

.pricing-section-left-bg-graphics img {
  width: 100%;
}

.pricing-section-right-bg-graphics {
  position: absolute;
  left: -5%;
  bottom: -10%;
}

.pricing-section-right-bg-graphics img {
  width: 100%;
}

.pricing-container {
  background-color: transparent;
}

.pricing-title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pricing-title h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 45px;
  line-height: 1;
  color: #2c435d;
  margin-bottom: 20px;
}

.pricing-title p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 700px;
}

.featured {
  border: 7px dashed #78c2ff;
}

@media screen and (max-width: 991.98px) {
  .pricing-title p {
    max-width: 428px;
  }
}

/* 7. CLIENTS SECTION */
.clients-section {
  display: flex;
  background-color: transparent;
}

.clients-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5px;
  text-align: center;
}

.clients-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
}

.clients-title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 45px;
  line-height: 1;
  color: #2c435d;
  margin-bottom: 20px;
}

.client-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.client-logo-section img {
  height: auto;
  width: 144px !important;
  border-radius: 18px;
}

.client-logo-section>a {
  height: 144px;
}

.client-logo-section>a img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.owl-theme .owl-nav {
  display: none;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: #3c3c3ccc !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #3a88ec !important;
}

/* 8. NEWS SECTION */
.blog-section {
  display: flex;
  padding-top: 55px;
  padding-bottom: 55px;
  position: relative;
}

.blog-section-right-bg {
  position: absolute;
  top: 5%;
  right: 0%;
}

.blog-section-left-bg {
  position: absolute;
  bottom: 5%;
  left: 5%;
}

.blog-container {
  position: relative;
}

.blog-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  text-align: center;
}

.blog-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 2;
}

.blog-title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 45px;
  line-height: 1;
  color: #2c435d;
  margin-bottom: 0;
}

.blog-posts-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.blog-post-card-container {
  padding: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.blog-post-card {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 32px;
  padding: 12px 22px 32px;
}

.blog-post-card:hover {
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.blog-post-icon {
  margin-top: 10px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.blog-post-icon img {
  width: 100%;
  border-radius: 18px;
  height: auto;
}

.blog-post-title {
  font-size: 20px;
  color: #1f2224;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-align: center;
}

.blog-post-icon.container-img-rifa {
  overflow: hidden;
  height: auto;
  width: 100%;
  border-radius: 24px;
}

.blog-post-subtitle {
  font-size: 18px;
  color: #3c3c3ccc;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin: 12px auto 2px;
}

.blog-post-text {
  color: #193b61;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.blog-post-link {
  color: #a4c4f3;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}

.blog-post-link:hover {
  color: #2c435d;
  text-decoration: none;
}

.footer-logo img {
  border-radius: 18px;
}

#buttfixed {
  display: block;
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15px;
  right: 10px;
  border-radius: 50%;
  padding: 9px 12px;
  z-index: 3;
  user-select: none;
}

#buttfixed>i {
  color: #fff;
  font-size: 28px;
}

#buttfixed>span {
  font-size: 12px;
  position: relative;
  font-weight: 700;
  top: 5px;
  left: -2px;
}

#linksfixed {
  display: none;
  bottom: 66px;
  right: 10px;
  position: fixed;
  border-radius: 10px;
  z-index: 2;
  transition: all 0.92s;
}

#linksfixed i {
  position: relative;
  top: 2px;
  margin-right: 5px;
}

#linksfixed a {
  display: block;
  color: #fff;
  padding: 1px 15px;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 5px 0;
}

#linksfixed a.whatsapp {
  background: #4dc247;
  padding: 1px 12px;
}

#linksfixed a.facebook {
  background: #0184ff;
  font-size: 27px;
  padding: 5px 16px;
}

#linksfixed a.whatsapp:hover {
  box-shadow: 0 0 12px #5fa05c;
}

#linksfixed a.facebook:hover {
  box-shadow: 0 0 12px #3c6891;
}

.footer-section pre {
  color: #fff;
}

@media screen and (max-width: 991.98px) {
  .blog-posts-section {
    flex-direction: column;
  }
}

.suerte-section {
  margin: 2rem 0;
  background-color: #2b2b2b;
  padding: 2rem;
}

.suerte-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 5rem;
}

/* 9. CONTACT SECTION */
.contact-section {
  padding-top: 40px;
  padding-bottom: 90px;
}

.contact-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.contact-header-img-section {
  padding: 20px;
}

.contact-header-img img {
  width: 100%;
}

.contact-title-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.contact-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 2;
}

.contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 45px;
  line-height: 1;
  color: #2c435d;
  margin-bottom: 20px;
}

.contact-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 0;
}

.header pre {
  font-weight: 800;
  font-size: 1.2em;
}

pre {
  display: block;
  font-size: 16px;
  white-space: pre-wrap;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
  .contact-container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contact-title-section {
    text-align: center;
  }
}

/* 10. FOOTER SECTION */
.footer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px !important;
  position: relative;
  background-color: #193b61;
  color: #ffffff;
}

.footer-section .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-section .container p {
  font-size: 14px;
}

.footer-section a {
  color: #dbdbdb;
}

.footer-section-bg-graphics {
  position: absolute;
  right: -10%;
  bottom: 0%;
}

.footer-container {
  display: flex;
  position: relative;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-right: 40px;
}

.footer-logo img {
  width: 192px;
  margin-bottom: 15px;
}

.footer-logo p {
  max-width: 250px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.footer-form {
  padding-right: 0px !important;
}

.footer-subsection {
  padding-left: 40px;
  padding-right: 40px;
}

.footer-subsection-title {
  font-size: 27px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-subsection-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.footer-subsection-2-1 {
  margin-bottom: 20px;
}

.footer-subsection-2-2 {
  margin-bottom: 20px;
}

.footer-subsection-list {
  list-style: none;
  padding-left: 28px;
}

.footer-subsection-list li {
  font-size: 16px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  margin-top: 10px;
  display: table-row;
}

.footer-subsection-list li:after {
  content: "";
  display: block;
  margin-bottom: 10px;
}

.footer-subsection-list li:nth-child(1):before {
  font-family: "FontAwesome";
  content: "\f0ac";
  font-size: 20px;
  line-height: 1.25;
  left: 41px;
  position: absolute;
  display: table-cell;
  color: #fff;
}

.footer-subsection-list li:nth-child(3):before {
  font-family: "FontAwesome";
  content: "\f232";
  font-size: 20px;
  line-height: 1.25;
  left: 41px;
  position: absolute;
  display: table-cell;
  color: #fff;
}

.footer-subsection-list li:nth-child(4):before {
  font-family: "FontAwesome";
  content: "\f041";
  font-size: 20px;
  line-height: 1.25;
  left: 41px;
  position: absolute;
  display: table-cell;
  color: #fff;
}

.footer-subsection-list-call {
  color: #ffffff;
}

.footer-subsection-list-email {
  color: #ffffff;
}

.footer-subsection-list-call:hover {
  color: #2c435d;
  text-decoration: none;
}

.footer-subsection-list-email:hover {
  color: #2c435d;
  text-decoration: none;
}

.footer-social-media-icons-section {
  display: flex;
}

.footer-social-media-icon {
  justify-content: center;
  align-items: center;
  padding-right: 25px;
}

.footer-social-media-icon .fa {
  color: #ffffff;
  font-size: 29px;
  text-decoration: none !important;
}

.footer-social-media-icon .fa:hover {
  color: #3a88ec;
}

.footer-credits {
  padding-top: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-credits p {
  font-size: 16px;
  font-weight: 400;
  color: #dbdbdb;
  font-family: "Poppins", sans-serif;
}

.footer-credits a {
  font-weight: 500;
}

.footer-credits>a {
  opacity: 0.44;
}

.footer-credits>a:hover {
  opacity: 1;
}

.footer-credits>a {
  position: relative;
}

.footer-credits>a::before {
  content: "WEB PROGRAMADA POR";
  font-size: 9px;
  width: 202px;
  letter-spacing: 3px;
  position: absolute;
  top: -13px;
  left: -19px;
}

.footer-subsection-list li.webClient {
  width: 192px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body a,
body button,
.btn,
#buttfixed {
  transition: all 0.5s ease;
}

button.magic_button {
  padding: 6px 10px !important;
  border: 0;
  font-size: 18px;
  border-radius: 25px;
  margin: 1px 1px;
  cursor: pointer;
}

button.magic_button.copied::before {
  content: "COPIADO";
  width: 118px;
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  margin-top: 30px;
  margin-left: -50px;
}

.card {
  position: relative;
  background-color: #fff;

  border-radius: 16px;
  text-decoration: none !important;
  outline: none !important;
}

.card-text {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.card .img-primary {
  width: 100%;
  height: auto;
  min-height: 210px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}


.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc !important;
  border-radius: 50%;
}

.owl-dot.active {
  background: #2c2c2c !important;
}

.bi {
  color: #fff;
  font-size: 2rem;
}

.date {
  display: block;
  gap: 20px;
}

.date p a {
  font-weight: 900;
}

.is {
  margin: 0 10px;
  width: 16px;
  height: 16px;
  fill: white;
}

.contact .c {
  margin: 50px;
}

.contact-info {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  flex-wrap: wrap;
}

.im {
  font-size: 27px 19px;
  width: 42px;
  height: 42px;
  color: #ffff;
  fill: white;
}

.ib {
  width: 60px;
  height: 60px;
  fill: white;
}



.chat {
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  padding: 1rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;

  background: radial-gradient(900px 300px at 10% 0%, rgba(93, 23, 31, .06), transparent 55%),
    radial-gradient(900px 300px at 90% 0%, rgba(7, 208, 63, .05), transparent 55%),
    #dedede;
  padding: 0 16px 16px 16px;
  border-radius: 16px;
}

.card-blocks {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.card-block {
  background: rgba(15, 23, 42, .04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid #c4c4c4;
}

.dia {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.moneda {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;

  line-height: 1;
}

.precio {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.mes {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transform: capitalize;
}

.card-buttons {
  display: flex;
  gap: 10px;

  flex-direction: column;
}

.containerRaffle {
  display: flex;
  justify-content: center;
}

.one-card {
  display: flex;
  justify-content: center;
}

.hidden {
  display: none !important;
}

b {
  color: #000;
}

.dark {
  fill: #0e0e0e;
}

.huge {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.grey {
  fill: #474747;
  color: #474747;
  font-size: 17px;
  font-weight: 600;
}

@media screen and (max-width: 991.98px) {
  .footer-container {
    flex-wrap: wrap;
  }

  .footer-logo {
    padding-left: 40px;
  }

  .footer-form {
    padding-right: 40px !important;
  }

  .footer-subsection-form-input {
    width: 85%;
  }

  .services-accordion .panel {
    padding: 0;
  }
}

/* --- ESTILOS MODERNOS PARA EL CONTADOR DE CIERRE --- */
.countdown-container {
  background: rgba(42, 48, 66, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  margin: 10px auto;
}

.countdown-pulse {
  width: 12px;
  height: 12px;
  background: #ff4d4d;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 rgba(255, 77, 77, 0.4);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}

.countdown-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #a1a1a1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.countdown-timer {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Estado de ventas cerradas */
.sales-closed-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: grayscale(1) blur(4px);
  border-radius: 15px;
  padding: 20px;
  border: 2px solid rgba(220, 53, 69, 0.3);
}