/**
 * Good Color Landing - Estilos premium tipo Apple
 * Animaciones, efectos y microinteracciones.
 */

:root {
  --color-primary: #0f172a;
  --color-accent: #0d9488;
  --color-hero-blue: #1d4ed8;
  --color-brand-burgundy: #8B2942;
  --color-brand-green: #7CB342;
  --color-brand-teal: #0d9488;
  --color-muted: #64748b;
  --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
  --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== Base ========== */
html {
  scroll-behavior: smooth;
}

/* ========== Header hero (fondo azul fijo) ========== */
.header-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== HERO BANNER con diagonal ========== */
.hero-banner {
  isolation: isolate;
  min-height: 100vh;
}

.hero-diagonal-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Diagonal only on desktop (lg: 1024px) */
@media (min-width: 1024px) {
  .hero-diagonal-blue {
    position: absolute;
    inset: 0;
    background: var(--color-hero-blue);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
  }

  .hero-diagonal-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #eef4ff 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
  }
}

@media (max-width: 1023px) {
  .hero-diagonal-bg {
    background: radial-gradient(circle at 70% 20%, var(--color-hero-blue) 0%, #0c4a6e 40%, #0f172a 100%);
  }
  .hero-diagonal-blue, .hero-diagonal-light {
    display: none;
  }
  
  .hero-slide {
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    order: 1;
    padding: 0 1rem;
  }

  .hero-img-col {
    order: 2;
    margin-top: 1.5rem;
  }

  .hero-headline {
    color: #fff !important;
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
    line-height: 1.1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 0.75rem;
  }

  .hero-line2 {
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    margin-top: 0 !important;
  }

  .hero-line3 {
    color: rgba(255,255,255,0.75) !important;
    font-size: 1rem !important;
    margin-top: 0.5rem !important;
  }
}

.hero-slider-wrapper {
  min-height: 60vh;
  position: relative;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .hero-img-wrap {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }
}

.hero-img-wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Flechas del slider: en móvil más pequeñas */
@media (max-width: 768px) {
  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }
}

/* Botón CTA hero */
.hero-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
}

/* ========== Header tipo Apple (reserva por si se usa de nuevo) ========== */
.header-apple .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-apple);
}

.header-apple .nav-link:hover::after {
  width: 100%;
}

/* Botón estilo Apple (otros usos) */
.btn-apple {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-apple:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-apple-outline:hover {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
}

/* ========== Productos ========== */
.producto-card {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-apple), border-color 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.08);
}

.producto-card .producto-img-wrap {
  overflow: hidden;
}

.producto-card .producto-img {
  transition: transform 0.7s var(--ease-out-expo);
  background-color: #f8fafc;
  object-fit: contain;
}

.producto-card:hover .producto-img {
  transform: scale(1.06);
}

/* Ocultar productos 7-14 hasta "Ver más" */
.producto-card.hidden-more {
  display: none;
}

.productos-revealed .producto-card.hidden-more {
  display: block;
}

/* ========== Modal ========== */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: opacity 0.4s var(--ease-apple);
}

.modal-backdrop.modal-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-spring);
}

.modal-backdrop.modal-open .modal-box {
  transform: scale(1);
}

body.modal-open {
  overflow: hidden;
}

#modal-content .rounded-xl {
  border-radius: 1rem;
}

/* ========== Botón flotante WhatsApp (izquierda) ========== */
.whatsapp-float {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Pulso suave opcional para llamar la atención */
@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp-float {
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation: none;
}

/* En móvil: un poco más arriba para no tapar contenido */
@media (max-width: 640px) {
  .whatsapp-float {
    left: 16px;
    bottom: 20px;
    padding: 12px 14px;
  }
}

/* ========== SERVICIOS PRO – Rediseño impactante ========== */
.servicios-pro-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-brand-burgundy) 0%, #6b2137 40%, var(--color-hero-blue) 100%);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.servicios-pro-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin: 0 auto;
}

.servicios-pro-hero-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.servicios-pro-hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.servicios-pro-hero-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.servicios-pro-hero-shape {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* Featured: Asesoría (visual izq) + Servicio Integral (visual der) */
.servicios-pro-featured {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.servicios-pro-featured-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: 320px;
  padding: 3rem 2rem;
}

@media (max-width: 768px) {
  .servicios-pro-featured-block {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.5rem 1.5rem;
  }
}

.servicios-pro-featured--asesoria {
  background: #fff;
}

.servicios-pro-featured--integral {
  background: linear-gradient(160deg, #5a1c2e 0%, var(--color-brand-burgundy) 100%);
  color: #fff;
}

.servicios-pro-featured--integral .servicios-pro-featured-title {
  color: #fff;
}

.servicios-pro-featured--integral .servicios-pro-featured-text {
  color: rgba(255, 255, 255, 0.88);
}

.servicios-pro-featured-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.servicios-pro-featured-visual--right {
  order: 2;
}

@media (max-width: 768px) {
  .servicios-pro-featured-visual--right {
    order: 0;
  }
}

.servicios-pro-blob {
  position: absolute;
  border-radius: 50%;
  transition: transform 0.6s var(--ease-out-expo);
}

.servicios-pro-featured-block:hover .servicios-pro-blob {
  transform: scale(1.08);
}

.servicios-pro-blob--teal {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-brand-teal) 0%, #0f766e 100%);
  box-shadow: 0 20px 50px -15px rgba(13, 148, 136, 0.5);
}

.servicios-pro-blob--light {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.servicios-pro-featured-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicios-pro-featured-body {
  padding: 0 1rem;
}

.servicios-pro-featured--integral .servicios-pro-featured-body {
  order: 1;
}

.servicios-pro-featured-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.servicios-pro-featured-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* Timeline: 4 pasos con nodos de color */
.servicios-pro-timeline-wrap {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 4rem 1rem 5rem;
}

.servicios-pro-timeline-inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.servicios-pro-timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-brand-green), var(--color-brand-teal), var(--color-brand-burgundy), var(--color-hero-blue));
  border-radius: 2px;
}

@media (min-width: 640px) {
  .servicios-pro-timeline-line {
    left: 32px;
  }
}

.servicios-pro-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.servicios-pro-step:last-child {
  margin-bottom: 0;
}

.servicios-pro-step-dot {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.servicios-pro-step:hover .servicios-pro-step-dot {
  transform: scale(1.12);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.25);
}

.servicios-pro-step--green .servicios-pro-step-dot {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, #689f38 100%);
}

.servicios-pro-step--teal .servicios-pro-step-dot {
  background: linear-gradient(135deg, var(--color-brand-teal) 0%, #0f766e 100%);
}

.servicios-pro-step--burgundy .servicios-pro-step-dot {
  background: linear-gradient(135deg, var(--color-brand-burgundy) 0%, #6b2137 100%);
}

.servicios-pro-step--blue .servicios-pro-step-dot {
  background: linear-gradient(135deg, var(--color-hero-blue) 0%, #1e40af 100%);
}

.servicios-pro-step-card {
  flex: 1;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.servicios-pro-step:hover .servicios-pro-step-card {
  transform: translateX(8px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.12);
}

.servicios-pro-step-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--color-brand-teal);
  background: rgba(13, 148, 136, 0.1);
}

.servicios-pro-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.35rem 0;
}

.servicios-pro-step-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

/* ========== SERVICIOS 2.0 (legacy, mantiene clases por si se referencian) ========== */
.servicios-v2 {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

/* Featured: 2 cards grandes (Asesoría + Servicio Integral) */
.servicios-v2-featured {
  position: relative;
  border-radius: 1.75rem;
  padding: 2.5rem 2rem;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease;
  overflow: hidden;
}

.servicios-v2-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand-teal), var(--color-hero-blue));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.servicios-v2-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(29, 78, 216, 0.22);
}

.servicios-v2-featured:hover::before {
  opacity: 1;
}

.servicios-v2-featured--light {
  background: #ffffff;
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.08);
}

.servicios-v2-featured--dark {
  background: linear-gradient(160deg, #6b2137 0%, var(--color-brand-burgundy) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 12px 40px -12px rgba(139, 41, 66, 0.4);
}

.servicios-v2-featured--dark .servicios-v2-featured-title,
.servicios-v2-featured--dark .servicios-v2-featured-text {
  color: rgba(255, 255, 255, 0.95);
}

.servicios-v2-featured--dark .servicios-v2-featured-text {
  color: rgba(255, 255, 255, 0.85);
}

.servicios-v2-featured-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.35s var(--ease-spring);
}

.servicios-v2-featured--light .servicios-v2-featured-icon {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.18) 0%, rgba(13, 148, 136, 0.06) 100%);
  color: var(--color-brand-teal);
}

.servicios-v2-featured--dark .servicios-v2-featured-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.servicios-v2-featured:hover .servicios-v2-featured-icon {
  transform: scale(1.08);
}

.servicios-v2-featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.servicios-v2-featured-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
}

/* Intro: badge + título + descripción empresa */
.servicios-v2-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-teal);
  margin-bottom: 0.5rem;
}

.servicios-v2-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.servicios-v2-desc {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0;
}

@media (min-width: 1024px) {
  .servicios-v2-desc {
    max-width: 58ch;
  }
}

/* Grid de los 4 servicios (pasos con número) */
.servicios-v2-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .servicios-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.servicios-v2-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem 1.5rem;
  align-items: start;
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(29, 78, 216, 0.1);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, border-color 0.3s ease;
}

.servicios-v2-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px -12px rgba(13, 148, 136, 0.2);
  border-color: rgba(13, 148, 136, 0.25);
}

.servicios-v2-num {
  grid-column: 1;
  grid-row: 1 / 3;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(13, 148, 136, 0.25);
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.servicios-v2-item:hover .servicios-v2-num {
  color: var(--color-brand-teal);
}

.servicios-v2-item-icon {
  grid-column: 2;
  grid-row: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(124, 179, 66, 0.06) 100%);
  color: var(--color-brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}

.servicios-v2-item:hover .servicios-v2-item-icon {
  transform: scale(1.05);
}

.servicios-v2-item-content {
  grid-column: 2;
  grid-row: 2;
}

.servicios-v2-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.35rem 0;
}

.servicios-v2-item-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
}

/* ========== Formulario ========== */
#contact-form input,
#contact-form textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
}

#contact-form button[type="submit"]:hover {
  filter: brightness(1.08);
}

/* ========== Footer (colores del logo) ========== */
.footer-brand {
  background: var(--color-primary);
  position: relative;
}

.footer-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand-burgundy) 0%, var(--color-brand-green) 33%, var(--color-brand-teal) 66%, var(--color-hero-blue) 100%);
}

.footer-brand a:hover {
  color: var(--color-brand-teal) !important;
}

footer a {
  transition: color 0.2s var(--ease-apple);
}

/* ========== Utilidades para GSAP (revelados) ========== */
.reveal-section .reveal-title,
.reveal-section .reveal-text,
.reveal-section .epson-logo,
.servicio-card,
.form-reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* Clase aplicada por GSAP cuando ya animó */
.reveal-section.revealed .reveal-title,
.reveal-section.revealed .reveal-text,
.reveal-section.revealed .epson-logo,
.servicio-card.revealed,
.form-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Reducir movimiento ========== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg-mesh,
  .scroll-hint-bounce {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .producto-card .producto-img {
    transition: none;
  }

  .producto-card:hover .producto-img {
    transform: none;
  }

  .servicio-card:hover {
    transform: none;
  }

  .servicio-card:hover .servicio-card-icon {
    transform: none;
  }

  .servicios-v2-featured:hover {
    transform: none;
  }

  .servicios-v2-item:hover {
    transform: none;
  }

  .servicios-v2-item:hover .servicios-v2-item-icon {
    transform: none;
  }

  .servicios-pro-featured-block:hover .servicios-pro-blob {
    transform: none;
  }

  .servicios-pro-step:hover .servicios-pro-step-dot {
    transform: none;
  }

  .servicios-pro-step:hover .servicios-pro-step-card {
    transform: none;
  }
}

.contact-map {
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* TARJETAS */

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: white;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all .35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.contact-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 12px;
  color: #0d9488;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

/* BOTÓN */

.contact-whatsapp {
  display: block;
  text-align: center;
  background: #25D366;
  color: white;
  padding: 16px;
  border-radius: 14px;
  font-weight: 600;
  transition: all .3s ease;
}

.contact-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}


@media (max-width:768px) {

  .hero-text-col .hero-cta-btn {
    display: none;
  }

}