/* ===== VARIÁVEIS ===== */
:root {
  --color-primary: #5B6B4E;
  --color-primary-light: #6A7B5D;
  --color-accent: #C9A84C;
  --color-accent-hover: #b8963f;
  --color-bg: #FAFAF8;
  --color-bg-dark: #0F1F18;
  --color-text: #1A1A1A;
  --color-text-light: #5C5C5C;
  --color-white: #FFFFFF;
  --color-border: #E8E4DC;
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER STICKY ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-primary);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.header-cta {
  background: var(--color-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}

.header-cta .mobile-text {
  display: none;
}

.header-cta:hover {
  background: var(--color-primary-light);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 60px;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero-bg-fallback {
  display: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin: 20px 0 16px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
  color: var(--color-accent);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 500px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-stat i {
  color: var(--color-accent);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ===== FORM CARD ===== */
.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.form-card .form-sub {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: #FAFAF8;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 60, 46, 0.08);
}

.form-group input.error {
  border-color: #e53e3e;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-checkbox {
  position: relative;
  cursor: pointer;
}

.pill-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pill-checkbox span {
  display: inline-block;
  padding: 8px 14px;
  background: #FAFAF8;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition);
}

.pill-checkbox:hover span {
  border-color: var(--color-primary-light);
}

.pill-checkbox input:checked+span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 60, 46, 0.2);
}

.btn-primary {
  width: 100%;
  padding: 14px 24px;
  background: #0BD519;
  color: #fff;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #0AA814;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.form-trust {
  text-align: center;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.form-success h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.form-fields.hide {
  display: none;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--color-primary);
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  align-items: start;
  justify-items: center;
  padding: 10px 0;
}

.trust-item {
  text-align: center;
  color: #fff;
  width: 100%;
}

.trust-icon {
  color: var(--color-accent);
  margin-bottom: 12px;
}

.trust-item .trust-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: -1px;
}

.trust-item .trust-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* ===== GALERIA ===== */
.galeria {
  padding: 80px 0 120px;
  background: radial-gradient(circle at center, #3a3a3a 0%, #050505 70%);
  position: relative;
}

.galeria .section-title h2 {
  color: #ffffff;
}

.galeria .section-title p {
  color: #cccccc;
}

.curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.galeria .center-btn {
  text-align: center;
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
}

.btn-outline-green:hover {
  background: #ffffff;
  color: #050505;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 80px 0;
  background: #f5f3ee;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.diff-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  transition: height 0.8s ease-out;
}

.diff-card.visible::before {
  height: 100%;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diff-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}

.diff-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.diff-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 80px 0;
}

.dep-slider-wrapper {
  position: relative;
}

.dep-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: 1px solid var(--color-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.dep-arrow:hover {
  background: var(--color-primary);
  color: #fff;
}

.dep-arrow.left {
  left: 0px;
}

.dep-arrow.right {
  right: 0px;
}

.dep-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 48px 20px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dep-grid::-webkit-scrollbar {
  display: none;
}

.dep-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-top: 3px solid var(--color-accent);
}

.dep-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
  display: flex;
  gap: 4px;
}

.dep-card blockquote {
  font-style: italic;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.dep-author {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.dep-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 8px;
  opacity: 0.8;
}

@media(min-width:769px) {
  .dep-hint {
    display: none;
  }
}

/* ===== ITALÍNEA ===== */
.italinea {
  padding: 80px 0;
  background: #f5f3ee;
}

.italinea-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.italinea-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.italinea-content h2 {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.italinea-content p {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.italinea-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.italinea-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
}

@media(min-width:769px) {
  .italinea-card {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 60px;
  }
}

/* ===== PROCESSO ===== */
.processo {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step {
  text-align: center;
  padding: 24px 20px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.steps-wrapper {
  position: relative;
}

.step-arrow {
  display: none;
}

.mobile-curve {
  display: block;
  position: absolute;
  top: 60%;
  height: calc(100% + 10px);
  width: 45px;
  z-index: 0;
  border: 2px solid #000;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s ease-in-out;
}

.step.visible .mobile-curve {
  clip-path: inset(-20px -20px -20px -20px);
}

.mobile-curve-right {
  right: 15px;
  border-left: none;
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
}

.mobile-curve-right::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg);
}

.mobile-curve-left {
  left: 15px;
  border-right: none;
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
}

.mobile-curve-left::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

.curved-arrow {
  display: none;
  position: absolute;
  width: 90px;
  height: 45px;
  top: 50%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.curved-arrow path {
  stroke: #000;
  stroke-width: 2px;
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  transition: stroke-dashoffset 1s ease-in-out;
}

.step.visible .curved-arrow path {
  stroke-dashoffset: 0;
}

.step:nth-child(1) .curved-arrow path,
.step:nth-child(1) .mobile-curve {
  transition-delay: 0.5s;
}

.step:nth-child(2) .curved-arrow path,
.step:nth-child(2) .mobile-curve {
  transition-delay: 0.8s;
}

.step:nth-child(3) .curved-arrow path,
.step:nth-child(3) .mobile-curve {
  transition-delay: 1.1s;
}

.arrow-top {
  left: calc(100% - 15px);
  transform: translateY(-110%);
}

.arrow-bottom {
  left: calc(100% - 15px);
  transform: translateY(10%);
}

/* ===== SETAS MOBILE SVG ===== */
.mobile-step-arrow {
  display: none;
  position: absolute;
  bottom: -65px;
  width: 55px;
  height: 90px;
  overflow: visible;
  z-index: 5;
}

.mobile-step-arrow-right {
  right: 8px;
  left: auto;
}

.mobile-step-arrow-left {
  left: 8px;
}

.mobile-arrow-path {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  transition: stroke-dashoffset 1s ease-in-out;
}

.step.visible .mobile-arrow-path {
  stroke-dashoffset: 0;
}

.step:nth-child(1) .mobile-arrow-path { transition-delay: 0.5s; }
.step:nth-child(2) .mobile-arrow-path { transition-delay: 0.8s; }
.step:nth-child(3) .mobile-arrow-path { transition-delay: 1.1s; }

@media(max-width: 768px) {
  .mobile-step-arrow { display: block; }
  .mobile-curve { display: none !important; }
}

@media(min-width:769px) {
  .curved-arrow {
    display: block;
  }

  .mobile-curve {
    display: none;
  }

  .mobile-step-arrow {
    display: none !important;
  }
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 80px 0;
  background: var(--color-bg-dark);
  position: relative;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  opacity: 0.9;
}

.cta-final .container {
  position: relative;
  z-index: 2;
}

.cta-final .section-title h2 {
  color: #fff;
}

.cta-final .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-final .form-card {
  max-width: 560px;
  margin: 0 auto;
}

.cta-bottom-text {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary);
  padding: 40px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.logo-midori-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.footer-copy {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-size: 0.9rem;
}

.footer-cnpj {
  font-size: 0.75rem;
  margin-top: 12px;
  opacity: 0.5;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab i {
  font-size: 1.3rem;
}

.whatsapp-pulse {
  animation: waPulse 2s infinite;
}

@keyframes waPulse {

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

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

/* ===== RESPONSIVIDADE ===== */
@media(min-width:481px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .dep-card {
    min-width: calc(100% - 40px);
    flex: 0 0 calc(100% - 40px);
  }

  .dep-grid {
    padding: 10px 20px 20px;
    gap: 20px;
  }

  .dep-slider-wrapper {
    padding-bottom: 60px;
  }

  .dep-arrow {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .dep-arrow.left {
    left: calc(50% - 50px);
  }

  .dep-arrow.right {
    right: calc(50% - 50px);
  }

  .mobile-curve {
    height: calc(100% + 20px);
    width: 20px;
  }

  .mobile-curve-right {
    right: -5px;
  }

  .mobile-curve-left {
    left: -5px;
  }
}

@media(min-width:769px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dep-grid {
    overflow: visible;
  }

  .dep-card {
    min-width: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-arrow {
    display: block;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:480px) {
  .logo-italinea {
    display: none;
  }

  .header-cta .desktop-text {
    display: none;
  }

  .header-cta .mobile-text {
    display: inline;
  }

  .mobile-hide {
    display: none !important;
  }

  .whatsapp-fab span {
    display: none;
  }

  .whatsapp-fab {
    padding: 14px;
    border-radius: 50%;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}