/* ============================================================
   SITO TURISTICO — Custom CSS
   Colori: turchese mare, sabbia, bianco — stile turismo/hospitality
   Font: Raleway (headings) + Lato (body)
   ============================================================ */

:root {
  --primary-color: #00B4CC;
  --secondary-color: #E8D5A3;
  --accent-color: #FF8C42;
  --primary-dark: #007A8C;
  --primary-deeper: #005f72;
  --text-dark: #333;
  --text-light: #fff;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #1a3a4a;
  --sand-light: #fdf8ef;
  --sand-mid: #f5e6c8;
}

/* ---- Base ---- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
}

/* ---- Navbar ---- */
.navbar {
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: transparent;
}

.navbar.scrolled {
  background-color: var(--bg-dark) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.navbar-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff !important;
  letter-spacing: -0.5px;
}

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

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

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

.navbar-toggler {
  border-color: rgba(255,255,255,0.4);
}

.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%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,180,204,0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-accent:hover {
  background-color: #e07835;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,140,66,0.4);
}

/* ---- Section Titles ---- */
.section-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  margin: 0.8rem auto 1.5rem;
}

/* ---- Hero ---- */
#hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 35%, var(--primary-color) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.07) 0%, transparent 30%);
  pointer-events: none;
}

.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-circles span:nth-child(1) {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
}
.hero-circles span:nth-child(2) {
  width: 400px; height: 400px;
  top: -100px; right: 50px;
}
.hero-circles span:nth-child(3) {
  width: 800px; height: 800px;
  bottom: -400px; left: -200px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content h1 .highlight {
  color: var(--secondary-color);
  position: relative;
}

.hero-content p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-card-mock {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
}

.hero-card-mock .mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-card-mock .mock-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  margin-right: 4px;
}

.hero-card-mock .mock-title {
  font-weight: 700;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.mock-stat-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mock-stat-box {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.mock-stat-box .msb-value {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.mock-stat-box .msb-label {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
}

.mock-bar-row {
  margin-bottom: 0.7rem;
}

.mock-bar-label {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: space-between;
}

.mock-bar {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ---- Chi Siamo ---- */
#chi-siamo {
  padding: 100px 0;
  background: #fff;
}

.problema-card {
  background: var(--sand-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.soluzione-card {
  background: linear-gradient(135deg, #e8f9fc, #d0f2f7);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.feature-list li {
  padding: 0.6rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.feature-list li i {
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- Come Funziona ---- */
#come-funziona {
  padding: 100px 0;
  background: var(--sand-light);
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,180,204,0.15);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e8f9fc, #b8eef7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  color: var(--primary-color);
  opacity: 0.5;
}

/* ---- Strutture ---- */
#strutture {
  padding: 100px 0;
  background: #fff;
}

.struttura-card {
  background: #fff;
  border-radius: 16px;
  border: 2px solid #eef;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
  height: 100%;
}

.struttura-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(0,180,204,0.12);
  transform: translateY(-4px);
}

.struttura-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: #fff;
}

.struttura-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}

.struttura-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- Pricing ---- */
#pricing {
  padding: 100px 0;
  background: #fff;
}

.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid #eee;
  transition: all 0.3s;
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 16px 48px rgba(0,180,204,0.15);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 16px 48px rgba(0,180,204,0.2);
  transform: translateY(-8px);
  background: linear-gradient(180deg, #f0fafb, #fff);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--bg-dark);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 600;
}

.pricing-price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.pricing-saving {
  display: inline-block;
  background: #e8f9e8;
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pricing-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border-bottom: 1px solid #f5f5f5;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i.fa-check {
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-features li i.fa-times {
  color: #ddd;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: #ccc;
}

/* ---- Contatti ---- */
#contatti {
  padding: 100px 0;
  background: var(--bg-dark);
}

#contatti .section-title {
  color: #fff;
}

#contatti .section-subtitle {
  color: rgba(255,255,255,0.65);
}

#contatti .section-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.85);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contact-info-text a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-text a:hover {
  color: var(--primary-color);
}

.contact-form-wrapper {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.contact-form-wrapper .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0,180,204,0.25);
  color: #fff;
}

.contact-form-wrapper .form-check-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.contact-form-wrapper .form-check-input {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.contact-form-wrapper .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ---- Footer ---- */
footer {
  background: #0d2533;
  color: rgba(255,255,255,0.7);
}

footer .footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

footer h5.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

footer .footer-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

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

footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: block;
  padding: 0.2rem 0;
}

footer a:hover {
  color: var(--primary-color);
}

footer .footer-bottom {
  padding: 1.2rem 0;
}

footer .footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255,255,255,0.45);
}

.social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none !important;
  padding: 0 !important;
}

.social-link:hover {
  background: var(--primary-color);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ---- Alert form ---- */
#form-success, #form-error {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: 0.93rem;
}

#form-success {
  background: rgba(46, 213, 115, 0.15);
  border: 1px solid rgba(46, 213, 115, 0.4);
  color: #2ed573;
}

#form-error {
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid rgba(255, 71, 87, 0.4);
  color: #ff6b81;
}

/* ---- Animate on scroll ---- */
.animate-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-hidden.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-hidden.delay-1 { transition-delay: 0.1s; }
.animate-hidden.delay-2 { transition-delay: 0.2s; }
.animate-hidden.delay-3 { transition-delay: 0.3s; }
.animate-hidden.delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-visual {
    margin-top: 3rem;
  }
  .pricing-card.popular {
    transform: translateY(0);
  }
  .step-connector {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  #chi-siamo, #come-funziona, #strutture, #pricing, #contatti {
    padding: 70px 0;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .pricing-card {
    margin-bottom: 1.5rem;
  }
}

/* ---- Clienti Reali ---- */
.cliente-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #eef;
  transition: all 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cliente-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(0,180,204,0.15);
  transform: translateY(-6px);
}
.cliente-card-top {
  background: var(--bg-dark);
  padding: 1.5rem 1.5rem 2.5rem;
  position: relative;
}
.cliente-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.cliente-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.cliente-card-body {
  padding: 1.5rem;
  flex: 1;
}
.cliente-card-body h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bg-dark);
  margin-bottom: 0.3rem;
}
.cliente-card-body > a {
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
.cliente-card-body > a:hover {
  text-decoration: underline;
}
.cliente-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.cliente-card-footer {
  padding: 0.8rem 1.5rem;
  border-top: 1px solid #eef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.cliente-card-footer span {
  color: var(--text-muted);
}
.cliente-card-footer span i {
  color: var(--accent-color);
  margin-right: 0.3rem;
}
.cliente-card-footer a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.cliente-card-footer a:hover {
  color: var(--primary-dark);
}

@media (max-width: 767px) {
  .hero-content { padding-left: 15px; padding-right: 15px; }
}
