/* ===== VARIABLES CSS ===== */
:root {
  /* Colors */
  --primary-color: #e74c3c;
  --primary-color-dark: #c0392b;
  --secondary-color: #f39c12;
  --accent-color: #27ae60;
  --text-color: #2c3e50;
  --text-color-light: #7f8c8d;
  --white-color: #ffffff;
  --light-color: #f8f9fa;
  --dark-color: #2c3e50;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-color-dark: rgba(0, 0, 0, 0.2);
  
  /* Typography */
  --body-font: 'Inter', sans-serif;
  --title-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --header-height: 4rem;
  --section-padding: 4rem 0;
  --container-margin: 1rem;
  --border-radius: 0.75rem;
  --border-radius-small: 0.5rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1.125rem;
    --small-font-size: 1rem;
    --smaller-font-size: 0.875rem;
  }
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white-color);
}

h1, h2, h3 {
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-margin);
}

.section {
  padding: var(--section-padding);
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.section__title--center {
  text-align: center;
}

.section__title-accent {
  color: var(--secondary-color);
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  text-align: center;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.button--primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.button--primary:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.button--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.button--secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.button__icon {
  font-size: 1.2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 2px 16px var(--shadow-color);
  z-index: var(--z-fixed);
  transition: var(--transition);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  height: 2.5rem;
  width: auto;
}

/* Menu Mobile - Corrigido */
.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--white-color);
  box-shadow: -2px 0 16px var(--shadow-color);
  padding: 6rem 2rem 2rem;
  transition: right 0.4s ease-in-out;
  z-index: var(--z-modal);
}

.nav__menu.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav__item {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.nav__menu.show-menu .nav__item {
  opacity: 1;
  transform: translateX(0);
}

.nav__menu.show-menu .nav__item:nth-child(1) { transition-delay: 0.1s; }
.nav__menu.show-menu .nav__item:nth-child(2) { transition-delay: 0.2s; }
.nav__menu.show-menu .nav__item:nth-child(3) { transition-delay: 0.3s; }
.nav__menu.show-menu .nav__item:nth-child(4) { transition-delay: 0.4s; }

.nav__link {
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: var(--transition);
  font-size: 1.1rem;
  padding: 0.5rem 0;
  display: block;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  background: none;
  border: none;
  padding: 0.5rem;
  transition: var(--transition);
}

.nav__close:hover {
  color: var(--primary-color);
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-color);
  background: none;
  border: none;
  padding: 0.5rem;
  transition: var(--transition);
}

.nav__toggle:hover {
  color: var(--primary-color);
}

/* Overlay para menu mobile */
.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav__overlay.show-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===== HOME ===== */
.home {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.home__container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.home__data {
  text-align: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.home__title-accent {
  color: var(--primary-color);
}

.home__description {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.home__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.home__img {
  display: flex;
  justify-content: center;
}

.home__img-pizza {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 16px 32px var(--shadow-color-dark);
  animation: float 3s ease-in-out infinite;
}

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

/* ===== ABOUT ===== */
.about {
  background-color: var(--white-color);
}

.about__container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: 1.5rem;
  color: var(--text-color-light);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about__stat {
  text-align: center;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px var(--shadow-color);
}

.about__stat-number {
  display: block;
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.about__stat-text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.about__img {
  display: flex;
  justify-content: center;
}

.about__img-pizza {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 16px 32px var(--shadow-color-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: var(--light-color);
}

.testimonials__container {
  text-align: center;
}

.testimonials__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial__card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px var(--shadow-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.testimonial__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow-color-dark);
}

.testimonial__text {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.testimonial__name {
  font-weight: var(--font-medium);
  color: var(--primary-color);
  font-size: var(--normal-font-size);
}


/* ===== TESTIMONIALS STARS ===== */
.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  color: var(--secondary-color); /* Cor das estrelas, usando a cor secundária do seu tema */
  margin-bottom: 1rem;
  justify-content: center; /* Centraliza as estrelas */
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}


/* ===== SERVICES ===== */
.services {
  background-color: var(--light-color);
}

.services__content {
  display: grid;
  gap: 2rem;
}

.service__card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-color);
  transition: var(--transition);
}

.service__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow-color-dark);
}

.service__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
  background-color: var(--white-color);
}

.contact__content {
  display: grid;
  gap: 2rem;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: var(--transition);
}

.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow-color-dark);
}

.contact__card-icon {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact__card-content {
  flex: 1;
}

.contact__card-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.25rem;
}

.contact__card-description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 0.5rem;
}

.contact__card-button {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.contact__card-button:hover {
  color: var(--primary-color-dark);
}

.contact__card-address {
  font-style: normal;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.contact__map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-color);
}

.contact__map-iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 3rem 0 0;
}

.footer__content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__section {
  text-align: center;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.footer__description {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--white-color);
  transition: var(--transition);
}

.footer__social-link:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--text-color-light);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--white-color);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.footer__contact-icon {
  font-size: 1rem;
  color: var(--primary-color);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__copy {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: var(--z-tooltip);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-float__icon {
  font-size: 1.5rem;
}

.whatsapp-float__text {
  position: absolute;
  right: 70px;
  background-color: var(--white-color);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 16px var(--shadow-color);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float__text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes pulse {
  0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (min-width: 576px) {
  .home__buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .services__content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }
  
  .nav__list {
    flex-direction: row;
    gap: 2rem;
  }
  
  .nav__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .nav__link {
    font-size: var(--normal-font-size);
  }
  
  .nav__close,
  .nav__toggle,
  .nav__overlay {
    display: none;
  }
  
  .home__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .home__data {
    text-align: left;
  }
  
  .about__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .about__data {
    text-align: left;
  }
  
  .services__content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .contact__map-iframe {
    height: 400px;
  }
  
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  
  .footer__social {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 992px) {
  .services__content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact__info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 0.3rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color-dark);
}

/* ===== SCROLL UP ===== */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--primary-color);
  opacity: 0.8;
  padding: 0.3rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: var(--transition);
}

.scrollup:hover {
  background-color: var(--primary-color-dark);
  opacity: 1;
}

.scrollup__icon {
  font-size: 1.5rem;
  color: var(--white-color);
}

.show-scroll {
  bottom: 5rem;
}

/* ===== ACTIVE LINK ===== */
.active-link {
  color: var(--primary-color) !important;
}

/* ===== SEO BANNER ===== */
.seo-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white-color);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 3px solid #5a67d8;
  margin: 0;
}

.seo-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.seo-banner h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
}

.seo-tools {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.seo-tool {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.seo-tool:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cloudsun-credit {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

.cloudsun-credit a {
  color: #ffd700;
  text-decoration: none;
  font-weight: var(--font-semi-bold);
  transition: var(--transition);
}

.cloudsun-credit a:hover {
  text-decoration: underline;
  color: #ffed4e;
}

.heart {
  color: #ff4757;
  font-size: 1rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

@media screen and (max-width: 768px) {
  .seo-banner {
    padding: 1rem 0;
  }
  
  .seo-tools {
    gap: 0.75rem;
  }

  .seo-tool {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .seo-banner h4 {
    font-size: 1rem;
  }
}

/* ===== LOADING ===== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading__spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--light-color);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*
/* ===== DELIVERY COVERAGE SECTION ===== */
.delivery-coverage {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.delivery-coverage::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
}

.delivery-coverage::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  opacity: 0.05;
  border-radius: 50%;
}

.delivery-coverage__container {
  position: relative;
  z-index: 1;
}

.delivery-coverage__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.delivery-coverage__card {
  background-color: var(--white-color);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.delivery-coverage__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.delivery-coverage__card:hover::before {
  transform: scaleX(1);
}

.delivery-coverage__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow-color-dark);
}

.delivery-coverage__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

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

.delivery-coverage__card:hover .delivery-coverage__icon {
  animation: none;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.delivery-coverage__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.delivery-coverage__description {
  color: var(--text-color-light);
  font-size: var(--normal-font-size);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.delivery-coverage__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.delivery-coverage__badge--special {
  background: linear-gradient(135deg, var(--secondary-color), #e67e22);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { 
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3); 
  }
  50% { 
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.6);
    transform: scale(1.05);
  }
}

.delivery-coverage__cta {
  text-align: center;
  margin-top: 2rem;
}

.delivery-coverage__note {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Responsividade para tablets */
@media screen and (min-width: 768px) {
  .delivery-coverage__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Responsividade para desktop */
@media screen and (min-width: 992px) {
  .delivery-coverage__content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .delivery-coverage__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
*/
