/* ============================================================
   PREFABRICADOS TENCO — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2c3d;
  --navy-light: #243446;
  --red:        #f00500;
  --red-dark:   #a50d25;
  --white:      #ffffff;
  --off-white:  #f4f7fa;
  --gray-text:  #5a6a7a;
  --gray-light: #9aabb8;
  --border:     #dde4ed;
  --shadow-sm:  0 2px 12px rgba(13,27,42,.08);
  --shadow-md:  0 6px 28px rgba(13,27,42,.13);
  --shadow-lg:  0 12px 48px rgba(13,27,42,.18);
  --radius:     8px;
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.section-pad     { padding: 5rem 0; }
.text-accent     { color: var(--red); }

.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.section-eyebrow-light {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.section-title-lg {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title-xl {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-rule {
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 3px;
  margin-top: .25rem;
}

.section-header { margin-bottom: 3rem; }

.text-body-sm {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: var(--white);
  padding: .75rem 0;
  box-shadow: var(--shadow-sm);
  z-index: 1050;
  transition: padding var(--transition), box-shadow var(--transition);
}

#mainNav.scrolled {
  padding: .45rem 0;
  box-shadow: 0 4px 22px rgba(13,27,42,.15);
}

/* Brand */
.brand-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 2.5px;
}
.brand-sub {
  font-size: .47rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: .77rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .6px;
  padding: .55rem .8rem !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--red);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 65%;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem 0;
  min-width: 210px;
  animation: dropFade .2s ease;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  padding: .6rem 1.3rem;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown-item:hover {
  background: var(--off-white);
  color: var(--red);
  padding-left: 1.7rem;
}

/* CTA button */
.btn-cotiza {
  background: var(--red);
  color: var(--white) !important;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .6px;
  padding: .55rem 1.3rem;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}
.btn-cotiza:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200,16,46,.35);
}

/* Toggler */
.navbar-toggler {
  border: 1.5px solid rgba(13,27,42,.3);
  padding: .3rem .55rem;
  border-radius: 6px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13,27,42,.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus { box-shadow: none; }


/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,27,42,.92) 0%,
    rgba(13,27,42,.72) 55%,
    rgba(13,27,42,.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: .75rem;
  opacity: .9;
}

.hero-title {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  letter-spacing: -.3px;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.hero-divider {
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.dropdown-toggle::after{
  display: none;
}
.hero-text {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .6px;
  padding: .85rem 1.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}
.btn-hero:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,.15);
}

/* Hero Swiper nav */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 900;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,.45);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--red);
  width: 30px;
  border-radius: 5px;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 230px;
}

.about-badge-icon {
  font-size: 2.1rem;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
}

.about-badge-num {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.1;
}

.about-badge-lbl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .65;
  margin-top: .15rem;
}

/* Outline button */
.btn-outline-tenco {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: transparent;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .6px;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline-tenco:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}


/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  background: var(--off-white);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
}

.product-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-icon {
  position: absolute;
  bottom: -19px;
  left: 18px;
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(200,16,46,.45);
  z-index: 2;
  flex-shrink: 0;
}

.product-body {
  padding: 2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: .88rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .4px;
  line-height: 1.35;
  margin-bottom: .75rem;
  text-transform: uppercase;
}

.product-desc {
  font-size: .82rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  flex: 1;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .8px;
  padding: .55rem 1.3rem;
  border-radius: 5px;
  border: 2px solid var(--red);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-product:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateX(3px);
}


/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
  background: var(--navy);
}

.benefit-item {
  padding: 1.25rem .75rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
/* Remove right border on last visible item in row */
.col-lg-2:last-child .benefit-item,
.col-md-4:nth-child(5n) .benefit-item {
  border-right: none;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(200,16,46,.4);
  background: rgba(200,16,46,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.85rem;
  color: var(--red);
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}
.benefit-item:hover .benefit-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-5px);
}

.benefit-title {
  font-size: .75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.benefit-text {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--white);
}

.testimonials-swiper {
  padding-bottom: 3.5rem !important;
  padding-top: 15px;
}

.testi-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.testi-quote {
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: .5rem;
  opacity: .85;
}

.testi-text {
  font-size: .86rem;
  color: var(--gray-text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-name {
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.testi-role {
  font-size: .72rem;
  color: var(--gray-light);
  margin-top: .2rem;
  line-height: 1.35;
}

/* Testimonials Swiper nav */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  top: auto;
  bottom: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.testimonials-swiper .swiper-button-prev {
  left: calc(50% - 58px);
}
.testimonials-swiper .swiper-button-next {
  right: calc(50% - 58px);
  left: auto;
}
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: .85rem;
  font-weight: 900;
}
.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.testimonials-swiper .swiper-pagination {
  display: none;
}
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
  transition: all var(--transition);
}
.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--red);
  width: 22px;
  border-radius: 5px;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  /* stretch full width */
}

.contact-row {
  min-height: 640px;
}

/* Left info column */
.contact-info-col {
  background: var(--navy);
}

.contact-info-inner {
  padding: 5rem 3.5rem;
  height: 100%;
}

.contact-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.contact-rule {
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.contact-data-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-data-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,.75);
  font-size: .84rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.cdata-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(200,16,46,.14);
  border: 1px solid rgba(200,16,46,.25);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  margin-top: 2px;
}

.contact-social {
  display: flex;
  gap: .65rem;
}

.csocial-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}
.csocial-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

/* Right form column */
.contact-form-col {
  background: var(--white);
}

.contact-form-inner {
  padding: 5rem 3.5rem;
  height: 100%;
}

.form-heading {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
}

.form-sub {
  font-size: .84rem;
  color: var(--gray-text);
}

.form-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .3px;
  margin-bottom: .4rem;
}

.req {
  color: var(--red);
}

.form-control,
.form-select {
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: .65rem .95rem;
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3.5px rgba(200,16,46,.1);
  outline: none;
  color: var(--navy);
}

.form-control::placeholder {
  color: var(--gray-light);
  font-size: .82rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 1rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--red);
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.35);
}
.btn-submit:active {
  transform: translateY(0);
}

/* form validation colours */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--red);
}
.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  box-shadow: 0 0 0 3.5px rgba(200,16,46,.15);
}
.invalid-feedback {
  font-size: .74rem;
  color: var(--red);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background: var(--navy);
  color: rgba(255,255,255,.6);
}

.footer-main {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2.5px;
}
.footer-brand-sub {
  font-size: .46rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-top: .6rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: .6rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}
.footer-social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-link-list {
  list-style: none;
  padding: 0;
}
.footer-link-list li {
  margin-bottom: .55rem;
}
.footer-link-list a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-link-list a::before {
  content: '›';
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.footer-link-list a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
}
.footer-cert-icon {
  font-size: 2.2rem;
  color: var(--red);
  flex-shrink: 0;
}
.footer-cert-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.footer-cert-desc {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  line-height: 1.45;
  margin-top: .2rem;
}

.footer-contact-item {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-contact-item i {
  color: var(--red);
  font-size: .82rem;
  flex-shrink: 0;
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  filter: drop-shadow(0 4px 14px rgba(37,211,102,.45));
  transition: transform var(--transition), filter var(--transition);
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(37,211,102,.6));
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float img {
    width: 52px;
    height: 52px;
  }
}


/* ============================================================
   FOOTER BOTTOM
   ============================================================ */
.footer-bottom {
  background: rgba(0,0,0,.2);
}
.footer-copy {
  font-size: .77rem;
  color: rgba(255,255,255,.35);
}
.footer-policy {
  font-size: .77rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-policy:hover {
  color: var(--red);
}
.footer-policy-sep {
  color: rgba(255,255,255,.2);
  margin: 0 .5rem;
  font-size: .77rem;
}


/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--white);
}

.process-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  border-radius: var(--radius);
  border-top: 4px solid transparent;
  transition: border-top-color var(--transition), transform var(--transition), box-shadow var(--transition);
}


.process-step-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: background var(--transition), transform var(--transition);
}

.process-step:hover .process-step-icon {
  background: var(--red);
  transform: translateY(-3px);
}

.process-step-num {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: .55rem;
}

.process-step-title {
  font-size: .87rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.35;
  margin-bottom: .7rem;
}

.process-step-desc {
  font-size: .81rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 0;
}

.process-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7.35rem;
  font-size: 1.25rem;
  color: var(--red);
  opacity: .35;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Large tablets (≤ 991px) ---- */
@media (max-width: 991.98px) {
  .section-pad   { padding: 4rem 0; }
  .hero-swiper   { height: 82vh; min-height: 480px; }
  .hero-title    { font-size: clamp(1.5rem, 5vw, 2.6rem); }

  .about-img     { height: 380px; }

  .benefit-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 1.2rem .5rem; }

  .contact-info-inner,
  .contact-form-inner { padding: 3.5rem 2.5rem; }

  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next { display: none; }

  .process-wrapper    { flex-wrap: wrap; gap: 1.25rem; }
  .process-step       { flex: 0 0 calc(50% - .625rem); }
  .process-arrow      { display: none; }

  /* Logo compacto junto al hamburguesa */
  .navbar-brand img { height: 42px; width: auto; }

  /* Ocultar subrayado activo en menú vertical colapsado */
  .navbar-nav .nav-link::after,
  .navbar-nav .nav-link.active::after { display: none; }
}

/* ---- Tablets (≤ 767px) ---- */
@media (max-width: 767.98px) {
  .section-pad   { padding: 3.5rem 0; }
  .hero-swiper   { height: 88vh; min-height: 440px; max-height: 700px; }
  .hero-title    { font-size: 1.65rem; }
  .hero-text     { font-size: .87rem; }
  .btn-hero      { font-size: .78rem; padding: .72rem 1.3rem; }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next { width: 38px; height: 38px; }

  .about-img     { height: 300px; }
  .about-badge   { min-width: 190px; padding: 1rem 1.2rem; }

  .contact-info-inner,
  .contact-form-inner { padding: 3rem 1.75rem; }

  .contact-heading { font-size: 1.9rem; }

  .footer-col-title { margin-top: .25rem; }
}

/* ---- Mobile (≤ 575px) ---- */
@media (max-width: 575.98px) {
  .hero-swiper   { height: 92vh; }
  .hero-title    { font-size: 1.45rem; }
  .hero-eyebrow  { font-size: .65rem; }

  .navbar-brand img { height: 34px; width: auto; }

  .brand-name    { font-size: 1.15rem; }
  .brand-sub     { font-size: .43rem; }

  .section-title-lg,
  .section-title-xl { font-size: 1.5rem; }

  .about-img     { height: 260px; }
  .about-badge   { min-width: 170px; }
  .about-badge-num { font-size: 1.1rem; }

  .product-img   { height: 185px; }

  .benefit-item  { padding: .9rem .3rem; }
  .benefit-icon  { width: 60px; height: 60px; font-size: 1.5rem; }
  .benefit-title { font-size: .7rem; }

  .contact-info-inner,
  .contact-form-inner { padding: 2.5rem 1.25rem; }

  .testi-card    { padding: 1.5rem; }

  .process-step  { flex: 0 0 100%; }
}
