/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

@font-face {
  font-family: 'Baguet Script';
  src: url('../fonts/baguet-script/baguet-script-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors - Paleta elegante e moderna */
  --color-primary: #8B4513;
  --color-primary-dark: #6B3410;
  --color-primary-light: #A0522D;
  --color-secondary: #D4AF37;
  --color-accent: #C19A6B;
  --color-dark: #2C1810;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8F6F3;
  --color-border: #E5E0DB;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  /* Move the close (X) to the right when menu is open */
  .mobile-menu-toggle {
    left: auto;
    right: 1rem;
  }
  .mobile-menu-toggle.active {
    left: auto;
    right: 1rem;
  }
}

.nav-left,
.nav-right {
  display: flex;
  gap: 1.5rem; /* Changed from 2rem to 1.5rem to make mobile menu items tighter */
  gap: 2rem;
  align-items: center;
}

.nav-left a,
.nav-right a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
}

.nav-left a::after,
.nav-right a:not(.btn-contato)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:not(.btn-contato):hover::after {
  width: 100%;
}

.logo-center {
  flex: 0 0 auto;
}

.logo {
  height: 60px;
  width: auto;
}

.btn-contato {
  background: var(--color-secondary);
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-contato:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  opacity: 0.9;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6B3410 0%, #8B4513 50%, #A0522D 100%);
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
}

/* remove duplicate background handler */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-badge {
  position: relative;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Baguet Script', 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-circle-text-bottom {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: block;
  margin-top: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 2rem 0 3rem;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-dark);
  border-color: var(--color-secondary);
}

.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-email {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-email:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: var(--spacing-xl) 0;
}

.section-subtitle {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-secondary);
  font-style: italic;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-secondary);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */

.introduction {
  background: var(--color-bg-light);
}

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

.service-card {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-card:hover .service-bg {
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

.service-card p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
}

.service-link {
  display: inline-block;
  color: white;
  background: var(--color-secondary);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-link:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */

.featured-products {
  background: white;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.product-featured {
  background: var(--color-bg-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.product-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--color-border);
}

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

.product-featured:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-secondary);
  color: var(--color-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.product-rating {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.product-info p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ========================================
   QUOTE SECTION
   ======================================== */

.quote-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #6B3410 0%, #8B4513 100%);
  background-image: url('../images/quote-bg.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.7);
}

.quote {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.quote p {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}

.quote p::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-secondary);
  margin-right: 0.5rem;
}

.quote p::after {
  content: '"';
  font-size: 4rem;
  color: var(--color-secondary);
  margin-left: 0.5rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
  background: var(--color-bg-light);
  padding: 4rem 0;
}

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

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-content {
  text-align: left;
}

.about-content .section-subtitle,
.about-content .section-title {
  text-align: left;
}

.about-content .section-title::after {
  left: 0;
  transform: none;
}

.about-tagline {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.about-content p:last-child {
  margin-bottom: 0;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */

.differentials {
  background: white;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.differential-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: var(--transition);
}

.differential-card:hover {
  background: var(--color-bg-light);
  transform: translateY(-5px);
}

.differential-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.differential-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.differential-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
  background: var(--color-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--color-dark);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
  background-image: url('../images/catalog-header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.3);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-col p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.8);
}

.social-link-item:hover {
  transform: translateY(-3px);
  color: var(--color-secondary);
}

.social-link-item:hover .social-text {
  color: var(--color-secondary);
}

.social-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: cover;
  display: inline-block;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Restriction icon images */
.restriction-icon-img {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

.filter-icon-img {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  object-fit: contain;
}

.differential-icon-img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer-col.footer-brand h4 {
  font-family: 'Baguet Script', 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: -0.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 24, 16, 0.95);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 -12px 25px rgba(0, 0, 0, 0.25);
  z-index: 1100;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner p a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-cookie {
  background: var(--color-secondary);
  color: var(--color-dark);
  border: none;
  padding: 0.65rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
}

.btn-cookie:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
  .cookie-banner {
    align-items: flex-start;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cookie,
  .btn-cookie.secondary {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .nav-left,
  .nav-right {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .logo {
    height: 50px;
  }
  
  .hero {
    min-height: 600px;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image img {
    height: 400px;
  }
  
  .about-content .section-subtitle,
  .about-content .section-title {
    text-align: center;
  }
  
  .about-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-buttons {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 0.5rem 0;
    position: relative;
  }
  
  .nav-container {
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
  }
  
  .logo-center {
    order: 1;
    margin: 0 auto;
  }
  
  .mobile-menu-toggle {
    display: flex;
    order: 2;
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    z-index: 1002;
  }
  
  .nav-menu {
    order: 3;
    width: 100%;
    flex-direction: column;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.3s ease;
    z-index: 1000;
    gap: 0;
    justify-content: flex-start;
    align-items: stretch;
  }

  /* Remove any internal spacing from groups inside the menu */
  .nav-menu > * {
    margin: 0;
    padding: 0;
  }
  
  .nav-menu.active {
    height: 100vh;
    padding-top: 56px;
    padding-bottom: 8px;
  }
  
  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 0;
    width: 100%;
    text-align: left;
    align-items: stretch;
    margin: 0;
  }

  /* Remover separação visual entre grupos no menu mobile */
  .nav-menu > .nav-left,
  .nav-menu > .nav-right {
    display: contents;
  }
  
  .nav-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 0.25rem 0.75rem;
    line-height: 1.05;
    min-height: 30px;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin: 0;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  /* Uniformizar botão dentro do menu mobile */
  .nav-menu .btn-contato {
    display: flex;
    margin: 0;
    width: 100%;
    border-radius: 0;
    padding: 0.3rem 0.75rem;
    text-align: left;
    border-bottom: none;
    min-height: 30px;
    font-size: 0.8rem;
  }
  
  .nav-left a::after,
  .nav-right a:not(.btn-contato)::after {
    display: none;
  }
  
  .logo {
    height: 40px;
  }
  
  .btn-contato {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    margin: 1rem;
    width: calc(100% - 2rem);
  }
  
  /* Hero */
  .hero {
    min-height: 500px;
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  /* Sections */
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  /* Buttons */
  .hero-buttons,
  .about-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 2rem;
  }
  
  /* Grids */
  .products-showcase,
  .services-grid,
  .differentials-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    height: 350px;
  }
  
  /* Product Cards */
  .product-featured {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .product-image {
    height: 250px;
  }
  
  /* About */
  .about-image img {
    height: 340px;
    object-position: center 75%;
  }
  
  .about-content {
    text-align: center;
  }
  
  /* Quote */
  .quote p {
    font-size: 1.5rem;
  }
  
  /* CTA */
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Header */
  .logo {
    height: 35px;
  }
  
  /* Hero */
  .hero {
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-circle-text,
  .hero-circle-text-bottom {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
  
  /* Sections */
  section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Service Cards */
  .service-card {
    height: 300px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
  }
  
  /* Product Cards */
  .product-info h3 {
    font-size: 1.5rem;
  }
  
  .product-price {
    font-size: 1.5rem;
  }
  
  /* Differential Cards */
  .differential-icon {
    font-size: 3rem;
  }
  
  .differential-card h3 {
    font-size: 1.2rem;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }
  
  /* Quote */
  .quote p {
    font-size: 1.2rem;
  }
  
  /* CTA */
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-col h4 {
    font-size: 1.1rem;
  }
}
