* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  padding: 20px 0;
}

/* Header scroll behavior */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 15px 0;
}

.sticky-header.hidden {
  transform: translateY(-100%);
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header.scrolled {
  position: sticky;
  top: 0;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.sticky-header.scrolled {
  padding: 15px 0;
  background: linear-gradient(135deg, #3c366b 0%, #40407a 100%);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.header-content-inline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0;
  width: 100%;
}

.mobile-search-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.mobile-search-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-container a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo_dentro {
  width: 350px;
  height: 68px;
  object-fit: contain;
}

.logo {
  width: auto;
  height: 200px;
  object-fit: contain;
}

.logo-small {
  width: 350px;
  height: 68px;
  object-fit: contain;
}

/* Search Section */
.search-section {
  background: #f7fafc;
  padding: 60px 0;
}

.search-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.search-container-inline {
  width: 100%;
  max-width: 900px;
}

.search-form {
  display: flex;
  gap: 15px;
  align-items: center;
  background: white;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-form-inline {
  display: flex;
  gap: 15px;
  align-items: center;
  background: white;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 2;
  min-width: 300px;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  background: #f7fafc;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.city-select {
  flex: 1;
  min-width: 200px;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  background: #f7fafc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-select:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
  white-space: nowrap;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
}

/* Main Content */
.main {
  min-height: calc(100vh - 200px);
  background: #f7fafc;
  padding: 20px 0;
}

/* Add padding to main content to compensate for fixed header */
.main {
  padding-top: 100px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2d3748;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 2px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2d3748;
  text-align: center;
}

/* Featured Banner */
.featured-section {
  padding: 10px 0 20px 0;
  background: white;
}

.featured-banner {
  position: relative;
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  transition: transform 0.3s ease;
}

.featured-card {
  position: relative;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-overlay h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.card-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
  font-size: 1.2rem;
}

.banner-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(238, 90, 36, 0.6);
}

.banner-nav.prev {
  left: -30px;
}

.banner-nav.next {
  right: -30px;
}

/* Search Results */
.results-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 40px 0;
}

.result-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-left: 5px solid #667eea;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left-color: #ff6b6b;
}

.result-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.result-logo {
  flex-shrink: 0;
}

.result-logo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #e2e8f0;
}

.result-info {
  flex-grow: 1;
}

.result-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3748;
}

.result-info p {
  color: #718096;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 5px;
}

.star-rating i {
  color: #ffd700;
  font-size: 16px;
}

.star-rating .empty {
  color: #e2e8f0;
}

.rating-text {
  font-size: 0.9rem;
  color: #718096;
  margin-left: 10px;
  display: block;
  margin-top: 5px;
}

.result-phone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #667eea;
  font-weight: 600;
  background: #edf2f7;
  padding: 10px 15px;
  border-radius: 25px;
}

.result-phone-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: bold;
  margin-top: 10px;
}

/* Business Details */
.business-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.business-logo {
  width: 100%;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: flex-start; /* alinha topo */
  justify-content: center;
  background-color: #fff; /* ou outra cor de fundo se necessário */
  overflow: hidden;
  border-radius: 20px;
  border: 5px solid #e2e8f0;
}

.business-logo img {
  width: 100%;
  height: auto;
}


.business-info h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  max-width: 600px; /* limite maximo da largura */
  overflow: hidden;

  /* para limitar em 2 linhas com reticências: */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  /* permite quebra de linha */
  word-wrap: break-word;
  white-space: normal;
}


.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.status.open {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
}

.status.closed {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
}

.business-info p {
  margin-bottom: 12px;
  color: #718096;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info {
  margin: 25px 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info i {
  color: #667eea;
  width: 20px;
}

.contact-info span {
  color: #000;
  font-weight: bold;
}

.payment-methods {
  margin-top: 25px;
}

.payment-methods p {
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.business-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.rating-section,
.social-section {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-section h3,
.social-section h3 {
  margin-bottom: 20px;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 10px;
}

.star-rating i.active,
.star-rating i:hover {
  color: #ffd700;
  transform: scale(1.1);
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
  color: white;
}

.social-link.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
  color: white;
}

.opening-hours,
.photo-gallery,
.about-section,
.promotions-section,
.contact-form-section {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.opening-hours h3,
.photo-gallery h3,
.about-section h3,
.promotions-section h3,
.contact-form-section h3 {
  margin-bottom: 25px;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}

.hours-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.hour-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 10px;
  background: #f7fafc;
  border-radius: 10px;
  width: calc(100% / 7 - 10px);
}

.day {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.time {
  color: #48bb78;
  font-weight: 500;
}

.time.closed {
  color: #f56565;
}

.photo-gallery {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.gallery-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-grid {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.gallery-grid.active {
  display: grid;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 400px;
  position: relative;
  display: none;
}

.gallery-image.mobile-only {
  display: block;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .gallery-grid {
    display: grid;
  }

  .gallery-image.mobile-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    display: none !important;
  }

  .gallery-image.mobile-only {
    display: block;
  }
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.2rem;
  color: #667eea;
}

.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #667eea;
  transform: scale(1.2);
}

.promotions-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.promotions-image {
  width: 100%;
  height: 300px;
  position: relative;
}

.promotions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotions-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.2rem;
  color: #667eea;
}

.promotions-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.promotions-nav.prev {
  left: 20px;
}

.promotions-nav.next {
  right: 20px;
}

.promotions-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.promotions-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promotions-dot.active {
  background: #667eea;
  transform: scale(1.2);
}

.contact-form {
  max-width: 600px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2d3748;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.btn-primary:disabled {
  background: #a0aec0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 50px;
  height: auto;
}

.footer-section p {
  color: #cbd5e0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:hover {
  color: #667eea;
  transform: translateX(5px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #cbd5e0;
}

.contact-info i {
  color: #667eea;
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #667eea;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #667eea;
}

.newsletter-form button {
  padding: 12px 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
  color: #cbd5e0;
}

/* Responsive Design - Mobile Optimizations ONLY for Search Results */
@media (max-width: 768px) {
  /* APENAS modificações para página de resultados de busca */
  .results-container .result-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #ff6b6b;
    transition: all 0.3s ease;
  }

  .results-container .result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .results-container .result-content {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
  }

  .results-container .result-logo {
    flex-shrink: 0;
    align-self: flex-start;
  }

  .results-container .result-logo img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    border: none;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .results-container .result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 2px;
  }

  .results-container .result-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
    color: #2d3748;
  }

  .results-container .result-address {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 400;
  }

  .results-container .star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
  }

  .results-container .star-rating i {
    font-size: 14px;
    color: #ffd700;
  }

  .results-container .star-rating .empty {
    color: #e2e8f0;
  }

  .results-container .rating-text {
    font-size: 0.8rem;
    color: #718096;
    margin-left: 6px;
    font-weight: 500;
  }

  .results-container .result-phone {
    display: none;
  }

  .results-container .result-phone-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d3748;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 5px;
  }

  .results-container .result-phone-mobile i {
    color: #4299e1;
    font-size: 1.1rem;
  }

  .results-container .result-phone-mobile span {
    color: #2d3748;
    font-weight: 700;
  }

  /* Ajustes gerais para mobile apenas nas outras páginas */
  .main {
    padding-top: 120px;
  }

  .header-content-inline {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
  }

  .logo-container {
    flex: 1;
  }

  .mobile-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-container-inline {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%);
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .search-container-inline.mobile-hidden {
    display: none;
  }

  .search-container-inline.mobile-visible {
    display: block;
  }

  .search-form,
  .search-form-inline {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    padding: 15px;
  }

  .search-input,
  .city-select,
  .search-input-inline,
  .city-select-inline {
    min-width: 100%;
    flex: none;
    text-align: left;
  }

  .search-btn,
  .search-btn-inline {
    justify-content: center;
    padding: 15px 20px;
    text-align: center;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-nav {
    display: none;
  }

  .logo {
    width: auto;
    height: 148px;
  }

  .logo-small {
    width: 250px;
    height: 48px;
  }

  .business-header {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .business-logo {
    width: 100%;
    margin-bottom: 20px;
  }

  .business-logo {
  width: 350px;
  height: 300px;
  display: flex;
  align-items: flex-start; /* alinha topo */
  justify-content: center;
  background-color: #fff; /* ou outra cor de fundo se necessário */
  overflow: hidden;
  border-radius: 20px;
  border: 5px solid #e2e8f0;
}

  .business-info {
    padding: 20px;
  }

  .business-info h1 {
    white-space: normal;     /* Permite quebras de linha */
    overflow: visible;       /* Mostra todo o conteúdo */
    text-overflow: unset;    /* Remove o efeito de "..." */
    display: -webkit-box;    /* Ativa o modo flexível */
    -webkit-line-clamp: 3;   /* Limita a 3 linhas */
    -webkit-box-orient: vertical;
  }

  .business-actions {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .hour-item {
    width: 100%;
    margin-bottom: 0;
  }

  .rating-section,
  .social-section,
  .opening-hours,
  .photo-gallery,
  .about-section,
  .promotions-section,
  .contact-form-section {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-nav {
    width: 50px;
    height: 50px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

  .promotions-nav {
    width: 50px;
    height: 50px;
  }

  .promotions-nav.prev {
    left: 10px;
  }

  .promotions-nav.next {
    right: 10px;
  }

  .promotions-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .results-container .result-logo img {
    width: 90px;
    height: 90px;
  }

  .results-container .result-info h3 {
    font-size: 1rem;
  }

  .results-container .result-phone-mobile {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 15px;
  }

  .logo {
    width: 200px;
    height: 38px;
  }

  .logo-small {
    width: 200px;
    height: 38px;
  }

  .business-info h1 {
    font-size: 1.8rem;
  }

  .section-title,
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .featured-card {
    height: 140px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-nav.prev {
    left: 5px;
  }

  .gallery-nav.next {
    right: 5px;
  }

  .promotions-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .promotions-nav.prev {
    left: 5px;
  }

  .promotions-nav.next {
    right: 5px;
  }

  .promotions-image {
    height: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    border-radius: 25px;
    padding: 12px 20px;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .results-container .result-logo img {
    width: 80px;
    height: 80px;
  }

  .results-container .result-info h3 {
    font-size: 0.95rem;
  }

  .results-container .result-phone-mobile {
    font-size: 0.85rem;
  }

  .results-container .result-content {
    gap: 12px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .business-info h1 {
    font-size: 1.5rem;
  }

  .section-title,
  .page-title {
    font-size: 1.5rem;
  }

  .hours-grid {
    flex-direction: column;
    gap: 5px;
  }

  .hour-item {
    width: 100%;
    margin-bottom: 5px;
  }

  .gallery-image {
    height: 200px;
  }
}
