:root {
  --ifood-red: #ea1d2c;
  --ifood-green: #00d27a;
}

body {
  background-color: #f8f9fa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Header */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  min-width: 0;
}

@media (max-width: 767px) {
  .navbar-brand img {
    height: 40px !important;
  }
  
  .header-container {
    gap: 6px;
  }
  
  .header-search input {
    font-size: 0.85rem;
    padding: 6px 8px 6px 32px !important;
  }
  
  .header-search .bi-search {
    margin-left: 8px !important;
    font-size: 0.9rem;
  }
  
  .btn-outline-secondary {
    padding: 0.25rem 0.5rem;
  }
  
  .btn-outline-secondary i {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-search input {
    font-size: 0.9rem;
  }
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, var(--ifood-red), #ff6b6b);
}

/* Restaurant Logo */
.restaurant-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Search Autocomplete */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e9ecef;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-suggestions.active {
  display: block;
}

.search-suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.search-suggestion-item:hover {
  background: #f8f9fa;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  top: 40%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
  left: -22px;
}

.carousel-control-next {
  right: -22px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Mobile: ajustar setas para não ultrapassar viewport */
@media (max-width: 767px) {
  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
  
  /* Evitar scroll horizontal */
  #destaquesCarousel {
    overflow: hidden;
  }
  
  .carousel-inner {
    overflow: visible;
  }
}

/* Carousel Indicators */
.carousel-indicators {
  margin-bottom: -30px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(234, 29, 44, 0.5);
}

.carousel-indicators button.active {
  background-color: var(--ifood-red);
}

/* Destaques Responsivos - VERSÃO DEFINITIVA */
#destaquesCarousel .destaque-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

#destaquesCarousel .destaque-item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}

/* Mobile: apenas 1 card visível */
#destaquesCarousel .destaque-item {
  flex: 0 0 100%;
  max-width: 100%;
  display: none;
}

#destaquesCarousel .destaque-item:first-child {
  display: block;
}

/* Tablet: 3 cards visíveis */
@media (min-width: 768px) {
  #destaquesCarousel .destaque-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    display: none;
  }
  
  #destaquesCarousel .destaque-item:nth-child(1),
  #destaquesCarousel .destaque-item:nth-child(2),
  #destaquesCarousel .destaque-item:nth-child(3) {
    display: block;
  }
}

/* Desktop: 4 cards visíveis */
@media (min-width: 992px) {
  #destaquesCarousel .destaque-item {
    flex: 0 0 25%;
    max-width: 25%;
    display: none;
  }
  
  #destaquesCarousel .destaque-item:nth-child(1),
  #destaquesCarousel .destaque-item:nth-child(2),
  #destaquesCarousel .destaque-item:nth-child(3),
  #destaquesCarousel .destaque-item:nth-child(4) {
    display: block;
  }
}.destaque-item:nth-child(n+2) {
    display: none;
  }
  .destaque-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .carousel-control-prev {
    left: -15px;
  }

  .carousel-control-next {
    right: -15px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
}

/* Animação suave do carousel */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

/* Product Cards Enhanced */
.product-card-enhanced {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-enhanced .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-enhanced .card-title {
  min-height: 2.4em;
  line-height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card-enhanced .card-text {
  min-height: 3em;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
}

.product-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card-enhanced:active {
  transform: translateY(-4px) scale(0.98);
}

/* Product Cards */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.product-card .flex-grow-1 h6 {
  min-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-card .flex-grow-1 p {
  min-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card:active {
  transform: translateY(0px) scale(0.98);
}

.product-clickable {
  cursor: pointer;
}

/* Gradient effect on cards */
.product-card-gradient {
  position: relative;
  overflow: hidden;
}

.product-card-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ifood-red), #ff6b6b);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-gradient:hover::before {
  opacity: 1;
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.product-badge-small {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  z-index: 2;
}

.badge-popular {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
}

.badge-new {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  color: white;
}

.badge-exclusive {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  color: white;
}

.badge-promo {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  color: white;
}

.badge-top {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
}

/* Favorite Button */
.favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 2;
}

.favorite-btn i {
  font-size: 1.1rem;
  color: #999;
  transition: all 0.3s ease;
}

.favorite-btn:hover {
  transform: scale(1.1);
}

.favorite-btn.active i,
.favorite-btn:hover i {
  color: var(--ifood-red);
}

.favorite-btn.active i {
  animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1.1); }
}

.favorite-btn-inline {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.favorite-btn-inline i {
  font-size: 1.2rem;
  color: #999;
  transition: color 0.3s ease;
}

.favorite-btn-inline:hover,
.favorite-btn-inline.active {
  transform: scale(1.2);
}

.favorite-btn-inline:hover i,
.favorite-btn-inline.active i {
  color: var(--ifood-red);
}

/* Restaurant Header Responsivo */
.restaurant-header-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.restaurant-info-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.restaurant-name-rating {
  flex: 1;
}

/* Rating Badge Clicável */
.rating-badge {
  background: #ffc107;
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.rating-badge i {
  font-size: 0.75rem;
}

.rating-clickable {
  cursor: pointer;
}

.rating-clickable:hover {
  background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* Store Status Badge */
.store-status-badge {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pulse 2s infinite;
}

.store-open {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.store-closing {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
  animation: blink 1.5s infinite;
}

.store-closed {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.6; }
}

.restaurant-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

/* Delivery Info Box e Store Hours Box */
.delivery-info-box, .store-hours-box {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 12px 15px;
  height: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.delivery-info-box:hover, .store-hours-box:hover {
  border-color: var(--ifood-red);
  box-shadow: 0 2px 8px rgba(234, 29, 44, 0.1);
}

.delivery-text, .store-hours-text {
  line-height: 1.3;
}

.delivery-info-box .fw-semibold, .store-hours-box .fw-semibold {
  font-size: 0.9rem;
}

.delivery-info-box .small, .store-hours-box .small {
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .delivery-info-box, .store-hours-box {
    padding: 10px 12px;
    justify-content: center;
  }
  
  .delivery-text, .store-hours-text {
    font-size: 0.85rem;
  }
  
  .delivery-info-box .fw-semibold, .store-hours-box .fw-semibold {
    font-size: 0.8rem;
  }
  
  .delivery-info-box .small, .store-hours-box .small {
    font-size: 0.7rem;
  }
  
  .delivery-info-box i, .store-hours-box i {
    font-size: 1rem;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
}

/* Quick Filters */
.quick-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.quick-filters::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.85rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-chip:hover {
  border-color: var(--ifood-red);
  color: var(--ifood-red);
  transform: translateY(-2px);
}

.filter-chip.active {
  background: var(--ifood-red);
  color: white;
  border-color: var(--ifood-red);
}

.filter-chip i {
  font-size: 0.9rem;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff3cd;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #856404;
}

.countdown-timer i {
  font-size: 1rem;
  animation: ring 2s infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
}

/* Coupon Card */
.coupon-card {
  background: linear-gradient(135deg, #fff9e6, #ffffff);
  border: 2px dashed var(--ifood-red);
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
}

.coupon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(234, 29, 44, 0.15);
}

/* Toast customization */
.toast {
  border-radius: 12px;
}

/* Free Delivery Progress */
.free-delivery-progress {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
}

/* Upsell Section */
.upsell-section {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
}

.upsell-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upsell-item:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.upsell-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

/* Category Links with smooth scroll */
.category-link {
  transition: all 0.3s ease;
}

.category-link:hover {
  background: #f8f9fa;
  padding-left: 20px !important;
}

/* Iframe Loading */
.iframe-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

#productIframe {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#productIframe.loaded {
  opacity: 1;
}

/* Buttons */
.btn-danger {
  background-color: var(--ifood-red);
  border-color: var(--ifood-red);
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #d11a2a;
  border-color: #d11a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 29, 44, 0.3);
}

.btn-danger:active {
  transform: translateY(0px) scale(0.98);
}

.btn-outline-danger {
  color: var(--ifood-red);
  border-color: var(--ifood-red);
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  background-color: var(--ifood-red);
  border-color: var(--ifood-red);
  transform: translateY(-2px);
}

.btn-outline-danger:active {
  transform: translateY(0px) scale(0.98);
}

/* Text Colors */
.text-danger {
  color: var(--ifood-red) !important;
}

.text-success {
  color: var(--ifood-green) !important;
}

/* Badges */
.badge {
  font-size: 0.7rem;
  font-weight: 600;
}

/* Card improvements */
.card {
  border-radius: 8px;
  overflow: hidden;
}

.card-img-top {
  border-radius: 8px 8px 0 0;
}

/* Search Input Styling */
.form-control:focus {
  border-color: var(--ifood-red);
  box-shadow: 0 0 0 0.2rem rgba(234, 29, 44, 0.25);
}

/* Restaurant Info Modal */
.nav-tabs .nav-link {
  color: #6c757d;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 1rem;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: var(--ifood-red);
  border-bottom-color: var(--ifood-red);
  background-color: transparent;
}

.nav-tabs .nav-link:hover {
  color: var(--ifood-red);
  border-color: transparent;
}

.border-bottom-3 {
  border-bottom-width: 3px !important;
}

/* Avaliações */
.border-warning {
  border-color: #ffc107 !important;
}

.border-4 {
  border-width: 4px !important;
}

/* Footer */
footer a:hover {
  color: var(--ifood-red) !important;
}

footer .text-muted:hover {
  color: var(--ifood-red) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner h2 {
    font-size: 1.5rem;
  }

  .hero-banner p {
    font-size: 0.9rem;
  }

  .product-card {
    flex-direction: column !important;
    text-align: center;
  }

  .product-card .flex-shrink-0 {
    order: -1;
    margin-bottom: 1rem;
  }

  .product-card .flex-grow-1 {
    padding-right: 0 !important;
  }
  
  .restaurant-header-row {
    flex-direction: column;
  }
  
  .restaurant-info-left {
    width: 100%;
  }
  
  .restaurant-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .restaurant-meta .mx-2 {
    display: none;
  }

  .countdown-timer {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* Prevenir scroll horizontal */
body {
  overflow-x: hidden;
}

.container, .container-fluid {
  overflow-x: hidden;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.carousel {
  overflow: hidden;
}

/* Barra de Navegação Inferior Fixa (App Style) */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  z-index: 1000;
  height: 70px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #6c757d;
  font-size: 0.7rem;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  padding: 5px;
  min-width: 0;
}

.bottom-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 3px;
  transition: all 0.3s ease;
}

.bottom-nav-item span {
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

.bottom-nav-item:hover {
  color: var(--ifood-red);
  transform: translateY(-2px);
}

.bottom-nav-item:hover i {
  transform: scale(1.1);
}

.bottom-nav-item.active {
  color: var(--ifood-red);
}

/* Botão Central Destacado */
.bottom-nav-center {
  position: relative;
  margin-top: -30px;
}

.center-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ifood-red), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(234, 29, 44, 0.4);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.center-button i {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.bottom-nav-center:hover .center-button {
  transform: scale(1.1) translateY(-3px) rotate(90deg);
  box-shadow: 0 6px 20px rgba(234, 29, 44, 0.6);
}

.bottom-nav-center:active .center-button {
  transform: scale(1.05) translateY(-2px) rotate(90deg);
}

.bottom-nav-center span {
  color: var(--ifood-red);
  font-weight: 600;
  font-size: 0.65rem;
}

/* Badge para o carrinho na barra inferior */
.bottom-nav-badge {
  position: absolute;
  top: 2px;
  right: 50%;
  transform: translateX(15px);
  background: var(--ifood-red);
  color: white;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateX(15px) scale(1); }
  50% { transform: translateX(15px) scale(1.2); }
}

/* Ajuste do footer para não ficar atrás da barra */
footer {
  margin-bottom: 80px;
}

/* Responsivo para desktop - esconder barra */
@media (min-width: 992px) {
  .bottom-nav {
    display: none;
  }
  
  footer {
    margin-bottom: 0;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }
}

/* Focus styles para acessibilidade */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--ifood-red);
  outline-offset: 2px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Pull to refresh hint (visual only) */
@media (max-width: 767px) {
  body {
    overscroll-behavior-y: contain;
  }
}


.app-whats {
    display: block;
    position: fixed;
    bottom: 18px;
    right: 15px;
    font-family: arial;
}

.app-whats i {
  display: block;
  width: 110px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  border-radius: 4px;
  background-color: #009688;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 99999;
}

.app-whats A:link {text-decoration:none;color:#ffffff;}
.app-whats A:visited {text-decoration:none;color:#ffffff;}
.app-whats A:active {text-decoration:none;color:#ffffff;}
.app-whats A:hover {text-decoration:none;color:#ffffff;}

.app-whats {
    display: block;
    position: fixed;
    bottom: 18px;
    right: 15px;
    font-family: arial;
}

.app-whats i {
  display: block;
  width: 110px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  border-radius: 4px;
  background-color: #009688;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 99999;
}

.pulse-button {
  display: block;
  position: fixed;
  bottom: 18px;
  right: 15px;
  font-family: arial;
  margin:15px;
  width: 60px;
  height: 60px;
  border: none;
  box-shadow: 0 0 0 0 rgba(140, 186, 15, 0.7);
  border-radius: 50%;
  background-color: #8cba0f;
  background-image: url(../img/whatsapp.png);
  background-size:cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  color:#ffffff;
  z-index:9999 !important;
}

.pulse-button:hover 
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}

@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(42, 102, 39, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(42, 102, 39, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(42, 102, 39, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(42, 102, 39, 0);}}