:root {
  --primary-color: #6c5ce7;
  --accent-color: #a29bfe;
  --text-color: #2d3436;
  --bg-color: #f5f6fa;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a.cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.cta {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  border-radius: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.cta > * {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-text {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.highlight {
  color: var(--white);
  font-weight: bold;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.phone-number {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

.whatsapp-floating i {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .whatsapp-floating span {
    display: none;
  }
  
  .whatsapp-floating {
    padding: 1rem;
    border-radius: 50%;
  }
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: #22c35e;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Estilos para seções */

.sobre-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.sobre-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('padrao-subtile.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 300;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #6c5ce7;
  margin: 1rem auto 0;
}

.sobre-container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.sobre-imagem {
  flex: 1;
  position: relative;
}

.sobre-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.sobre-imagem:hover .sobre-img {
  transform: translateY(-5px);
}

.detalhe-ornamental {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #6c5ce7;
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
  top: -30px;
  left: -30px;
}

.sobre-texto {
  flex: 1;
}

.sobre-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sobre-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.icone-destaque {
  width: 60px;
  height: 60px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icone-destaque i {
  font-size: 1.5rem;
  color: #6c5ce7;
}

.sobre-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #333;
  font-weight: 500;
}

.sobre-item p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
  }
  
  .sobre-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Estilos para a seção de serviços */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.servico-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-5px);
}

.servico-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.servico-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Estilos para depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.testimonial p {
  margin: 1.5rem 0;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-author i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Estilos para filiais */

/* Estilos para a Seção de Filiais */
.filiais-section {
  background-color: #f8f9fa;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.filiais-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%236c5ce7" opacity="0.05" d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.filiais-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.filiais-section h2 i {
  color: #6c5ce7;
  margin-right: 15px;
}

.filiais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.filial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #6c5ce7, #a29bfe);
}

.filial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.filial-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.filial-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #6c5ce7;
}

.filial-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
}

.filial-card li {
  padding: 0.6rem 1rem;
  background: rgba(108, 92, 231, 0.08);
  border-radius: 5px;
  color: #555;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.filial-card li::before {
  content: "•";
  color: #6c5ce7;
  margin-right: 8px;
  font-size: 1.2rem;
}

.filial-card li:hover {
  background: rgba(108, 92, 231, 0.15);
  color: #333;
  transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 768px) {
  .filiais-section {
    padding: 3rem 1rem;
  }
  
  .filiais-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .filiais-grid {
    grid-template-columns: 1fr;
  }
  
  .filial-card {
    padding: 1.5rem;
  }
  
  .filial-card ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .filial-card ul {
    grid-template-columns: 1fr;
  }
  
  .filial-card li {
    padding: 0.5rem;
  }
}

/* Estilos para onde estamos */
.onde-estamos-section {
  background: var(--bg-color);
}

.localizacao-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Estilos para contato */
.contato-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contato-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.contato-item:hover {
  transform: translateY(-5px);
}

.contato-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contato-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contato-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contato-item a:hover {
  color: var(--accent-color);
}

/* wpp button */
/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: rotate(10deg);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  width: 0;
  padding: 0;
  background: #333;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  width: auto;
  padding: 6px 12px;
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}
.whatsapp-float {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.whatsapp-float.visible {
  opacity: 1;
}


/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-text {
    font-size: 1.2rem;
  }

  .phone-number {
    font-size: 2rem;
  }

  .whatsapp-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .cta {
    padding: 6rem 1rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .phone-number {
    font-size: 1.8rem;
  }

  .whatsapp-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}