/* Cores personalizadas do LardesControle baseadas no logo*/
:root {
  --lardes-blue: #1B4965;
  --lardes-green: #7FB069;
  --lardes-blue-dark: #143649;
  --lardes-green-light: #95c481;
}

/* Ajuste de cores nos botões primários */
.btn-primary,
.submit-btn,
.btn-buy {
  background: var(--lardes-green) !important;
  border-color: var(--lardes-green) !important;
  color: #fff !important;
}

.btn-primary:hover,
.submit-btn:hover,
.btn-buy:hover {
  background: var(--lardes-green-light) !important;
  border-color: var(--lardes-green-light) !important;
}

/* Botão secundário */
.btn-secondary {
  border-color: var(--lardes-blue) !important;
  color: var(--lardes-blue) !important;
}

.btn-secondary:hover {
  background: var(--lardes-blue) !important;
  color: #fff !important;
}

/* Cores dos títulos e elementos de destaque */
.sitename,
.section-title h2 {
  color: var(--lardes-blue) !important;
}

/* Menu ativo */
.navmenu a.active,
.navmenu a:hover {
  color: var(--lardes-green) !important;
}

/* Ícones de serviços */
.service-icon {
  background: linear-gradient(135deg, var(--lardes-blue) 0%, var(--lardes-green) 100%) !important;
  color: #fff !important;
}

/* Cards de preços */
.pricing-item h3 {
  color: var(--lardes-blue) !important;
}

.pricing-item .price .amount {
  color: var(--lardes-green) !important;
}

.pricing-item ul li i {
  color: var(--lardes-green) !important;
}

/* Estatísticas do hero */
.hero-stats .stat-number {
  color: var(--lardes-blue) !important;
}

/* Floating cards */
.floating-card {
  background: linear-gradient(135deg, var(--lardes-blue) 0%, var(--lardes-green) 100%) !important;
}

.floating-card .card-icon i,
.floating-card .growth-percentage,
.floating-card h5 {
  color: #fff !important;
}

/* Ícones de features */
.icon-wrapper {
  background: var(--lardes-blue) !important;
  color: #fff !important;
}

.feature-item h3 {
  color: var(--lardes-blue) !important;
}

/* Rating stars */
.testimonial-header .rating i {
  color: var(--lardes-green) !important;
}

/* Footer */
.footer .sitename {
  color: var(--lardes-green) !important;
}

/* Links do footer */
.footer a:hover {
  color: var(--lardes-green) !important;
}

/* Scroll top button */
#scroll-top {
  background: var(--lardes-green) !important;
}

#scroll-top:hover {
  background: var(--lardes-blue) !important;
}

/* Header sticky */
.header.sticked {
  background: rgba(27, 73, 101, 0.95) !important;
}

/* Preloader */
#preloader:before {
  border-top-color: var(--lardes-green) !important;
}

/* Ajustes de ícones de contato */
.info-icon,
.detail-icon {
  background: var(--lardes-blue) !important;
  color: #fff !important;
}

/* Card de serviços hover */
.service-item:hover {
  border-color: var(--lardes-green) !important;
  box-shadow: 0 0 30px rgba(127, 176, 105, 0.2) !important;
}

/* Subtitle das seções */
.section-title .subtitle {
  color: var(--lardes-green) !important;
}

/* Números animados */
.purecounter {
  color: var(--lardes-blue) !important;
}

/* Logo no header - ajuste de cor do texto */
.logo h1.sitename {
  color: var(--lardes-blue) !important;
  font-weight: 700;
  margin: 0;
}

/* Logo sticky (quando a página rola) */
.header.sticked .logo h1.sitename {
  color: #fff !important;
}

/* ============================================
   SEÇÃO WHATSAPP - DESTAQUE ESPECIAL
   ============================================ */

/* Container da seção WhatsApp */
.whatsapp-feature {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.whatsapp-feature::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(127, 176, 105, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Badge de destaque */
.badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: pulse-badge 2s infinite;
}

.badge-highlight i {
  font-size: 20px;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
}

/* Conteúdo WhatsApp */
.whatsapp-content {
  position: relative;
  z-index: 1;
}

.whatsapp-content h2 {
  color: var(--lardes-blue);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.whatsapp-content .lead {
  font-size: 1.25rem;
  color: #6c757d;
  font-weight: 500;
}

/* Items de features do WhatsApp */
.whatsapp-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.whatsapp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.whatsapp-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(127, 176, 105, 0.2);
}

.whatsapp-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--lardes-blue) 0%, var(--lardes-green) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.whatsapp-text h4 {
  color: var(--lardes-blue);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.whatsapp-text p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* Botão CTA WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: white;
}

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

/* Visual do telefone mockup */
.whatsapp-visual {
  position: relative;
  z-index: 1;
}

.phone-mockup {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.phone-mockup img {
  border-radius: 20px;
}

/* Notificações flutuantes */
.floating-notification {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 280px;
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.notification-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.notification-2 {
  top: 45%;
  left: -30px;
  animation-delay: 1s;
}

.notification-3 {
  bottom: 15%;
  right: -10px;
  animation-delay: 2s;
}

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

.notification-icon {
  flex-shrink: 0;
  font-size: 24px;
}

.notification-content {
  flex: 1;
}

.notification-content strong {
  display: block;
  color: var(--lardes-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.notification-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #495057;
  line-height: 1.4;
}

/* Responsividade */
@media (max-width: 991px) {
  .whatsapp-content h2 {
    font-size: 2rem;
  }

  .whatsapp-item {
    padding: 20px;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-notification {
    display: none; /* Esconde notificações em mobile */
  }
}

@media (max-width: 576px) {
  .whatsapp-content h2 {
    font-size: 1.75rem;
  }

  .btn-whatsapp {
    width: 100%;
    font-size: 1rem;
    padding: 12px 25px;
  }
}

/* ============================================
   SEÇÃO REGRA 50/30/20
   ============================================ */

/* Container da seção */
.rule-section {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.rule-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 176, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Visual com estatísticas flutuantes */
.rule-visual {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.rule-visual img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.floating-stats {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float-stats 3s ease-in-out infinite;
  z-index: 10;
}

.stats-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.stats-2 {
  top: 45%;
  left: -40px;
  animation-delay: 1s;
}

.stats-3 {
  bottom: 15%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float-stats {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.stat-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-circle .percentage {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  color: var(--lardes-blue);
  font-weight: 600;
  font-size: 1rem;
}

/* Conteúdo da regra */
.rule-content {
  position: relative;
  z-index: 1;
}

.rule-content h2 {
  color: var(--lardes-blue);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.rule-content .lead {
  font-size: 1.25rem;
  color: #495057;
  font-weight: 500;
}

/* Breakdown da regra */
.rule-breakdown {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.rule-item:hover {
  transform: translateX(10px);
  background: white;
  border-color: var(--lardes-green);
  box-shadow: 0 8px 30px rgba(127, 176, 105, 0.15);
}

.rule-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.rule-text h4 {
  color: var(--lardes-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rule-text p {
  color: #6c757d;
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

/* CTA da regra */
.rule-cta .alert {
  border-radius: 15px;
  padding: 20px;
  border-left: 5px solid #1976d2;
}

.rule-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(127, 176, 105, 0.4);
  transition: all 0.3s ease;
}

.rule-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(127, 176, 105, 0.5);
}

/* Responsividade */
@media (max-width: 991px) {
  .rule-content h2 {
    font-size: 2rem;
    margin-top: 30px;
  }

  .rule-item {
    padding: 20px;
  }

  .rule-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .floating-stats {
    display: none; /* Esconde estatísticas flutuantes em tablets */
  }
}

@media (max-width: 576px) {
  .rule-content h2 {
    font-size: 1.75rem;
  }

  .rule-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
  }

  .rule-text h4 {
    font-size: 1.1rem;
  }

  .rule-text p {
    font-size: 0.95rem;
  }

  .rule-cta .btn-primary {
    width: 100%;
    font-size: 1rem;
    padding: 12px 25px;
  }
}

/* ============================================
   SEÇÃO DE CONTATO - VISUAL MELHORADO
   ============================================ */

/* Card de informações de contato */
.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--lardes-blue) 0%, var(--lardes-green) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.25);
}

.contact-header-icon i {
  font-size: 40px;
  color: white;
}

.contact-info-card h3 {
  color: var(--lardes-blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info-card > p {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Lista de informações */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info-item:hover {
  background: white;
  border-color: var(--lardes-green);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(127, 176, 105, 0.15);
}

.contact-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
  background: linear-gradient(135deg, var(--lardes-blue) 0%, var(--lardes-green) 100%);
  transform: scale(1.05);
}

.contact-icon-wrapper i {
  font-size: 26px;
  color: var(--lardes-blue);
  transition: color 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper i {
  color: white;
}

.contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lardes-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1.05rem;
  color: #495057;
  font-weight: 500;
  line-height: 1.4;
}

.contact-value:hover {
  color: var(--lardes-green);
}

a.contact-value {
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-value:hover {
  color: var(--lardes-green);
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 991px) {
  .contact-info-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-header-icon {
    width: 70px;
    height: 70px;
  }

  .contact-header-icon i {
    font-size: 35px;
  }

  .contact-info-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-info-card {
    padding: 25px;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .contact-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .contact-icon-wrapper i {
    font-size: 24px;
  }

  .contact-info-card h3 {
    font-size: 1.3rem;
  }
}

/* ============================================
   FORMULÁRIO DE CONTATO - MENSAGENS
   ============================================ */

.contact-email-form .loading {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-left: 4px solid #1976d2;
}

.contact-email-form .error-message {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #c62828;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-left: 4px solid #c62828;
}

.contact-email-form .sent-message {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-left: 4px solid #2e7d32;
}

.contact-email-form .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================
   SEÇÃO TAREFAS E CALENDÁRIO
   ============================================ */

.tasks-calendar {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.tasks-calendar::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 176, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Calendar Mockup */
.calendar-mockup {
  position: relative;
  z-index: 1;
}

.calendar-mockup .table td {
  padding: 12px 8px;
  font-size: 0.9rem;
  color: #495057;
  font-weight: 500;
}

.calendar-mockup .table th {
  padding: 10px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Floating Task Cards */
.floating-task-card {
  position: absolute;
  background: white;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  animation: float-task 3s ease-in-out infinite;
  z-index: 10;
  border-left: 4px solid var(--lardes-blue);
}

.task-card-1 {
  top: 15%;
  right: -40px;
  animation-delay: 0s;
}

.task-card-2 {
  bottom: 20%;
  left: -50px;
  animation-delay: 1.5s;
}

@keyframes float-task {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Feature List Inline */
.feature-item-inline {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item-inline:hover {
  background: white;
  border-color: var(--lardes-green);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(127, 176, 105, 0.15);
}

.feature-icon-inline {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--lardes-blue) 0%, var(--lardes-green) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.feature-text-inline h5 {
  color: var(--lardes-blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-text-inline p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Example Cards */
.example-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.example-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lardes-green), var(--lardes-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.example-card:hover::before {
  transform: scaleX(1);
}

.example-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(127, 176, 105, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.example-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: all 0.3s ease;
}

.example-card:hover .example-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.example-icon.bg-primary {
  background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.example-icon.bg-success {
  background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
}

.example-icon.bg-info {
  background: linear-gradient(135deg, #36b9cc 0%, #258391 100%);
}

.example-card h5 {
  color: var(--lardes-blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.example-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
}

.example-card p.text-muted {
  font-size: 0.85rem;
  font-weight: 500;
  color: #95a5a6;
  margin-bottom: 15px;
}

/* CTA Tasks */
.cta-tasks .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(127, 176, 105, 0.4);
  transition: all 0.3s ease;
}

.cta-tasks .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(127, 176, 105, 0.5);
}

.cta-tasks .btn i {
  font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 991px) {
  .calendar-mockup {
    margin-bottom: 40px;
  }

  .floating-task-card {
    display: none;
  }

  .feature-item-inline {
    padding: 18px;
  }

  .feature-icon-inline {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-text-inline h5 {
    font-size: 1rem;
  }

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

  .example-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .tasks-calendar {
    padding: 60px 0;
  }

  .feature-item-inline {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .cta-tasks .btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 25px;
  }

  .calendar-mockup .table td {
    padding: 8px 4px;
    font-size: 0.8rem;
  }

  .example-card {
    padding: 30px 20px;
  }

  .example-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .example-card h5 {
    font-size: 1.05rem;
  }
}
