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

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #0A1F44;
  line-height: 1.4;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Botões */
.btn-primary {
  background-color: #1B6FED;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(27,111,237,0.3);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #0a4db3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27,111,237,0.4);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-green {
  background-color: #2ECC71;
  color: #0A1F44;
  border: none;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.btn-green:hover {
  background-color: #27ae60;
  color: white;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  color: #0A1F44;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #2ECC71;
  margin: 15px auto 0;
  border-radius: 4px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Header - Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  overflow-x: hidden;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.logo h2 {
  color: #0A1F44;
  font-weight: 800;
  font-size: 1.5rem;
}

.logo span {
  color: #1B6FED;
}

/* Botão Hambúrguer */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0A1F44;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Menu de navegação desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #0A1F44;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #1B6FED;
}

.nav-links .menu-header {
  display: none;
}

.cart-icon-mobile {
  display: none;
}

.desktop-cart {
  position: relative;
  cursor: pointer;
  font-size: 1.4rem;
  color: #0A1F44;
  margin-left: 5px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #2ECC71;
  color: #0A1F44;
  border-radius: 30px;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: bold;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 2rem;
  color: #0A1F44;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text h1 .highlight {
  color: #1B6FED;
  position: relative;
}

.hero-text p {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 25px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  background: linear-gradient(135deg, #2ECC71, #27ae60);
  color: white;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1B6FED;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
}

.hero-image {
  background: linear-gradient(135deg, #eef2fa, #ffffff);
  border-radius: 32px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-quote {
  margin-top: 20px;
  font-style: italic;
  color: #1B6FED;
  font-size: 0.9rem;
  max-width: 250px;
}

/* Problemas */
.problemas-section {
  background: #FFFFFF;
  padding: 60px 0;
}

.problemas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

.problema-card {
  background: #F8FAFE;
  border-radius: 20px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  text-align: center;
}

.problema-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #2ECC71;
}

.problema-icon {
  font-size: 2.5rem;
  color: #1B6FED;
  margin-bottom: 15px;
}

.problema-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0A1F44;
}

.problema-card p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
}

.call-to-action {
  text-align: center;
  background: linear-gradient(135deg, #0A1F44, #1B6FED);
  padding: 35px 20px;
  border-radius: 24px;
  margin-top: 40px;
}

.call-to-action p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.call-to-action .btn-primary {
  background-color: #2ECC71;
  color: #0A1F44;
  box-shadow: none;
}

.call-to-action .btn-primary:hover {
  background-color: #27ae60;
}

/* Antes e Depois */
.beforeafter-section {
  background: #F2F5F9;
  padding: 60px 0;
}

.cards-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 20px;
}

.ba-card-carousel {
  background: white;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.ba-card-carousel:hover {
  transform: translateY(-5px);
}

.ba-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #0A1F44;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Carrossel */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-slides {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.slide-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10,31,68,0.85);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.7rem;
  z-index: 5;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.2s;
}

.indicator.active {
  background: #2ECC71;
  width: 20px;
  border-radius: 10px;
}

.ba-description {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: #1B6FED;
  font-weight: 500;
}

/* Catálogo */
.catalog-section {
  background: #F2F5F9;
  padding: 60px 0;
}

.oferta-header {
  text-align: center;
  margin-bottom: 20px;
}

.oferta-badge {
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 20px;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card.promo-card {
  border: 2px solid #2ECC71;
  box-shadow: 0 8px 20px rgba(46,204,113,0.2);
}

.promo-flag {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #2ECC71;
  color: #0A1F44;
  padding: 5px 30px;
  font-size: 0.7rem;
  font-weight: 700;
  transform: rotate(45deg);
  width: 120px;
  text-align: center;
}

.service-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #0A1F44;
}

.price-container {
  margin: 10px 0;
}

.old-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  display: block;
}

.new-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2ECC71;
  display: inline-block;
}

.new-price small {
  font-size: 0.8rem;
  font-weight: normal;
  color: #666;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2ECC71;
  margin: 10px 0;
}

.discount-badge {
  background: #EE5A24;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-block;
  margin-left: 8px;
}

.btn-add {
  background-color: #0A1F44;
  color: white;
  border: none;
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.btn-add:hover {
  background-color: #1B6FED;
  transform: scale(1.02);
}

.obs-preco {
  text-align: center;
  background: #FFF3E0;
  padding: 12px 20px;
  border-radius: 50px;
  margin: 20px auto;
  max-width: 90%;
  font-size: 0.8rem;
  color: #E67E22;
}

/* Carrinho lateral */
.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  z-index: 1000;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-left: 4px solid #2ECC71;
  overflow-y: auto;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #F2F2F2;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin: 15px 0;
  max-height: 220px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.85rem;
}

.cart-item button {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 1rem;
}

#dynamicFields {
  background: #F2F5F9;
  padding: 15px;
  border-radius: 16px;
  margin: 10px 0;
  flex-shrink: 0;
}

.dynamic-field-group {
  margin-bottom: 12px;
}

.dynamic-field-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.85rem;
  color: #0A1F44;
}

.dynamic-field-group select, 
.dynamic-field-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.cart-total {
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 12px;
  border-top: 2px solid #F2F2F2;
  margin-top: 10px;
  flex-shrink: 0;
}

.close-cart {
  cursor: pointer;
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.close-cart:hover {
  transform: scale(1.1);
}

.cart-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.cart-overlay.active {
  display: block;
}

.cart-footer button {
  width: 100%;
  margin-top: 12px;
}

/* Footer */
footer {
  background: #0A1F44;
  color: white;
  padding: 40px 0 20px;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  margin-bottom: 25px;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-info h3 span {
  color: #1B6FED;
}

.footer-info p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.85rem;
}

.footer-contact i {
  margin-right: 8px;
  color: #2ECC71;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Responsivo - Tablets */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
  
  .hero-content {
    flex-direction: row;
    text-align: left;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-text p {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-stats {
    justify-content: flex-start;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cards-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .problemas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cards-carousel {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .problemas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .desktop-cart {
    display: none;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 150;
    padding: 80px 25px 40px;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links .menu-header {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #2ECC71;
    width: 100%;
  }
  
  .nav-links .menu-header h3 {
    color: #0A1F44;
    font-weight: 800;
    font-size: 1.5rem;
  }
  
  .nav-links .menu-header h3 span {
    color: #1B6FED;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    white-space: normal;
    text-align: left;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
  }
  
  .nav-links a:hover {
    color: #1B6FED;
    padding-left: 10px;
  }
  
  .cart-icon-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 15px 0;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0A1F44;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
  }
  
  .cart-icon-mobile i {
    font-size: 1.3rem;
  }
  
  .cart-icon-mobile .cart-count {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 5px;
  }
  
  .navbar {
    width: 100%;
    overflow-x: visible;
  }
  
  .nav-container {
    padding: 10px 16px;
    width: 100%;
    min-width: auto;
  }
  
  .cart-sidebar {
    width: 90%;
    max-width: 350px;
    padding: 15px;
  }
  
  .cart-header {
    font-size: 1rem;
    padding-bottom: 10px;
  }
  
  .cart-items {
    max-height: 180px;
  }
  
  .cart-item {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .dynamic-field-group label {
    font-size: 0.8rem;
  }
  
  .dynamic-field-group select,
  .dynamic-field-group input {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  
  .cart-total {
    font-size: 1.1rem;
  }
  
  .btn-green {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons a {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  
  .hero-stats {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .call-to-action p {
    font-size: 1rem;
  }
  
  .call-to-action .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: normal;
  }
  
  .btn-primary, .btn-whatsapp {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: normal;
  }
  
  .service-card h3 {
    font-size: 1rem;
  }
  
  .new-price {
    font-size: 1.4rem;
  }
  
  .price {
    font-size: 1.4rem;
  }
  
  .btn-add {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .obs-preco {
    font-size: 0.7rem;
    padding: 8px 12px;
  }
  
  .carousel-prev, .carousel-next {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .problema-card {
    padding: 20px 15px;
  }
  
  .problema-card h3 {
    font-size: 1rem;
  }
  
  .footer-info h3 {
    font-size: 1.2rem;
  }
  
  .footer-contact p {
    font-size: 0.75rem;
  }
  
  .nav-links {
    width: 85%;
    padding: 70px 20px 40px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 12px 0;
  }
  
  .cart-icon-mobile {
    margin-top: 5px;
    padding: 12px 0;
  }
}
