/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 5rem;

  /*========== Colors ==========*/
  --first-color: #FF5722;
  --first-color-alt: #FF6B35;
  --first-color-light: #FF8A65;
  --first-color-dark: #E64A19;
  
  --title-color: #1A1A1A;
  --text-color: #666666;
  --text-color-light: #999999;
  --body-color: #FFFFFF;
  --container-color: #F5F5F5;
  --border-color: #E0E0E0;
  
  --white-color: #FFFFFF;
  --black-color: #000000;
  --shadow-color: rgba(0, 0, 0, 0.1);

  /*========== Font and typography ==========*/
  --body-font: 'Inter', sans-serif;
  
  --biggest-font-size: 3rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /*========== Transitions ==========*/
  --transition: all 0.3s ease;
}

/*========== Responsive typography ==========*/
@media screen and (max-width: 1024px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --biggest-font-size: 2rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
    --header-height: 4rem;
  }
}

/*=============== 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);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

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

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

input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section__title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--title-color);
}

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

.text-primary {
  color: var(--first-color);
}

/*=============== BUTTONS ===============*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--first-color);
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
  background-color: var(--first-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--first-color);
  border: 2px solid var(--first-color);
}

.btn-outline:hover {
  background-color: var(--first-color);
  color: var(--white-color);
}

.btn-dark {
  background-color: #1a1a1a;
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.btn-dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  display: none; /* Escondido por padrão (desktop) */
}

.btn-outline-small {
  padding: 0.625rem 1.25rem;
  font-size: var(--small-font-size);
  background-color: transparent;
  color: var(--first-color);
  border: 2px solid var(--first-color);
}

.btn-outline-small:hover {
  background-color: var(--first-color);
  color: var(--white-color);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

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

.nav__logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HERO SECTION ===============*/
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.75) 0%, rgba(255, 140, 66, 0.70) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero__container {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero__content {
  text-align: center;
  position: relative;
}

.hero__title {
  font-size: var(--biggest-font-size);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--white-color);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
  font-weight: 800;
}

.hero__title .text-primary {
  color: #FFD700;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

.hero__description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white-color);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

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

/*=============== ORDER FORM SECTION ===============*/
.order-form {
  background-color: var(--white-color);
  padding: 5rem 0;
}

.form-pedido {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--container-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-pedido__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.form-pedido__group--full {
  grid-column: 1 / -1;
}

.form-pedido__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.form-pedido__label i {
  color: var(--first-color);
  font-size: 1rem;
}

.form-pedido__input,
.form-pedido__select,
.form-pedido__textarea {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: var(--normal-font-size);
  transition: var(--transition);
  background-color: var(--white-color);
  color: var(--title-color);
  font-family: inherit;
}

.form-pedido__input:focus,
.form-pedido__select:focus,
.form-pedido__textarea:focus {
  border-color: var(--first-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.form-pedido__select {
  cursor: pointer;
}

.form-pedido__textarea {
  resize: vertical;
  min-height: 100px;
}

.form-pedido__actions {
  text-align: center;
  margin-top: 2rem;
}

.form-pedido__actions .btn {
  min-width: 300px;
}

/*=============== FORM SECTIONS ===============*/
.form-step {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.form-step:hover {
  border-color: var(--first-color-light);
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.1);
}

.form-step__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--container-color);
}

.form-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-dark) 100%);
  color: var(--white-color);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.form-step__title {
  font-size: 1.375rem;
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.form-step__title i {
  color: var(--first-color);
  font-size: 1.5rem;
}

.form-step__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-step__content.products-grid {
  grid-template-columns: 1fr;
}

/* Keep old form-section for backward compatibility but hide */
.form-section {
  display: none;
}

.form-section__title,
.form-section__grid {
  display: none;
}

/*=============== PRODUCTS SELECTION ===============*/
.products-selection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  grid-column: 1 / -1;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--container-color);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.product-item:has(input:checked) {
  border-color: var(--first-color);
  background: rgba(255, 87, 34, 0.05);
}

.product-item__checkbox {
  flex: 1;
}

.product-item__checkbox input[type="checkbox"] {
  display: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-label::before {
  content: '';
  width: 26px;
  height: 26px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  flex-shrink: 0;
  transition: var(--transition);
  background: white;
}

.product-item__checkbox input[type="checkbox"]:checked + .checkbox-label::before {
  background: var(--first-color);
  border-color: var(--first-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.product-item__img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.product-item__info strong {
  font-size: 1.0625rem;
  color: var(--title-color);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-item__info span {
  font-size: 0.9375rem;
  color: var(--text-color);
  font-weight: 500;
}

.product-item__qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.qty-label {
  font-size: 0.8125rem;
  color: var(--text-color);
  font-weight: 600;
  text-transform: uppercase;
}

.qty-input {
  width: 65px;
  padding: 0.625rem;
  text-align: center;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--title-color);
  transition: var(--transition);
}

.qty-input:focus {
  border-color: var(--first-color);
  outline: none;
}

/*=============== WHY CHOOSE SECTION ===============*/
.why-choose {
  background-color: var(--container-color);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white-color);
}

.feature-card__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.75rem;
  color: var(--title-color);
}

.feature-card__text {
  color: var(--text-color);
  font-size: var(--small-font-size);
}

/*=============== 50 ANOS ANNIVERSARY SECTION ===============*/
.anniversary {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFFFFF 50%, #FFF3E0 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.anniversary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.anniversary::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.anniversary__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.anniversary__logo {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.anniversary__logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(255, 87, 34, 0.2));
}

.anniversary__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: var(--title-color);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.anniversary__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.anniversary__text strong {
  color: var(--first-color);
  font-weight: 700;
}

.anniversary__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.highlight-item {
  background-color: var(--white-color);
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(255, 87, 34, 0.2);
}

.highlight-item__number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.highlight-item__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
}

.anniversary__slogan {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title-color);
  margin: 2rem 0;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.anniversary__slogan strong {
  color: var(--first-color);
}

.anniversary__cta {
  margin-top: 2.5rem;
  animation: fadeInUp 1s ease-out 1s both;
}

/*=============== PRODUCTS SECTION ===============*/
.products {
  background-color: var(--container-color);
}

.products__header {
  text-align: center;
  margin-bottom: 1rem;
}

.products__anniversary-badge {
  max-width: 200px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(255, 87, 34, 0.3));
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  border-color: var(--first-color);
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.2);
}

.product-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #FF8C42 0%, #FF5722 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--title-color);
}

.product-card__weight {
  font-size: 1rem;
  font-weight: 600;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.product-card__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin: 0 1.5rem 1.5rem;
  line-height: 1.6;
  min-height: 50px;
}

.btn-order {
  margin: 0 1.5rem 1.5rem;
  width: calc(100% - 3rem);
  font-weight: 600;
  padding: 0.875rem 1.5rem;
}

.btn-order:hover {
  transform: scale(1.02);
}

/*=============== BRANDS SECTION ===============*/
.brands {
  background-color: var(--container-color);
  padding: 4rem 0;
}

.brands__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.brands__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  max-width: 300px;
}

.brands__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  font-weight: var(--font-bold);
  white-space: nowrap;
  margin: 0;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-card {
  background-color: var(--white-color);
  padding: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  min-height: 180px;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.brand-card__logo img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%) contrast(1.05);
  transition: var(--transition);
}

.brand-card:hover .brand-card__logo img {
  filter: grayscale(0%) contrast(1.15);
  transform: scale(1.08);
}

.brands__footer-text {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

/*=============== HOW TO ORDER SECTION ===============*/
.how-to-order {
  background-color: var(--container-color);
}

.how-to-order__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background-color: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-card__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--first-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.step-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 1.5rem;
  font-size: 2rem;
  color: var(--white-color);
}

.step-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--title-color);
}

.step-card__text {
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.how-to-order__cta {
  text-align: center;
}

/*=============== FAQ SECTION ===============*/
.faq {
  background-color: var(--white-color);
}

.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--first-color-light);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--first-color);
}

.accordion-header i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--first-color);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-color);
  line-height: 1.8;
}

/*=============== LOCATION SECTION ===============*/
.location {
  background-color: var(--container-color);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card__icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white-color);
}

.contact-card__content {
  flex: 1;
}

.contact-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--title-color);
}

.contact-card__text {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card__text:last-child {
  margin-bottom: 0;
}

.contact-card__text a {
  color: var(--first-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.contact-card__text a:hover {
  color: var(--first-color-dark);
}

.contact-card .btn {
  margin-top: 1rem;
}

.location__map {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.footer__container {
  max-width: 1200px;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.footer__title {
  font-size: 1.125rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

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

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

.footer__links a:hover {
  color: var(--first-color);
  padding-left: 0.5rem;
}

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

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color-light);
}

.footer__contact i {
  color: var(--first-color);
  font-size: 1.125rem;
}

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

.footer__contact a:hover {
  color: var(--first-color);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/*=============== WHATSAPP FLOAT ===============*/
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white-color);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: var(--z-tooltip);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--white-color);
  color: var(--title-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 12px var(--shadow-color);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  }
}

/*=============== SCROLL TO TOP ===============*/
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--first-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white-color);
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
  z-index: var(--z-tooltip);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: var(--first-color-dark);
  transform: translateY(-4px);
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 1024px) {
  .anniversary__title {
    font-size: 2rem;
  }

  .anniversary__logo img {
    max-width: 380px;
  }

  .anniversary__highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .highlight-item__number {
    font-size: 2.5rem;
  }

  .products-selection {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white-color);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s;
    box-shadow: -2px 0 16px var(--shadow-color);
  }

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

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

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .nav__toggle {
    display: block;
  }

  .nav__actions .btn {
    display: none;
  }

  .btn-center {
    display: inline-flex; /* Mostra no mobile */
    position: relative;
    left: auto;
    transform: none;
    margin-right: 1rem; /* Espaço entre o botão e o menu hamburguer */
    padding: 0.625rem 1rem; /* Botão mais compacto no mobile */
    font-size: 0.875rem;
  }
  
  .btn-center i {
    font-size: 1rem;
  }

  .logo-img {
    height: 40px;
  }

  .hero {
    min-height: 500px;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: var(--h1-font-size);
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .anniversary {
    padding: 3rem 0;
  }

  .anniversary__logo img {
    max-width: 280px;
  }

  .anniversary__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .anniversary__text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .anniversary__highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }

  .highlight-item {
    padding: 1.5rem 0.75rem;
  }

  .highlight-item__number {
    font-size: 2rem;
  }

  .highlight-item__text {
    font-size: 0.75rem;
  }

  .anniversary__slogan {
    font-size: 1.125rem;
    margin: 1.5rem 0;
  }

  .products__anniversary-badge {
    max-width: 140px;
  }

  .form-pedido {
    padding: 2rem 10px;
  }

  .form-pedido__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-pedido__actions .btn {
    width: 100%;
    min-width: auto;
  }

  /* Form steps responsive tablet */
  .form-step {
    padding: 1.5rem 10px;
    margin-bottom: 1rem;
  }

  .form-step__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .form-step__number {
    min-width: 70px;
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .form-step__title {
    font-size: 1.125rem;
  }

  .form-step__title i {
    font-size: 1.25rem;
  }

  .form-step__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .products-selection {
    grid-template-columns: 1fr;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .brands__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
  }

  .brands__header {
    flex-direction: column;
    gap: 1rem;
  }

  .brands__line {
    width: 100%;
    max-width: 200px;
  }

  .how-to-order__steps {
    grid-template-columns: 1fr;
  }

  .location__grid {
    grid-template-columns: 1fr;
  }

  .location__map {
    height: 350px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.75rem;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }

  .scroll-top {
    bottom: 85px;
    right: 20px;
  }
}

@media screen and (max-width: 480px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card__image {
    height: 250px;
    padding: 1.5rem;
  }
  
  .product-card__title {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.5rem;
  }
  
  .product-card__weight {
    font-size: 1rem;
  }
  
  .product-card__description {
    font-size: 0.875rem;
    margin: 0 1.5rem 1.25rem;
    min-height: 45px;
  }
  
  .btn-order {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero__form {
    padding: 1.5rem 10px;
  }

  .feature-card,
  .step-card {
    padding: 1.5rem 10px;
  }

  /* Form steps responsive mobile */
  .form-step {
    padding: 1.25rem 10px;
    margin-bottom: 1rem;
  }

  .form-step__header {
    padding-bottom: 0.75rem;
  }

  .form-step__number {
    min-width: 65px;
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
  }

  .form-step__title {
    font-size: 1rem;
  }

  .form-step__title i {
    font-size: 1.125rem;
  }

  .form-step__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .products-selection {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-item {
    padding: 1.25rem;
  }

  .product-item__img {
    width: 60px;
    height: 60px;
  }

  .product-item__info strong {
    font-size: 1rem;
  }

  .product-item__info span {
    font-size: 0.875rem;
  }

  .qty-input {
    width: 60px;
    padding: 0.5rem;
    font-size: 1rem;
  }

  .form-pedido__input,
  .form-pedido__select,
  .form-pedido__textarea {
    padding: 0.875rem;
    font-size: 0.9375rem;
  }

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

/*=============== ANIMATIONS ===============*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    border-color: var(--first-color);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    border-color: var(--first-color-light);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.highlight-field {
  animation: highlightPulse 1s ease-in-out 2;
  border-color: var(--first-color) !important;
}

/*=============== SCROLL ANIMATIONS ===============*/
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
