/* Custom CSS - Landing Page */

/* Global Styles */
:root {
  --primary-color: #00bcd4; /* Azul-turquesa mais vibrante - cor principal */
  --secondary-color: #ffd54f; /* Amarelo sol mais vibrante - cor secundária */
  --accent-color: #ff7043; /* Laranja coral - cor de destaque mais alegre */
  --tertiary-color: #9575cd; /* Roxo mais vibrante - cor terciária */
  --quaternary-color: #8bc34a; /* Verde limão - cor quaternária mais alegre */
  --light-color: #f8f9fa;
  --dark-color: #37474f; /* Azul-cinza mais profundo para contraste */
  --text-color: #455a64; /* Azul-cinza mais claro para texto */
  --transition: all 0.3s ease;
  --border-radius: 25px; /* Bordas ainda mais arredondadas para aspecto infantil */
  --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --happy-gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--tertiary-color) 100%
  );
}

/* Utilitários de cores e espaçamento */
.bg-primary-soft {
  background-color: rgba(0, 188, 212, 0.15);
  color: var(--dark-color);
  border-color: transparent;
}

/* Padding adicional para o topo do footer */
.pt-6 {
  padding-top: 4rem !important;
}

/* Elementos lúdicos e alegres */
.happy-badge {
  background: var(--happy-gradient);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.happy-badge::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.happy-badge:hover::after {
  opacity: 1;
}

.happy-icon {
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.card-happy {
  border-radius: var(--border-radius);
  border: none;
  overflow: hidden;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  background-color: white;
  position: relative;
  -webkit-tap-highlight-color: transparent; /* Remove highlight on tap for mobile */
  touch-action: manipulation; /* Optimize for touch */
}

.card-happy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--tertiary-color),
    var(--quaternary-color),
    var(--accent-color)
  );
  z-index: 1;
}

.card-happy:hover,
.card-happy:active {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
}

/* Efeito de toque para cards em mobile */
.card-happy::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7) 10%,
    transparent 10.01%
  );
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.3s, opacity 0.5s;
  z-index: 0;
}

.card-happy:active::after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: #fafafa;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="15" cy="15" r="5" fill="%23FFD54F" fill-opacity="0.1"/%3E%3Ccircle cx="40" cy="30" r="3" fill="%2300BCD4" fill-opacity="0.1"/%3E%3Ccircle cx="80" cy="15" r="4" fill="%239575CD" fill-opacity="0.1"/%3E%3Ccircle cx="70" cy="70" r="6" fill="%23FF7043" fill-opacity="0.1"/%3E%3Ccircle cx="20" cy="60" r="4" fill="%238BC34A" fill-opacity="0.1"/%3E%3Ccircle cx="50" cy="50" r="3" fill="%2300BCD4" fill-opacity="0.1"/%3E%3Ccircle cx="85" cy="40" r="5" fill="%23FFD54F" fill-opacity="0.1"/%3E%3Ccircle cx="10" cy="85" r="4" fill="%239575CD" fill-opacity="0.1"/%3E%3Ccircle cx="40" cy="80" r="3" fill="%238BC34A" fill-opacity="0.1"/%3E%3C/svg%3E');
  animation: gradientBackground 30s ease infinite;
  background-size: 100px 100px;
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Estilos específicos para fonoaudiologia infantil */
.child-friendly-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

/* Elementos lúdicos e infantis */
.bubble-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bubble-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="15" cy="15" r="10" fill="%23FFCA28" fill-opacity="0.2"/%3E%3Ccircle cx="50" cy="40" r="15" fill="%234DB6AC" fill-opacity="0.2"/%3E%3Ccircle cx="80" cy="15" r="8" fill="%237E57C2" fill-opacity="0.2"/%3E%3Ccircle cx="85" cy="80" r="12" fill="%23FF5252" fill-opacity="0.2"/%3E%3Ccircle cx="30" cy="70" r="10" fill="%2366BB6A" fill-opacity="0.2"/%3E%3C/svg%3E');
  opacity: 0.5;
  z-index: -1;
}

.speech-bubble {
  position: relative;
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  border: 2px dashed rgba(77, 182, 172, 0.3);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50px;
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: var(--light-color) transparent;
}

.child-development-card {
  border-radius: var(--border-radius);
  border: none;
  overflow: hidden;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  background-color: white;
}

.child-development-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(77, 182, 172, 0.3);
}

.child-development-card:hover .child-friendly-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Elementos decorativos */
.wavy-border {
  position: relative;
  padding-bottom: 20px;
}

.wavy-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="10" viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 10 C 30 0, 70 0, 100 10" fill="none" stroke="%234DB6AC" stroke-opacity="0.3" stroke-width="2"/%3E%3C/svg%3E');
  background-size: 100px 10px;
  background-repeat: repeat-x;
}

/* Botões infantis */
.btn-child {
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  box-shadow: var(--box-shadow);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-child:hover::before {
  left: 100%;
}

.btn-child:hover {
  transform: translateY(-3px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* Buttons */
.btn {
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

/* Efeito de toque para mobile */
.btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.btn:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #3da8a0; /* Versão mais escura do turquesa */
  border-color: #3da8a0;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(77, 182, 172, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #ffbf00; /* Versão mais escura do amarelo */
  border-color: #ffbf00;
  color: var(--dark-color);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 202, 40, 0.4);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #ff3939; /* Versão mais escura do vermelho */
  border-color: #ff3939;
  color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 82, 82, 0.4);
}

.btn-tertiary {
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.btn-tertiary:hover,
.btn-tertiary:focus {
  background-color: #6a48b0; /* Versão mais escura do roxo */
  border-color: #6a48b0;
  color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(126, 87, 194, 0.4);
}

.btn-quaternary {
  background-color: var(--quaternary-color);
  border-color: var(--quaternary-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.btn-quaternary:hover,
.btn-quaternary:focus {
  background-color: #4caf50; /* Versão mais escura do verde */
  border-color: #4caf50;
  color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(102, 187, 106, 0.4);
}

.btn-outline-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
}

/* Navbar */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-brand span.brand-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 5px;
}

/* Navbar Toggler Minimalista */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:hover {
  background-color: rgba(0, 188, 212, 0.1);
}

.hamburger-menu {
  width: 24px;
  height: 18px;
  position: relative;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.hamburger-menu .line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger-menu .line-1 {
  top: 0;
}

.hamburger-menu .line-2 {
  top: 8px;
  width: 70%;
  right: 0;
  left: auto;
}

.hamburger-menu .line-3 {
  top: 16px;
}

/* Animação quando o menu está aberto */
.navbar-toggler[aria-expanded="true"] .hamburger-menu .line-1 {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu .line-2 {
  opacity: 0;
  width: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu .line-3 {
  top: 8px;
  transform: rotate(-135deg);
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  border-radius: 20px;
  margin: 0 3px;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: rgba(77, 182, 172, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(77, 182, 172, 0.15);
}

/* Elementos infantis no header */
.header-decoration {
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: -5px;
  left: 0;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="120" height="10" viewBox="0 0 120 10" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 10 C 20 5, 40 0, 60 5 C 80 10, 100 5, 120 0" fill="none" stroke="%234DB6AC" stroke-opacity="0.5" stroke-width="2"/%3E%3C/svg%3E');
  background-size: 120px 10px;
  background-repeat: repeat-x;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%234361ee" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E'); */
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/* Services Section - UX Focused */
.services {
  position: relative;
  background-color: #f9f9f9;
  background-image: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="15" cy="15" r="5" fill="%23FFD54F" fill-opacity="0.1"/%3E%3Ccircle cx="40" cy="30" r="3" fill="%2300BCD4" fill-opacity="0.1"/%3E%3Ccircle cx="80" cy="15" r="4" fill="%239575CD" fill-opacity="0.1"/%3E%3Ccircle cx="70" cy="70" r="6" fill="%23FF7043" fill-opacity="0.1"/%3E%3Ccircle cx="20" cy="60" r="4" fill="%238BC34A" fill-opacity="0.1"/%3E%3C/svg%3E');
  opacity: 0.5;
  z-index: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-header {
  padding: 25px 25px 15px;
  position: relative;
}

.service-icon-wrapper {
  position: relative;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--tertiary-color) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--tertiary-color) 100%
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  animation: pulse-service 2s infinite;
}

@keyframes pulse-service {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--tertiary-color)
  );
  transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
  width: 100%;
}

.service-card-body {
  padding: 15px 25px;
  flex-grow: 1;
}

.service-description {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.service-feature span {
  font-size: 0.95rem;
  color: var(--text-color);
}

.service-card-footer {
  padding: 15px 25px 25px;
  display: flex;
  justify-content: flex-start;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.service-btn:hover {
  color: white;
}

.service-btn:hover::before {
  width: 100%;
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(5px);
}

.service-card-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(0, 188, 212, 0.1) 0%,
    rgba(149, 117, 205, 0.1) 100%
  );
  border-radius: 0 0 0 100%;
  z-index: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-decoration {
  width: 120px;
  height: 120px;
}

/* Features Section */
.feature-icon-general {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  transition: var(--transition);
}

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

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%234361ee" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,128C672,128,768,160,864,176C960,192,1056,192,1152,176C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E');
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/* Especialidades Section - Design Interativo */
.specialties {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
  background-image: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.specialties::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="15" cy="15" r="5" fill="%23FFD54F" fill-opacity="0.1"/%3E%3Ccircle cx="40" cy="30" r="3" fill="%2300BCD4" fill-opacity="0.1"/%3E%3Ccircle cx="80" cy="15" r="4" fill="%239575CD" fill-opacity="0.1"/%3E%3Ccircle cx="70" cy="70" r="6" fill="%23FF7043" fill-opacity="0.1"/%3E%3Ccircle cx="20" cy="60" r="4" fill="%238BC34A" fill-opacity="0.1"/%3E%3C/svg%3E');
  opacity: 0.5;
  z-index: 0;
}

/* Container para os cards de especialidades */
.specialty-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Flip Cards */
.flip-card {
  perspective: 1000px;
  height: 400px;
  width: 100%;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner,
.flip-card:active .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.flip-card-front {
  color: white;
}

.flip-card-back {
  background-color: white;
  color: var(--dark-color);
  transform: rotateY(180deg);
  justify-content: flex-start;
}

/* Gradientes para os cards */
.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, #4dd0e1 100%);
}

.bg-secondary-gradient {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ba68c8 100%);
}

.bg-tertiary-gradient {
  background: linear-gradient(135deg, var(--tertiary-color) 0%, #ffb74d 100%);
}

.bg-quaternary-gradient {
  background: linear-gradient(135deg, var(--quaternary-color) 0%, #81c784 100%);
}

.bg-accent-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8a65 100%);
}

.bg-purple-gradient {
  background: linear-gradient(135deg, #db84f3 0%, #a17bee 100%);
}

/* Ícones dos cards */
.flip-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.flip-card:hover .flip-card-icon {
  transform: scale(1.1) rotate(10deg);
}

/* Títulos e conteúdo */
.flip-card-front h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.flip-card-back h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.flip-card-back p {
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Tags nos cards */
.flip-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.flip-tag {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Prompt para tocar/clicar */
.flip-prompt {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.flip-prompt i {
  margin-left: 8px;
  animation: point 1.5s ease-in-out infinite;
}

@keyframes point {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Lista no verso do card */
.flip-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  width: 100%;
}

.flip-card-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.flip-card-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Botão no verso do card */
.flip-card-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
  display: inline-block;
}

.flip-card-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section - Modern Design */
.contact {
  position: relative;
  background-color: white;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="20" cy="20" r="15" fill="%2300BCD4" fill-opacity="0.05"/%3E%3Ccircle cx="70" cy="70" r="10" fill="%239575CD" fill-opacity="0.05"/%3E%3Ccircle cx="80" cy="10" r="5" fill="%23FFD54F" fill-opacity="0.05"/%3E%3Ccircle cx="10" cy="80" r="8" fill="%23FF7043" fill-opacity="0.05"/%3E%3Ccircle cx="50" cy="50" r="20" fill="%238BC34A" fill-opacity="0.05"/%3E%3C/svg%3E');
  opacity: 0.5;
  z-index: 0;
}

.contact-info-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.contact-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--tertiary-color) 100%
  );
  color: white;
  padding: 30px 25px;
  display: flex;
  align-items: center;
}

.contact-avatar {
  font-size: 3rem;
  margin-right: 15px;
  color: white;
}

.contact-title h4 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
}

.contact-title p {
  margin: 5px 0 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.contact-body {
  padding: 25px;
  flex-grow: 1;
}

.contact-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 188, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(10deg);
  background-color: rgba(0, 188, 212, 0.2);
}

.contact-text h6 {
  margin: 0 0 5px;
  font-weight: 600;
  color: var(--dark-color);
}

.contact-text p {
  margin: 0;
  color: var(--text-color);
}

.contact-social {
  display: flex;
  justify-content: center;
  padding: 0 25px 25px;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  color: white;
}

.social-icon:nth-child(1):hover {
  background-color: #3b5998; /* Facebook */
}

.social-icon:nth-child(2):hover {
  background-color: #e1306c; /* Instagram */
}

.social-icon:nth-child(3):hover {
  background-color: #0077b5; /* LinkedIn */
}

.social-icon:nth-child(4):hover {
  background-color: #25d366; /* WhatsApp */
}

.contact-form-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h4 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-color);
  margin: 0;
}

.contact-benefits {
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

.benefit-text {
  color: var(--text-color);
  font-size: 0.95rem;
}

.cta-container {
  margin-top: 30px;
}

.whatsapp-icon-container {
  width: 90px;
  height: 90px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.whatsapp-icon-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="20" cy="20" r="15" stroke="%23ffffff" stroke-opacity="0.3" stroke-width="2" fill="none" stroke-dasharray="3 3"/%3E%3C/svg%3E');
  animation: rotate 10s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.whatsapp-icon-container:hover {
  transform: scale(1.1);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-5px) scale(1.05);
}

/* Footer */
.footer {
  position: relative;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f8f9fa;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-icons a:hover i {
  color: white !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(77, 182, 172, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(77, 182, 172, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(77, 182, 172, 0);
  }
}

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

.hero h1,
.hero p,
.hero .btn {
  animation: fadeIn 0.8s ease-out forwards;
}

.hero p {
  animation-delay: 0.2s;
}

.hero .btn {
  animation-delay: 0.4s;
}

/* Elementos decorativos do footer */
.footer-decoration {
  position: absolute;
  width: 35px; /* Reduzido o tamanho */
  z-index: 0; /* Coloca os elementos decorativos atrás do conteúdo */
  opacity: 0.9; /* Leve transparência */
  transition: transform 0.5s ease;
}

.footer-decoration:hover {
  transform: scale(1.2) rotate(0deg) !important;
}

.footer-decoration.teddy-bear {
  top: -45px; /* Movido mais para cima */
  left: 3%;
  transform: rotate(-10deg);
  animation: float 3s ease-in-out infinite;
}

.footer-decoration.balloon {
  top: -40px; /* Movido mais para cima */
  right: 3%;
  transform: rotate(15deg);
  animation: float 4s ease-in-out infinite 1s;
}

.footer-decoration.rainbow {
  animation: float 5s ease-in-out infinite 0.5s;
}

.footer-decoration.star {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(-10deg);
  }
}

/* Garante que o conteúdo do footer fique acima dos elementos decorativos */
.footer .row {
  position: relative;
  z-index: 1;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.btn-whatsapp-float {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px 12px 12px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent; /* Remove highlight on tap for mobile */
  touch-action: manipulation; /* Optimize for touch */
  z-index: 1001; /* Garantir que fique acima de outros elementos */
}

.btn-whatsapp-float:hover,
.btn-whatsapp-float:active {
  transform: translateY(-5px) scale(1.05);
  color: white;
  padding-right: 25px;
}

/* Efeito de toque para o botão WhatsApp */
.btn-whatsapp-float::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 10%,
    transparent 10.01%
  );
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.3s, opacity 0.5s;
  border-radius: 50px;
}

.btn-whatsapp-float:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.whatsapp-text {
  margin-left: 10px;
  font-weight: 600;
  font-size: 1rem;
  opacity: 1;
  transition: all 0.3s ease;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  animation: pulse-whatsapp 2s infinite;
  z-index: -1;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Jornada de Desenvolvimento */
.journey {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="15" cy="15" r="5" fill="%23FFD54F" fill-opacity="0.1"/%3E%3Ccircle cx="40" cy="30" r="3" fill="%2300BCD4" fill-opacity="0.1"/%3E%3Ccircle cx="80" cy="15" r="4" fill="%239575CD" fill-opacity="0.1"/%3E%3Ccircle cx="70" cy="70" r="6" fill="%23FF7043" fill-opacity="0.1"/%3E%3Ccircle cx="20" cy="60" r="4" fill="%238BC34A" fill-opacity="0.1"/%3E%3C/svg%3E');
  opacity: 0.5;
  z-index: 0;
}

.journey-path {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 50px 0;
  padding: 0 20px;
  z-index: 1;
}

.journey-path::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--tertiary-color),
    var(--quaternary-color),
    var(--accent-color)
  );
  border-radius: 10px;
  z-index: -1;
}

.journey-step {
  text-align: center;
  padding: 0 15px;
  flex: 1;
  /* max-width: 200px; */
}

.journey-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; /* Remove highlight on tap for mobile */
}

.journey-step:hover .journey-icon,
.journey-step:active .journey-icon {
  transform: scale(1.1) rotate(10deg);
}

/* Efeito de toque para ícones em mobile */
.journey-icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7) 10%,
    transparent 10.01%
  );
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.3s, opacity 0.5s;
  border-radius: 50%;
}

.journey-icon:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.journey-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .journey-path {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .journey-path::before {
    display: none; /* Removendo a linha vertical */
  }

  .journey-step {
    text-align: center;
    padding: 15px;
    /* max-width: 160px; */
    width: auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
  }

  .journey-step:hover {
    transform: translateY(-5px);
  }

  .journey-icon {
    margin: 0 auto 15px;
  }
}

/* Otimizações para carregamento em mobile */
@media (max-width: 992px) {
  img {
    max-width: 100%;
    height: auto;
  }

  /* Melhorar o tempo de resposta ao toque */
  a,
  button,
  .btn,
  .card-happy,
  .journey-icon {
    touch-action: manipulation;
  }
}

/* Mobile e Tablet Responsividade */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-happy {
    margin-bottom: 20px;
  }

  .happy-badge {
    display: inline-block;
    margin-bottom: 15px;
  }

  /* Especialidades responsivo */
  .specialty-card {
    margin-bottom: 40px;
  }

  /* Contato responsivo */
  .contact-header {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }

  .contact-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-info-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p.lead {
    font-size: 1.1rem;
  }

  .hero {
    text-align: center;
    padding-top: 100px;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .success-stats {
    justify-content: center;
  }

  .btn-whatsapp-float {
    padding: 15px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }

  .btn-whatsapp-float .whatsapp-text {
    display: none;
  }

  .btn-whatsapp-float:hover {
    padding: 15px;
  }

  .footer-decoration {
    width: 30px;
  }

  .journey-path {
    gap: 20px;
  }

  .journey-step {
    /* max-width: 140px; */
    margin-bottom: 0;
  }

  .journey-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact .happy-badge {
    padding: 0.4rem 1rem;
  }

  .footer .social-icons {
    justify-content: center !important;
    margin-bottom: 20px;
  }

  /* Especialidades responsivo - Flip Cards */
  .specialty-cards-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .flip-card {
    height: 380px;
  }

  .flip-card-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .flip-card-front h4 {
    font-size: 1.3rem;
  }

  .flip-card-back h5 {
    font-size: 1.2rem;
  }

  .flip-card-back p {
    font-size: 0.95rem;
  }

  .flip-card-list li {
    font-size: 0.9rem;
  }

  /* Serviços responsivo */
  .service-cards {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.95rem;
  }

  .service-feature span {
    font-size: 0.9rem;
  }

  /* Contato responsivo */
  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contact-form-card {
    padding: 20px 15px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 80px;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

  .journey-path {
    gap: 15px;
  }

  .journey-step {
    /* max-width: 120px; */
    padding: 10px;
  }

  .journey-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .journey-step p {
    font-size: 0.85rem;
  }

  .footer-decoration.rainbow,
  .footer-decoration.star {
    display: none;
  }

  .pt-6 {
    padding-top: 3rem !important;
  }

  /* Especialidades responsivo - Flip Cards para telas pequenas */
  .specialty-cards-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }

  .flip-card {
    height: 350px;
  }

  .flip-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .flip-card-front h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .flip-card-back h5 {
    font-size: 1.1rem;
  }

  .flip-card-back p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .flip-card-list {
    margin-bottom: 15px;
  }

  .flip-card-list li {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .flip-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .flip-prompt {
    font-size: 0.8rem;
    bottom: 15px;
  }

  .flip-card-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Serviços responsivo para telas pequenas */
  .service-cards {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }

  .service-card-header {
    padding: 20px 20px 10px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-card-body {
    padding: 10px 20px;
  }

  .service-description {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .service-features {
    gap: 10px;
  }

  .service-feature span {
    font-size: 0.8rem;
  }

  .service-card-footer {
    padding: 10px 20px 20px;
  }

  .service-btn {
    padding: 6px 15px;
    font-size: 0.85rem;
  }

  /* Contato responsivo */
  .contact-header {
    padding: 20px 15px;
  }

  .contact-avatar {
    font-size: 2.5rem;
  }

  .contact-title h4 {
    font-size: 1.3rem;
  }

  .contact-title p {
    font-size: 0.8rem;
  }

  .contact-text h6 {
    font-size: 0.9rem;
  }

  .contact-text p {
    font-size: 0.85rem;
  }

  .form-header h4 {
    font-size: 1.3rem;
  }

  .form-header p {
    font-size: 0.9rem;
  }

  .benefit-text {
    font-size: 0.85rem;
  }
}
