/* ===================================
   MEGA TELHA - ESTILOS GLOBAIS
   =================================== */

/* Variáveis CSS */
:root {
  --base-color: #08013c;
  --secondary: #f5cc01;
  --white: #ffffff;
  --primary: #08013c;
  --dark: #1f2933;
  --light: #f5f5f5;
  --gray-100: #f9fafb;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #0b1220;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transições */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================
   HEADER
   =================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--base-color);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--secondary);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.logo-img {
  width: 120px;
  transition: var(--transition-base);
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-img img {
  width: 100%;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--white);
}

.logo-text span:last-child {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-header-whatsapp {
  background: var(--white);
  color: var(--base-color);
  border: none;
  font-weight: 600;
}

.btn-header-whatsapp:hover {
  background: var(--gray-100);
  color: var(--base-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   BOTÕES
   =================================== */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: var(--transition-base);
  text-align: center;
}

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

.btn-primary:hover {
  background: #004a9c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--base-color);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: #e0ba00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: var(--base-color) url('../assets/empresa.jpeg') center/cover no-repeat;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 1, 60, 0.95), rgba(0, 91, 187, 0.85));
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Vídeo do YouTube */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================
   SEÇÕES
   =================================== */
section {
  padding: 4rem 0;
  width: 100%;
  overflow-x: hidden;
}

section:nth-of-type(even) {
  background: var(--gray-100);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--base-color);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   SEÇÃO DO SELO
   =================================== */
.selo-section {
  background: var(--white);
  color: var(--base-color);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.selo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 204, 1, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.selo-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.selo-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.selo-image {
  max-width: 400px;
  padding: 0;
  background: transparent;
  border-radius: 1rem;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.selo-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.selo-text h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.selo-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.selo-text strong {
  color: var(--secondary);
}

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

.selo-highlight-item {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--secondary);
}

.selo-highlight-item h4 {
  color: var(--base-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.selo-highlight-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ===================================
   PRODUTOS
   =================================== */
#produtos {
  background: var(--base-color);
  width: 100%;
}

#produtos .section-title {
  color: var(--secondary);
}

#produtos .section-subtitle {
  color: var(--white);
}

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

.produto-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(245, 204, 1, 0.3);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
}

.produto-card h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.produto-card p {
  color: var(--white);
  line-height: 1.7;
}

/* ===================================
   GALERIA
   =================================== */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.galeria-item {
  position: relative;
  height: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.galeria-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.galeria-item:hover img {
  transform: scale(1.1);
}

.galeria-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(8, 1, 60, 0.6), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.galeria-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  z-index: 1001;
}

.lightbox-close:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.lightbox-nav:hover {
  background: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===================================
   CONTATO
   =================================== */
.contato-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contato-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contato-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contato-card li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.contato-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.contato-card strong {
  font-size: 0.9rem;
  color: var(--base-color);
  display: block;
  margin-bottom: 0.25rem;
}

.contato-card a {
  color: var(--primary);
}

.contato-card a:hover {
  color: var(--secondary);
}

.contato-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contato-actions .btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 1.5rem;
}

.contato-actions .btn-primary {
  background: var(--base-color);
  color: var(--white);
  border: none;
}

.contato-actions .btn-primary:hover {
  background: #0a0250;
  transform: translateY(-2px);
}

.contato-actions .btn-outline {
  background: var(--secondary);
  color: var(--white);
  border: none;
}

.contato-actions .btn-outline:hover {
  background: #d4b000;
  color: var(--white);
  transform: translateY(-2px);
}

.mapa {
  background: var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  padding: 2rem 0;
  background: var(--base-color);
  color: var(--gray-400);
  font-size: 0.9rem;
  text-align: center;
  border-top: 3px solid var(--secondary);
}

footer a {
  color: var(--secondary);
  text-decoration: underline;
}

footer a:hover {
  color: var(--white);
}

/* ===================================
   RESPONSIVIDADE
   =================================== */

/* Tablet (1024px e abaixo) */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .selo-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .selo-image {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .selo-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobile (768px e abaixo) */
@media (max-width: 768px) {
  * {
    max-width: 100%;
  }
  
  html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .container {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  section {
    padding: 3rem 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  /* Header Mobile - Oculta botão WhatsApp */
  header {
    width: 100%;
  }
  
  .header-inner {
    padding: 1rem 0;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
  }
  
  .btn-header-whatsapp {
    display: none;
  }
  
  .logo-area {
    justify-content: center;
  }
  
  .logo-img {
    width: 90px;
  }
  
  .logo-text span:first-child {
    font-size: 0.85rem;
  }
  
  .logo-text span:last-child {
    font-size: 0.7rem;
  }
  
  /* Hero Mobile */
  .hero {
    padding: 2.5rem 0;
    width: 100%;
  }
  
  .hero-inner {
    gap: 2rem;
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  .hero-content {
    text-align: center;
    width: 100%;
  }
  
  .hero-content h1 {
    font-size: 1.65rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    word-wrap: break-word;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-note {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .hero-video-wrapper {
    width: 100%;
  }
  
  /* Selo Mobile */
  .selo-section {
    padding: 3rem 0;
    width: 100%;
  }
  
  .selo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .selo-image {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .selo-text {
    text-align: center;
  }
  
  .selo-text h2 {
    font-size: 1.65rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
  }
  
  .selo-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .selo-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .selo-highlight-item {
    padding: 1.25rem;
    text-align: left;
  }
  
  .selo-highlight-item h4 {
    font-size: 0.95rem;
  }
  
  .selo-highlight-item p {
    font-size: 0.85rem;
  }
  
  /* Produtos Mobile */
  #produtos {
    width: 100%;
  }
  
  .section-title {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .produto-card {
    padding: 1.5rem;
    width: 100%;
  }
  
  .produto-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }
  
  .produto-card p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  /* Galeria Mobile */
  #galeria {
    width: 100%;
  }
  
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .galeria-item {
    height: 150px;
  }
  
  /* Contato Mobile */
  #contato {
    width: 100%;
  }
  
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contato-card {
    padding: 1.5rem;
    width: 100%;
  }
  
  .contato-card li {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
  }
  
  .contato-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .contato-actions .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .mapa {
    min-height: 300px;
    width: 100%;
  }
  
  /* Footer Mobile */
  footer {
    width: 100%;
    padding: 2rem 0;
  }
  
  footer p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  /* Lightbox Mobile */
  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  /* Hero Mobile */
  .hero {
    padding: 2rem 0;
    width: 100%;
  }
  
  .hero-inner {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  
  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    word-wrap: break-word;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
  }
  
  .hero-actions {
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-note {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
  }
  
  .hero-video-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  /* Selo Mobile */
  .selo-section {
    padding: 2.5rem 0;
  }
  
  .selo-image {
    max-width: 220px;
  }
  
  .selo-text h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
  }
  
  .selo-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .selo-highlights {
    margin-top: 1.5rem;
  }
  
  .selo-highlight-item {
    padding: 1.25rem;
  }
  
  .selo-highlight-item h4 {
    font-size: 0.95rem;
  }
  
  .selo-highlight-item p {
    font-size: 0.85rem;
  }
  
  /* Seções gerais Mobile */
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  /* Produtos Mobile */
  .produto-card {
    padding: 1.5rem;
  }
  
  .produto-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .produto-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* Galeria Mobile */
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .galeria-item {
    height: 140px;
  }
  
  /* Contato Mobile */
  .contato-card {
    padding: 1.5rem;
  }
  
  .contato-card li {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
  }
  
  .contato-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .contato-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .mapa {
    min-height: 280px;
  }
  
  /* Footer Mobile */
  footer {
    padding: 1.5rem 0;
  }
  
  footer p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  
  /* Lightbox Mobile */
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  
  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

/* Mobile Pequeno (480px e abaixo) */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  /* Hero Pequeno */
  .hero {
    padding: 2rem 0;
  }
  
  .hero-content h1 {
    font-size: 1.45rem;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .hero-note {
    font-size: 0.8rem;
  }
  
  /* Selo Pequeno */
  .selo-text h2 {
    font-size: 1.45rem;
  }
  
  .selo-text p {
    font-size: 0.9rem;
  }
  
  .selo-image {
    max-width: 180px;
  }
  
  /* Seções Pequeno */
  .section-title {
    font-size: 1.45rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  /* Galeria Pequeno */
  .galeria-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .galeria-item {
    height: 200px;
  }
  
  .btn-header-whatsapp {
    display: none;
  }
  
  .logo-area {
    gap: 0.5rem;
    justify-content: center;
  }
  
  .logo-img {
    width: 70px;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo-text span:first-child {
    font-size: 0.75rem;
  }
  
  .logo-text span:last-child {
    font-size: 0.65rem;
  }
  
  /* Hero Pequeno */
  .hero {
    padding: 1.5rem 0;
  }
  
  .hero-inner {
    gap: 1.5rem;
  }
  
  .hero-content {
    padding: 0;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .hero-content p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .hero-note {
    font-size: 0.8rem;
    word-wrap: break-word;
  }
  
  .hero-video-wrapper {
    width: 100%;
    max-width: 100%;
  }
  
  /* Selo Pequeno */
  .selo-section {
    padding: 2rem 0;
  }
  
  .selo-content {
    gap: 1.5rem;
  }
  
  .selo-image {
    max-width: 180px;
  }
  
  .selo-text {
    width: 100%;
  }
  
  .selo-text h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
  }
  
  .selo-text p {
    font-size: 0.875rem;
    line-height: 1.65;
    word-wrap: break-word;
  }
  
  .selo-highlights {
    width: 100%;
  }
  
  .selo-highlight-item {
    padding: 1rem;
    word-wrap: break-word;
  }
  
  .selo-highlight-item h4 {
    font-size: 0.875rem;
  }
  
  .selo-highlight-item p {
    font-size: 0.8rem;
  }
  
  /* Seções gerais Pequeno */
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-subtitle {
    font-size: 0.875rem;
    padding: 0;
  }
  
  /* Produtos Pequeno */
  .produtos-grid {
    width: 100%;
  }
  
  .produto-card {
    padding: 1.25rem;
    word-wrap: break-word;
  }
  
  .produto-card h3 {
    font-size: 1rem;
    word-wrap: break-word;
  }
  
  .produto-card p {
    font-size: 0.875rem;
    word-wrap: break-word;
  }
  
  /* Galeria Pequeno */
  .galeria-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .galeria-item {
    height: 200px;
  }
  
  /* Contato Pequeno */
  .contato-grid {
    width: 100%;
  }
  
  .contato-card {
    padding: 1.25rem;
    word-wrap: break-word;
  }
  
  .contato-card li {
    font-size: 0.875rem;
    padding-left: 1.5rem;
    word-wrap: break-word;
  }
  
  .contato-actions {
    width: 100%;
  }
  
  .contato-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .mapa {
    min-height: 250px;
    width: 100%;
  }
  
  /* Footer Pequeno */
  footer p {
    font-size: 0.8rem;
  }
  
  footer p:last-child {
    font-size: 0.7rem;
  }
}

/* ===================================
   ANIMAÇÕES E EFEITOS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Loading spinner para imagens lazy */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
