:root {
  --loft-orange: #FF6B00;
  --loft-green: #00C851;
  --loft-white: #FFFFFF;
  --loft-gray: #F8F9FA;
  --loft-dark: #212121;
  --loft-shadow: 0 4px 16px rgba(33,33,33,0.07);
  --loft-radius: 16px;
  --loft-font: 'Inter', 'Poppins', 'Roboto', Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--loft-font);
  background: var(--loft-gray);
  color: var(--loft-dark);
  font-size: 1rem;
  line-height: 1.6;
}

a { color: var(--loft-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--loft-white);
  box-shadow: var(--loft-shadow);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  height: 64px;
  transition: padding 0.2s, height 0.2s;
}

.header .logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--loft-orange);
  letter-spacing: 2px;
}

.header .logo img {
  height: 40px;
  margin-right: 12px;
}

.header .whatsapp-btn {
  background: var(--loft-green);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: var(--loft-shadow);
}

.header .whatsapp-btn:hover {
  background: #009e3a;
}

.header .whatsapp-btn img {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #fff;
  padding: 2px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.header .whatsapp-btn:hover img {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: scale(1.08);
}

main { padding-top: 120px; }

/* Hero */
.hero {
  background: url('../assets/images/desktop/1588101_1_174134817544105388.jpg') center/cover no-repeat;
  min-height: 320px;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,33,33,0.32);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--loft-orange);
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.hero .cta-btn {
  background: var(--loft-green);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--loft-shadow);
  transition: background 0.2s, transform 0.2s;
  margin-top: 1rem;
}

.hero .cta-btn:hover {
  background: #009e3a;
  transform: scale(1.04);
}

.hero .cta-btn img {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #fff;
  padding: 2px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.hero .cta-btn:hover img {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: scale(1.08);
}

/* Informações Rápidas */
.info-quick {
  background: var(--loft-white);
  padding: 3rem 1rem;
  text-align: center;
}

.info-quick-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.info-quick-details {
  flex: 1;
  text-align: left;
}

.loft-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--loft-orange);
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.info-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-quick-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.iphone-container {
  position: relative;
  width: 150px;
  height: 150px;
  transform-style: preserve-3d;
  animation: float 3s ease-in-out infinite;
}

.iphone-container:nth-child(1) {
  animation-delay: 0s;
}

.iphone-container:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-10px) rotateY(15deg);
  }
  50% {
    transform: translateY(-5px) rotateY(0deg);
  }
  75% {
    transform: translateY(-10px) rotateY(-15deg);
  }
}

.iphone-before, .iphone-after {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  transition: transform 0.3s ease;
  background: transparent;
}

.iphone-before::before, .iphone-after::before {
  content: attr(data-label);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--loft-orange);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

.iphone-before::after {
  content: "📱";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  animation: shake 0.5s ease-in-out infinite;
}

.iphone-after::after {
  content: "✨";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  animation: sparkle 1s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

/* Diferenciais */
.diferenciais {
  background: var(--loft-orange);
  color: var(--loft-dark);
  padding: 3rem 1rem;
  text-align: center;
}

.diferenciais-content {
  max-width: 1200px;
  margin: 0 auto;
}

.diferenciais h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--loft-dark);
}

.diferenciais-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--loft-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.diferencial-card {
  background: var(--loft-white);
  border-radius: var(--loft-radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--loft-shadow);
  transition: transform 0.2s;
}

.diferencial-card:hover {
  transform: translateY(-5px);
}

.diferencial-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--loft-orange);
}

.diferencial-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--loft-dark);
}

.diferencial-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  margin: 0 auto 1rem auto;
  background: var(--loft-orange);
  border-radius: 50%;
  color: white;
  animation: bounce 2s ease-in-out infinite;
}

.diferencial-card:nth-child(1) .diferencial-icon {
  animation-delay: 0s;
}

.diferencial-card:nth-child(2) .diferencial-icon {
  animation-delay: 0.5s;
}

.diferencial-card:nth-child(3) .diferencial-icon {
  animation-delay: 1s;
}

.diferencial-card:nth-child(4) .diferencial-icon {
  animation-delay: 1.5s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Serviços */
.servicos {
  background: var(--loft-white);
  padding: 3rem 1rem;
  text-align: center;
}

.servicos-content {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--loft-orange);
}

.servicos-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 260px;
  margin: 0 auto 2rem auto;
  text-align: center;
  position: relative;
}

.servico-card {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(120deg, #fff 60%, #f3f3f3 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.servico-card.active {
  display: flex;
}

.servico-card h3, .servico-card p {
  text-align: center;
  width: 100%;
}

.servico-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--loft-orange);
}

.servico-card p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--loft-dark);
}

.servico-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  height: 76px;
  width: 76px;
  min-height: 76px;
  min-width: 76px;
  max-height: 76px;
  max-width: 76px;
  margin: 0 0 1.2rem 0;
  background: var(--loft-green);
  border-radius: 50%;
  color: white;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  line-height: 1;
  text-align: center;
  padding: 0;
  position: relative;
}

.servico-icon span, .servico-icon svg, .servico-icon::before {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 6px;
}

.servico-card:nth-child(1) .servico-icon {
  animation-delay: 0s;
}

.servico-card:nth-child(2) .servico-icon {
  animation-delay: 0.7s;
}

.servico-card:nth-child(3) .servico-icon {
  animation-delay: 1.4s;
}

.servico-icone-centralizado {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.6rem;
  width: 100%;
  margin-bottom: 0.7rem;
  margin-top: -0.2rem;
  line-height: 1;
}

.cta-btn {
  background: var(--loft-green);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #009e3a;
}

.cta-btn img {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #fff;
  padding: 2px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cta-btn:hover img {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: scale(1.08);
}

/* Garantia Certificada */
.garantia-certificada {
  background: var(--loft-orange);
  color: white;
  padding: 3rem 4rem;
  text-align: center;
  margin: 2rem;
  border-radius: var(--loft-radius);
}

.garantia-certificada-content {
  max-width: 1200px;
  margin: 0 auto;
}

.garantia-titulo-quadrado {
  margin-bottom: 2rem;
}

.garantia-titulo-quadrado h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--loft-white);
}

.garantia-conteudo {
  max-width: 800px;
  margin: 0 auto;
}

.garantia-conteudo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--loft-white);
}

.garantia-conteudo p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--loft-white);
}

/* Galeria */
.galeria {
  background: linear-gradient(135deg, #f8f9fa 70%, #e3e6ed 100%);
  padding: 3.5rem 1rem 3rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.galeria::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(0,0,0,0.08);
  z-index: 0;
}

.galeria h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--loft-orange);
  margin-bottom: 2.2rem;
  margin-top: 0;
}

.galeria-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 220px;
  margin: 0 auto;
  text-align: center;
}

.galeria-img {
  display: none !important;
  max-width: 90vw;
  max-height: 220px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  background: linear-gradient(120deg, #fff 60%, #f3f3f3 100%);
  margin: 0 8px;
  object-fit: cover;
}

.galeria-img.active {
  display: block !important;
  margin: 0 auto;
  position: static;
  left: auto;
  transform: none;
}

.galeria-prev, .galeria-next {
  z-index: 2;
}

.galeria-carousel img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  left: auto;
  transform: none;
}

.galeria-carousel img.active {
  opacity: 1;
  z-index: 2;
  transform: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.galeria-carousel img:hover {
  transform: none;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}

/* Avaliações */
.avaliacoes {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.avaliacoes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
}

.avaliacoes h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--loft-white);
  position: relative;
  z-index: 2;
}

.avaliacoes-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.avaliacoes-carousel {
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1.2rem 0 1.5rem 0;
}

.avaliacoes-carousel img {
  width: 800px;
  height: 420px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s, transform 0.5s;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 8px;
}

.avaliacoes-carousel img.active {
  opacity: 1;
  z-index: 2;
}

.avaliacoes-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.avaliacoes-nav-btn {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.avaliacoes-nav-btn.active {
  background: var(--loft-orange);
  border-color: var(--loft-orange);
  transform: scale(1.2);
}

.avaliacoes-nav-btn:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

/* Localização */
.localizacao {
  background: var(--loft-white);
  padding: 3rem 1rem;
  text-align: center;
}

.localizacao-content {
  max-width: 1200px;
  margin: 0 auto;
}

.localizacao h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--loft-orange);
}

.localizacao-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.localizacao-detalhes {
  flex: 1 1 300px;
  text-align: left;
}

.localizacao-detalhes h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--loft-orange);
}

.localizacao-detalhes p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--loft-dark);
  margin-bottom: 0.5rem;
}

.localizacao-mapa {
  flex: 1 1 600px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--loft-radius);
  overflow: hidden;
  box-shadow: var(--loft-shadow);
  height: 320px;
}

.localizacao-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Rodapé */
footer {
  background: var(--loft-dark);
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.footer-contato p {
  margin: 0.2rem 0;
}

.footer-contato a {
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-contato a:hover {
  opacity: 1;
}

.footer-endereco {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--loft-green);
  color: white;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #009e3a;
}

.whatsapp-float img {
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  background: #fff;
  padding: 4px;
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: box-shadow 0.2s, transform 0.2s;
}

.whatsapp-float:hover img {
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transform: scale(1.12);
}

/* Cookies */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--loft-dark);
  color: white;
  padding: 1rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookies-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.cookies-content p {
  margin: 0;
  flex: 1;
}

.cookies-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookies-btn {
  background: var(--loft-orange);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookies-btn:hover {
  background: #e55a00;
}

.cookies-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookies-modal-content {
  background: white;
  padding: 2rem;
  border-radius: var(--loft-radius);
  max-width: 500px;
  width: 90%;
}

.cookies-modal-content h3 {
  margin-bottom: 1rem;
  color: var(--loft-dark);
}

.cookies-options {
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cookies-modal-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.cookies-cancel {
  background: #6c757d;
}

.cookies-cancel:hover {
  background: #5a6268;
}

/* Responsivo */
@media (max-width: 900px) {
  .galeria {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    text-align: center;
  }
  .galeria h2 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    margin-top: 0;
    text-align: center;
  }
  .galeria-carousel {
    gap: 10px;
    padding: 1rem 0 1.2rem 0;
    max-width: 100vw;
    border-radius: 18px;
  }
  .galeria-img {
    max-width: 90vw;
    min-width: 0;
    max-height: 180px;
    border-radius: 18px;
  }
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .info-quick-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .info-quick-details {
    text-align: center;
    order: 2;
  }
  
  .info-quick-images {
    order: 1;
    justify-content: center;
    gap: 1rem;
  }
  
  .header { 
    padding: 0.5rem 1rem; 
  }
  
  .avaliacoes-carousel {
    min-height: 220px;
    padding: 0.7rem 0 1rem 0;
  }
  
  .avaliacoes-carousel img {
    width: 98vw;
    height: 160px;
    max-width: 100vw;
    max-height: 200px;
    padding: 4px;
  }
}

@media (max-width: 600px) {
  .header { 
    height: 56px; 
    padding: 0.5rem 0.5rem; 
  }
  
  main { 
    padding-top: 100px; 
  }
  
  .hero-title { 
    font-size: 1.3rem; 
  }
  
  .hero-content { 
    max-width: 98vw; 
  }
  
  /* Diferenciais */
  .diferenciais {
    padding: 2rem 1rem;
  }
  
  .diferenciais h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .diferenciais-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .diferencial-card {
    padding: 1.5rem 1rem;
  }
  
  .diferencial-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .diferencial-card p {
    font-size: 0.85rem;
  }
  
  .diferencial-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  /* Serviços */
  .servicos {
    padding: 2rem 1rem;
  }
  
  .servicos h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .servico-card {
    padding: 1.5rem 1rem;
  }
  
  .servico-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .servico-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .servico-icon {
    font-size: 2.1rem;
    height: 56px;
    width: 56px;
    min-height: 56px;
    min-width: 56px;
    max-height: 56px;
    max-width: 56px;
    margin: 0 0 1rem 0;
  }
  
  .servico-icon span, .servico-icon svg, .servico-icon::before {
    top: 3px;
  }
  
  /* Informações Rápidas */
  .info-quick {
    padding: 2rem 1rem;
  }
  
  .info-quick-content {
    gap: 1.5rem;
  }
  
  .loft-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .info-list {
    margin-bottom: 1.5rem;
  }
  
  .info-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .info-quick-images {
    gap: 0.8rem;
  }
  
  .iphone-container {
    width: 120px;
    height: 120px;
  }
  
  .iphone-before, .iphone-after {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: transparent;
  }
  
  .iphone-before::before, .iphone-after::before {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: var(--loft-orange);
    color: white;
  }
  
  /* Outros ajustes */
  .diferenciais h2, .servicos h2, .galeria h2, .avaliacoes h2, .localizacao h2 { 
    font-size: 1.4rem; 
  }
  
  .localizacao-mapa { 
    height: 180px; 
  }
  
  .footer-info { 
    flex-direction: column; 
    gap: 0.7rem; 
  }
  
  .avaliacoes-carousel {
    min-height: 210px;
  }
  
  .avaliacoes-carousel img {
    width: 98vw;
    height: 210px;
    max-width: 98vw;
    max-height: 210px;
    padding: 4px;
    object-fit: contain;
  }
  
  .galeria-carousel {
    flex-direction: column;
    gap: 0;
  }
  
  .galeria-img {
    max-width: 96vw;
    max-height: 160px;
  }
  
  .galeria-img {
    max-width: 98vw;
    max-height: 160px;
  }
  
  .galeria-carousel {
    min-height: 160px;
  }
  
  .servicos-carousel {
    min-height: 180px;
  }
  
  .servico-card {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
} 