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

:root {
  --brand: #ff4d29;
  --dark: #092032;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--body);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
  font-weight: 700;
  color: var(--dark);
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img {
  /* width: 100%; */
}

a {
  color: var(--dark);
  transition: all 0.4s ease;
  font-weight: 500;
}

a:hover {
  color: var(--brand);
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-brand {
  color: var(--brand) !important;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
  background-color: rgba(255, 255, 255, 0.3) !important;
  width: 60px !important;
  height: 60px !important;
  display: block;
  display: grid;
  place-items: center;
  color: #fff !important;
  border-radius: 100px;
  line-height: 0;
  border-radius: 100px !important;
  position: absolute;
  top: 50%;
  font-weight: 600 !important;
  font-size: 12px !important;
  transition: all 0.4s ease;
  margin-top: -30px !important;
}

.owl-prev {
  left: 0;
}
.owl-next {
  right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
  background-color: var(--brand) !important;
}

.owl-dot.active span {
  background-color: var(--brand) !important;
}

/* slide */
.slide {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/bg_banner1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .slide1 {
    background-position: left center;
  }
}
.slide2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/bg_banner1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide .display-3 {
  text-transform: uppercase;
  color: #fff;
}

/* navbar */
.top-nav {
  background-color: var(--brand);
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}

.top-nav p {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
}

.top-nav span,
.top-nav i {
  vertical-align: middle;
}

.navbar {
  box-shadow: var(--shadow);
}

.social-icons a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.social-icons a:hover {
  background-color: #fff;
  color: var(--brand);
}
.conditions-section {
  margin: 20px 0;
}
.conditions-section a {
  color: #fff;
  margin: 0 10px;
}

.navbar .navbar-nav .nav-link {
  color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--brand);
}

.navbar .navbar-nav .nav-link.active {
  color: var(--brand);
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
}

.navbar-brand .dot {
  color: var(--brand);
}

.btn {
  padding: 8px 26px;
}

.btn-brand {
  border-color: var(--brand);
  background-color: var(--brand);
  color: #fff;
}

.btn-brand:hover {
  background-color: #d64022;
  border-color: #d64022;
  color: #fff;
}

.intro {
  margin-bottom: 36px;
  text-align: center;
}

.intro p {
  max-width: 500px;
}
.intro h6 {
  color: var(--brand);
  font-weight: 400;
  text-transform: uppercase;
}

.intro h1 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.info-box {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.info-box img {
  width: 90px;
}

#milestone {
  background:
    linear-gradient(rgba(255, 77, 41, 0.85), rgba(255, 77, 41, 0.85)),
    url(../img/bg_banner1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#milestone h1,
#milestone p {
  color: #fff;
}

.service {
  padding: 32px;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.service h5 {
  margin-top: 24px;
  margin-bottom: 14px;
}

.service img {
  width: 90px;
}

.project {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.project h6 {
  font-weight: 400;
}

.project h6::before {
  content: "";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 10px;
}

.project .overlay {
  width: 100%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 76, 41, 0) 0%,
    var(--dark) 100%
  );
}

.project .content {
  position: absolute;
  left: 10%;
  bottom: 10%;
}

.project h2,
.project h6 {
  color: #fff;
}

.team-member {
  text-align: center;
}

.team-member .image {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.team-member .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -10%;
  background-color: rgba(255, 77, 41, 0.7);
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member h5 {
  margin-top: 16px;
  margin-bottom: 4px;
}

.team-member .social-icons {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member .social-icons a {
  width: 40px;
  height: 40px;
}

.team-member:hover .social-icons {
  top: 50%;
  opacity: 1;
}

.team-member:hover .overlay {
  top: 0%;
  opacity: 1;
}

#reviews {
  background:
    linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)),
    url(../img/bg_banner1.jpg), #082032;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.review {
  text-align: center;
  z-index: 2;
  position: relative;
  margin: 15px;
  max-width: 768px;
  margin: auto;
}

.review .bxs-quote-alt-left {
  font-size: 120px;
  position: absolute;
  opacity: 0.1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.review img {
  width: 80px !important;
  height: 80px;
  border-radius: 100px;
  margin: auto;
}

.review h5 {
  margin-top: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.review h3 {
  margin-top: 26px;
  margin-bottom: 26px;
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  line-height: 1.7;
}

.review small {
  color: var(--brand);
}

.review .stars {
  color: var(--brand);
}

.blog-post {
  position: relative;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.blog-post .content {
  padding: 32px;
}

.blog-post a {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--brand);
  padding: 2px 12px;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
}

.blog-post h5 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.blog-post small {
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: underline;
}

footer {
  background:
    linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9)),
    url(../img/bg_banner1.jpg), #082032;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer .footer-top {
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  padding-top: 20px;
}

footer .navbar-brand {
  color: #fff;
}

footer p {
  color: #adb3b9;
}

footer .social-icons a {
  width: 50px;
  height: 50px;
  font-size: 20px;
  margin-left: 4px;
  margin-right: 4px;
}

.loader {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  z-index: 99999;
  position: fixed;
  left: 0;
  right: 0;
}

input.form-control {
  border-color: transparent;
  height: 44px;
}

.form-control {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.04);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--brand);
}

/* ========================================================================== */
/* SECCION CINTILLA CALL TO ACTION */
/* ========================================================================== */
/* ── CTA BAND ── */
.cta-band {
  background: #c8102e; /* rojo principal */
  padding: 72px 5%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.5px;
}

.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  line-height: 1.6;
}

/* Contenedor de botones */
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Botón blanco */
.btn-white {
  background: #ffffff;
  color: #c8102e;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Botón WhatsApp */
.btn-wa-big {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wa-big:hover {
  background: #1da855;
  transform: translateY(-2px);
}

/* ========================================================================== */
/* SECCION COMO FUNCIONA */
/* ========================================================================== */
/* SECCIÓN */
.proceso-section {
  padding: 90px 5%;
  background: #f3f4f6;
}

/* CONTENEDOR */
.proceso-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* EYEBROW */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #c8102e;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* TITULO */
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  color: #1f2937;
  margin-bottom: 40px;
}

.section-title span {
  color: #c8102e;
}

/* STEPS */
.proceso-steps {
  display: flex;
  flex-direction: column;
}

/* STEP */
.step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

/* NUMERO */
.step-num {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c8102e;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITULO STEP */
.step-title {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPCION */
.step-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 500px;
}

/* ───── CARD ROJA ───── */
.proceso-visual {
  display: flex;
  justify-content: center;
}

.info-box_1 {
  background: linear-gradient(135deg, #c8102e, #e11d48);
  color: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  max-width: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* EFECTO CIRCULOS DECORATIVOS */
.info-box_1::before,
.info-box_1::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.info-box_1::before {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -60px;
}

.info-box_1::after {
  width: 160px;
  height: 160px;
  bottom: -60px;
  left: -60px;
}

/* TITULO CARD */
.info-box_1 h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

/* TEXTO */
.info-box_1 p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ITEMS */
.info-item {
  background: rgba(255, 255, 255, 0.12);
  padding: 14px;
  border-radius: 10px;
}

/* VALOR */
.info-item-val {
  font-size: 18px;
  font-weight: 800;
}

/* LABEL */
.info-item-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .proceso-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .step {
    flex-direction: row;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .proceso-section .btn {
    width: 100%;
  }
}

/* ========================================================================== */
/* SECCION QUIENES SOMOS */
/* ========================================================================== */

.ns-section {
  padding: 90px 0;
  background: #f5f6f7;
}

/* TITULOS */
.ns-eyebrow {
  color: #ff3b1f;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ns-title {
  font-size: 3rem;
  /* font-size: clamp(42px, 5vw, 68px); */
  font-weight: 800;
  color: #0f172a;
  margin: 10px 0 15px;
}

.ns-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* ITEMS */
.ns-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* ICONO CIRCULAR */
.ns-icon {
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff3b1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* TEXTO ITEM */
.ns-item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f172a;
}

.ns-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  max-width: 380px;
}

/* ESPACIADO ENTRE ITEMS */
.ns-item + .ns-item {
  margin-top: 30px;
}

/* IMAGEN CIRCULAR */
.ns-img-wrap {
  position: relative;
  display: inline-block;
}

.ns-img-wrap img {
  width: 100%;
  max-width: 420px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* BORDE ROJO CIRCULAR */
.ns-img-wrap::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border: 10px solid #ff3b1f;
  border-radius: 50%;
  top: -5%;
  left: -5%;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ns-title {
    font-size: 28px;
  }

  .ns-img-wrap {
    margin-top: 40px;
  }
}
/* PALOMITA */
.ns-check {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.titulo_seccion {
  font-size: 3rem !important;
  /* font-size: clamp(42px, 5vw, 68px); */
}

/* ========================================================================== */
/* SCROOL PARA EL MENU */
/* ========================================================================== */

.scroll-offset {
  scroll-margin-top: 100px; /* ajusta según altura de tu navbar */
}
.navbar .nav-link.active {
  color: #fe3232 !important;
  font-weight: 600;
}

.navbar .nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fe3232;
  margin-top: 4px;
}

.logo-dimecred {
  max-height: 120px;
  transition: all 0.3s ease;
}

.logo-dimecred.small {
  max-height: 90px;
}

/* ========================================================================== */
/* TESTIMONIALES */
/* ========================================================================== */
/* ICONO DE USUARIO TESTIMONIAL */
.person-icon {
  width: 70px;
  height: 70px;
  background: #fe3232;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  box-shadow: 0 10px 25px rgba(254, 50, 50, 0.3);
}

.person-icon i {
  font-size: 32px;
  color: #fff;
}
/* ========================================================================== */
/* BENEFICIOS */
/* ========================================================================== */
/* SECCIÓN */
.dc-benefits {
  padding: 80px 0;
  background: #ffffff;
}

/* HEADER */
.dc-benefits-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.dc-benefits-header p {
  color: #64748b;
  margin-bottom: 40px;
}

/* CARD */
.dc-benefit-card {
  position: relative;
  padding: 30px;
  border-radius: 14px;
  background: #f8fafc;
  transition: 0.3s;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.dc-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* NÚMERO */
.dc-benefit-num {
  font-size: 32px;
  font-weight: 700;
  color: #fe3232;
  margin-bottom: 10px;
}

/* TITULO */
.dc-benefit-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXTO */
.dc-benefit-card p {
  color: #64748b;
  font-size: 14px;
}

/* LINK */
.dc-benefit-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #fe3232;
  text-decoration: none;
}

.dc-benefit-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dc-benefit-card {
    padding: 20px;
  }
}
/* ========================================================================== */
/* FOOTER */
/* ========================================================================== */
/* FOOTER GENERAL */
.footer-dimecred {
  background: #0f172a;
  color: #cbd5f5;
  font-size: 14px;
}

.footer-dimecred a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-dimecred a:hover {
  color: #fe3232;
}

/* TOP */
.footer-top {
  padding: 60px 0;
}

/* BRAND */
.footer-brand {
  color: #fff;
  font-weight: 700;
}

.footer-brand span {
  color: #fe3232;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  border-radius: 50%;
  margin-right: 8px;
}

.footer-social a:hover {
  background: #fe3232;
  color: #fff;
}

/* LISTAS */
.footer-dimecred ul {
  list-style: none;
  padding: 0;
}

.footer-dimecred ul li {
  margin-bottom: 8px;
}

/* CONTACTO */
.footer-contact i {
  color: #fe3232;
  margin-right: 6px;
}

/* BOTÓN */
.btn-footer {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #fe3232;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
}

.btn-footer:hover {
  background: #e11d1d;
}

/* BOTTOM */
.footer-bottom {
  background: #020617;
  padding: 15px 0;
  font-size: 13px;
}

/* ========================================================================== */
/* FORMULARIO */
/* ========================================================================== */

/* SECCIÓN */
.dc-form-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* CONTENEDOR */
.dc-form-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.dc-form-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.dc-form-header p {
  color: #64748b;
  margin-bottom: 30px;
}

/* INPUTS */
.dc-form input,
.dc-form select,
.dc-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  font-size: 14px;
}

.dc-form input:focus,
.dc-form select:focus,
.dc-form textarea:focus {
  border-color: #fe3232;
  box-shadow: 0 0 0 3px rgba(254, 50, 50, 0.1);
}

/* BOTÓN */
.dc-btn {
  background: #fe3232;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.dc-btn:hover {
  background: #e11d1d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dc-form-wrapper {
    padding: 25px;
  }
}

.dc-error {
  font-size: 12px;
}

.dc-form input.error,
.dc-form select.error {
  border-color: #fe3232;
}

/* ========================================================================== */
/* QUIENES-SOMOS */
/* ========================================================================== */
.contenido-texto h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.contenido-texto p {
  font-size: 16px;
  line-height: 1.6;
}

/* ========================================================================== */
/* SECCION CONTACTO */
/* ========================================================================== */
.contacto-split {
  width: 100%;
}

/* LADO IZQUIERDO */
.contacto-info {
  background: #f8f9fa;
  min-height: 500px;
}

.contenido h2 {
  font-weight: 700;
}

/* LADO DERECHO (IMAGEN COMO BACKGROUND) */
.contacto-img {
  background: url("../img/atencion-telefono.jpg") center center / cover
    no-repeat;
  min-height: 500px;
}

/* BOTONES */
.contacto-split .btn-success {
  background-color: #25d366;
  border: none;
}

.contacto-split .btn-primary {
  background-color: #0d6efd;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contacto-img {
    min-height: 300px;
  }

  .contacto-info {
    text-align: center;
  }

  .contenido {
    padding: 30px;
  }
}

/* ========================================================================== */
/* OTROS CONVENIOS */
/* ========================================================================== */

#convenios {
  background: #f8f9fa;
}

.convenio-card {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.convenio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.convenio-card img {
  max-height: 60px;
  object-fit: contain;
}

/* ========================================================================== */
/* BOTON WHATSAPP FLOTANTE */
/* ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  font-size: 3.5rem !important;
  background: #e11d1d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}
