/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a365d;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header e Navegação */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(30, 64, 175, 0.15);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo h2 {
  color: #1e40af;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #1e40af;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  font-size: 1.2rem;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: transparent;
  color: white;
  padding: 0 300px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #1e40af;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background video no hero */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}

.hero-placeholder {
  width: min(400px, 40vw);
  height: min(400px, 40vw);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

/* Logos Carousel Section */
.logos-carousel-section {
  background: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
  min-height: 120px; /* Altura fixa para evitar bounce */
}

.logos-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 120px; /* Altura fixa do container */
  display: flex;
  align-items: center;
}

.logos-carousel-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  width: fit-content;
}

.logos-carousel-item {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  transition: all 0.5s ease;
}

.logos-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

/* Logo ativa (em destaque) */
.logos-carousel-item.active {
  width: 180px;
  height: 100px;
}

.logos-carousel-item.active img {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Logos inativas */
.logos-carousel-item:not(.active) img {
  opacity: 0.7;
  transform: scale(0.9);
  filter: grayscale(20%);
}

/* Seções gerais */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e40af;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #ef4444);
  border-radius: 2px;
}

/* Sobre Nós Section */
.sobre {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sobre-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sobre-text h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.sobre-text p {
  margin-bottom: 1.5rem;
  color: #334155;
  line-height: 1.8;
}

.sobre-text ul {
  list-style: none;
  padding-left: 0;
}

.sobre-text li {
  padding: 0.5rem 0;
  color: #334155;
  position: relative;
  padding-left: 1.5rem;
}

.sobre-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.sobre-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #1e40af;
  font-weight: 600;
}

/* Institucional Section */
.institucional {
  padding: 5rem 0;
  background: white;
}

.institucional-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.institucional-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.institucional-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;

  //mobile
  @media (max-width: 768px) {
    width: 40px;
    height: 40px;
  }
}

.card-icon i {
  font-size: 2rem;
  color: white;

  //mobile
  @media (max-width: 768px) {
    font-size: 1.5rem;
  }
}

.institucional-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.institucional-card p {
  color: #334155;
  line-height: 1.6;
}

/* Avaliações Section */
.avaliacoes {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 80px; /* padding lateral para acomodar as setas */
}

.reviews-container {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  padding: 2rem 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 1.5rem;
}

.review-card {
  flex: 0 0 calc((100% - 3rem) / 3); /* 3 cards por tela: (100% - 2 gaps de 1.5rem) / 3 */
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
  border-color: #3b82f6;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.9rem;
  color: #64748b;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-rating .star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.review-rating .star.empty {
  color: #e2e8f0;
}

.review-text {
  color: #334155;
  line-height: 1.8;
  font-size: 1rem;
  flex: 1;
}

.review-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.review-google-badge:hover {
  background: #e2e8f0;
  color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-google-badge i {
  color: #4285f4;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e2e8f0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #1e40af;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.carousel-btn-prev {
  left: -25px;
}

.carousel-btn-next {
  right: -25px;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.carousel-btn:disabled:hover {
  background: white;
  color: #1e40af;
  border-color: #e2e8f0;
  transform: translateY(-50%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #1e40af;
  width: 30px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: #3b82f6;
}

.google-reviews-link {
  text-align: center;
  margin-top: 3rem;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 30px;
  background: white;
  color: #1e40af;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #1e40af;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.btn-google-reviews:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

.btn-google-reviews i {
  font-size: 1.2rem;
}

/* Mensagem de erro do Google */
.google-error-message {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-message-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.error-message-content i {
  font-size: 1.5rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.error-text {
  flex: 1;
}

.error-text strong {
  display: block;
  color: #92400e;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.error-text p {
  color: #78350f;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsividade para Mensagem de Erro */
@media (max-width: 768px) {
  .google-error-message {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .error-message-content {
    gap: 0.75rem;
  }

  .error-message-content i {
    font-size: 1.3rem;
  }

  .error-text strong {
    font-size: 1rem;
  }

  .error-text p {
    font-size: 0.9rem;
  }
}

/* Responsividade para Avaliações */
@media (max-width: 1024px) {
  .reviews-carousel {
    padding: 2rem 60px; /* menos padding para tablet */
  }

  .review-card {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 por tela em tablet: (100% - 1 gap) / 2 */
  }
}

@media (max-width: 768px) {
  .reviews-carousel {
    padding: 2rem 50px; /* menos padding para mobile */
  }

  .reviews-track {
    gap: 1rem;
  }

  .review-card {
    flex: 0 0 100%; /* 1 por tela no mobile */
    padding: 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Contato Section */
.contato {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.contato .section-title {
  color: white;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contato-info h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #60a5fa;
}

.contato-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.contato-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contato-item i {
  font-size: 1.5rem;
  color: #60a5fa;
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.contato-whatsapp {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}

.contato-whatsapp h3 {
  margin-bottom: 1rem;
  color: #10b981;
}

.contato-whatsapp p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  width: 100%;
  text-align: center;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp i {
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #60a5fa;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #475569;
  color: #cbd5e1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: calc(30px + env(safe-area-inset-right));
  bottom: calc(30px + env(safe-area-inset-bottom));
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  z-index: 1100;
  transition: bottom 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float i {
  font-size: 25px;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45);
  background: #22c55e;
}

.whatsapp-float:active {
  transform: translateY(0);
}

.whatsapp-float:focus {
  outline: 3px solid rgba(34, 197, 94, 0.6);
  outline-offset: 2px;
}

/* Quando a seta de voltar ao topo aparece, subimos o WhatsApp um pouco */
.whatsapp-float.shift-up {
  bottom: calc(110px + env(safe-area-inset-bottom));
}

/* Label escondido por padrão */

/* Estado invertido para sobrepor o fundo azul do hero */
.whatsapp-float.whatsapp-invert {
  background: #ffffff;
  color: #25d366;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.35);
  border: 2px solid #25d366;
}

.whatsapp-float.whatsapp-invert:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.45);
}

/* Responsividade */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-logo {
    gap: 8px;
  }

  .nav-logo-img {
    height: 40px;
  }

  .nav-logo h2 {
    font-size: 1.2rem;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-placeholder {
    width: min(400px, 60vw);
    height: min(400px, 60vw);
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .sobre-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contato-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .institucional-content {
    grid-template-columns: 1fr;
  }

  .logos-carousel-section {
    padding: 2rem 0;
    min-height: 100px; /* Altura fixa mobile */
  }

  .logos-carousel-container {
    height: 100px; /* Altura fixa mobile */
  }

  .logos-carousel-item {
    width: 120px;
    height: 60px;
  }

  .logos-carousel-track {
    gap: 2rem;
  }

  .logos-carousel-item.active {
    width: 150px;
    height: 80px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .nav {
    padding: 1rem;
  }

  .nav-logo {
    gap: 6px;
  }

  .nav-logo-img {
    height: 35px;
  }

  .nav-logo h2 {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero-placeholder {
    width: min(300px, 70vw);
    height: min(300px, 70vw);
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .hero-logo {
    padding: 20px;
  }
}
