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

:root {
  --rose-primary: #E5B8C5;
  --rose-dark: #C17B8E;
  --rose-light: #F8EDF0;
  --nude: #E8D5C4;
  --gold: #D4AF37;
  --dark: #1A1A1A;
  --gray: #666;
  --light: #FAFAFA;
  --white: #FFFFFF;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  /* mantém tudo que já tinha */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);

  height: 100px;          /* altura um pouco menor */
}

.navbar {
  padding: 0.8rem 0;     /* reduz o espaçamento interno */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.logo h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: -0.5px;
}

.logo span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--rose-dark);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--rose-dark);
}

.nav-menu a:hover::before {
  width: 100%;
}

.btn-contact {
  background: var(--rose-dark);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

.btn-contact::before {
  display: none;
}

.btn-contact:hover {
  background: var(--rose-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--rose-dark);
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 184, 197, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
 
  max-width: 500px;
  animation: fadeInUp 1s ease-out;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);

}

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--rose-dark);
  padding: 0.4rem 0;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--rose-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--rose-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--rose-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose-dark), transparent);
  margin: 10px auto 0;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features */
.features {
  padding: 6rem 0;
  background: var(--light);
}

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

.feature {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.feature p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Coleção */
.colecao {
  padding: 6rem 0;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.produto-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.produto-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.produto-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rose-dark);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 10;
  letter-spacing: 0.5px;
}

.produto-badge.new {
  background: var(--rose-dark);
}

.produto-image {
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #ffffff;  /* fundo branco para preencher os espaços */
}

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

.produto-card:hover .produto-image img {
  transform: scale(1.08);
}

.produto-info {
  padding: 1.8rem;
}

.produto-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.produto-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.produto-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preco {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rose-dark);
  font-family: var(--font-heading);
}

.btn-add {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--rose-dark);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-add:hover {
  background: var(--rose-primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

/* Personalizar */


/* Sobre */
.sobre {
  padding: 6rem 0;
}

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

.sobre-image {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  height: 600px;
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 184, 197, 0.3) 0%, transparent 100%);
}

.sobre-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.sobre-content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.stat {
  text-align: center;
}

.stat h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* Contato */
.contato {
  padding: 6rem 0;
  background: var(--light);
}

.contato-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contato-info h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contato-info > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-item svg {
  flex-shrink: 0;
  color: var(--rose-dark);
}

.info-item h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.info-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

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

.visual-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.visual-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.visual-card p {
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--rose-primary);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

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

.link-group h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--rose-light);
}

.link-group a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.link-group a:hover {
  color: var(--rose-primary);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    align-items: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .custom-grid,
  .sobre-grid,
  .contato-content {
    grid-template-columns: 1fr;
  }
  
  .custom-preview {
    position: relative;
    top: 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
 .produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 colunas fixas */
  gap: 2.5rem;
}
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .sobre-image {
    height: 400px;
  }
  
  .hero-bg {
    width: 100%;
    clip-path: none;
  }
  
  .custom-grid {
    gap: 2rem;
  }
  
  .chinelo-preview {
    padding: 2rem;
    min-height: 350px;
  }
  
  .chinelo-sola {
    width: 160px;
    height: 230px;
  }
  
  .chinelo-tira {
    width: 65px;
    height: 18px;
  }
  
  .option-section {
    padding: 1.5rem;
  }
  
  .option-section h3 {
    font-size: 1.3rem;
  }
  
  .color-swatch {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .color-palette {
    gap: 0.8rem;
  }
  
  .color-swatch {
    width: 55px;
    height: 55px;
  }
  
  .chinelo-preview {
    padding: 1.5rem;
    min-height: 300px;
  }
  
  .chinelo-sola {
    width: 140px;
    height: 200px;
  }
  
  .chinelo-tira {
    width: 55px;
    height: 16px;
  }
}
@media (max-width: 992px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);  /* 2 colunas em tablets */
  }
}

@media (max-width: 768px) {
  .produtos-grid {
    grid-template-columns: 1fr;  /* 1 coluna em celulares */
  }
}
/* ========================================
   MELHORIAS RESPONSIVAS PARA MOBILE
   Cole este código no FINAL do seu style.css
   ======================================== */

/* Ajustes gerais para melhor experiência mobile */
@media (max-width: 768px) {
  
  /* Container com padding otimizado */
  .container {
    padding: 0 16px;
  }

  /* Header mobile mais compacto */
  .header {
    height: 70px;
    padding: 0.5rem 0;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo span {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  /* Hero otimizado para mobile */
  .hero {
    min-height: calc(100vh - 70px);
    padding-top: 70px;
  }

  .hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    padding: 2rem 0;
    text-align: center;
    left: auto;
    top: auto;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-buttons {
    justify-content: center;
    gap: 0.8rem;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-bg {
    width: 100%;
    height: 100%;
    clip-path: none;
    opacity: 0.15;
  }

  .hero-scroll {
    display: none;
  }

  /* Seções com espaçamento reduzido */
  .features,
  .colecao,
  .sobre,
  .contato {
    padding: 4rem 0;
  }

  /* Section Header mobile */
  .section-header {
    margin-bottom: 3rem;
  }

  .section-label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .section-header h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  /* Features Grid mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.2rem;
  }

  .feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  /* Produtos Grid - 1 coluna em mobile */
  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .produto-card {
    border-radius: 16px;
  }

  .produto-badge {
    top: 15px;
    right: 15px;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
  }

  .produto-image {
    height: 280px;
  }

  .produto-info {
    padding: 1.5rem;
  }

  .produto-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .produto-info p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .preco {
    font-size: 1.4rem;
  }

  .btn-add {
    width: 42px;
    height: 42px;
  }

  /* Sobre mobile */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre-image {
    height: 350px;
    border-radius: 20px;
  }

  .sobre-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .sobre-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

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

  .stat h3 {
    font-size: 2rem;
  }

  .stat p {
    font-size: 0.8rem;
  }

  /* Contato mobile */
  .contato-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contato-info h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .contato-info > p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .info-items {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .info-item {
    gap: 1rem;
  }

  .info-item h4 {
    font-size: 1rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .visual-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .visual-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .visual-card p {
    font-size: 0.9rem;
  }

  /* Footer mobile */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

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

  .link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .link-group a {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Ajustes extras para telas muito pequenas */
@media (max-width: 480px) {
  
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .produto-image {
    height: 250px;
  }

  .produto-info h3 {
    font-size: 1.2rem;
  }

  .preco {
    font-size: 1.3rem;
  }

  .sobre-image {
    height: 300px;
  }

  .sobre-stats {
    gap: 1rem;
  }

  .stat h3 {
    font-size: 1.8rem;
  }
}

/* Melhorias de performance e animações suaves */
@media (max-width: 768px) {
  
  /* Reduzir animações complexas em mobile */
  .produto-card:hover,
  .feature:hover {
    transform: translateY(-5px);
  }

  .produto-image img {
    transform: none !important;
  }

  /* Parallax desabilitado em mobile */
  .hero-bg {
    transform: none !important;
  }

  /* Menu mobile aprimorado */
  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    width: 100%;
  }

  .btn-contact {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  /* Otimização de touch targets */
  a, button, .btn-add {
    min-height: 44px;
    min-width: 44px;
  }

  /* Espaçamento entre elementos clicáveis */
  .hero-buttons .btn + .btn {
    margin-top: 0;
  }
}

/* Landscape mode mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}

/* Melhorias de acessibilidade mobile */
@media (max-width: 768px) {
  /* Aumentar contraste e legibilidade */
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  /* Evitar zoom indesejado em inputs */
  input, select, textarea {
    font-size: 16px;
  }

  /* Smooth scroll otimizado */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Melhor feedback visual em toques */
  a, button {
    -webkit-tap-highlight-color: rgba(229, 184, 197, 0.2);
  }
}