:root {
  --primary-color: lab(32.12% -26.34 33.67);
  --secondary-color: lab(32.12% -26.34 33.67);
  --accent-color: lch(17.08% 28.66 129.58);
  --light-color: hsl(61, 88%, 90%);
  --dark-color: lab(32.12% -26.34 33.67);
  --text-color: hwb(0 0% 100%);
  --text-light: #6b7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: hsl(60, 23%, 97%);
  padding-top: 80px; /* COMPENSA O HEADER */
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

header {
  background-color: hwb(0 100% 0%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 80px; /* ALTURA FIXA */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%; /* ocupa toda altura do header */
  padding: 0;   /* remove padding que aumentava altura */
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.menu a {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 5px 0;
  position: relative;
}

.menu a:hover {
  color: var(--secondary-color);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn-primary, .btn-secondary {
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sobre-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.sobre-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.sobre-foto {
  flex: 0 0 300px;
}

.foto-perfil {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sobre-texto {
  flex: 1;
}

.sobre-lista {
  margin-top: 20px;
}

.sobre-lista li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.sobre-lista i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.servicos-section {
  padding: 100px 0;
  text-align: center;
  background-color: lab(32.12% -26.34 33.67);
}

.servicos-section h2 {
  color: hsl(61, 88%, 90%); /* COR BEGE CLARA */
}

.servicos-section h2::after {
  background-color: hsl(61, 88%, 90%); /* LINHA DECORATIVA NA MESMA COR */
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.servico-card {
  background: hsl(61, 88%, 90%);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  border-top: 4px solid var(--accent-color);
  opacity: 0;
  transform: translateY(20px);
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-card h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
}

.servico-card p {
  color: var(--text-color);
  margin-bottom: 20px;
}

.servico-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
}

.servico-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.servico-link:hover i {
  transform: translateX(5px);
}

.contato-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.contato-section h2 {
  color: lch(17.08% 28.66 129.58);
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contato-info h3 {
  display: flex;
  align-items: center;
  color:  lch(17.08% 28.66 129.58);
  margin-bottom: 10px;
}

.contato-info h3 i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.contato-info p {
  margin-bottom: 30px;
  color: lch(17.08% 28.66 129.58);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: hsl(61, 88%, 90%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.whatsapp-cta {
  background: lab(32.12% -26.34 33.67);
  color: hsl(61, 88%, 90%);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px ;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-whatsapp i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-whatsapp:hover {
  background-color:  hsl(61, 88%, 90%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px white;
}

footer {
  background-color: lch(17.08% 28.66 129.58);
  color: hsl(61, 88%, 90%);
  text-align: center;
  padding: 40px 0 20px;
}

.creditos-site {
  margin-top: 15px;
  font-size: 0.9rem;
}

.creditos-site a {
  color: hsl(61, 88%, 90%);
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero {
    padding: 150px 0 80px;
  }
  
  .sobre-container {
    gap: 30px;
  }
  
  .sobre-foto {
    flex: 0 0 250px;
  }
}

@media (max-width: 768px) {
  header {
    height: 70px;
  }
  
  body {
    padding-top: 70px;
  }
  
  .hamburger {
    display: block;
  }
  
  .menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .menu.active {
    max-height: 100vh;
  }
  
  .menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0 20px;
  }
  
  .menu.active li {
    opacity: 1;
  }
  
  .menu a {
    font-size: 1.2rem;
    padding: 15px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .contato-content {
    grid-template-columns: 1fr;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  
  .sobre-container {
    flex-direction: column;
    align-items: center;
  }
  
  .sobre-foto {
    margin: 0 auto 30px;
    flex: 0 0 auto;
  }
  
  .foto-perfil {
    max-width: 250px;
  }
  
  .whatsapp-cta {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .sobre-foto {
    flex: 0 0 200px;
  }
  
  .foto-perfil {
    max-width: 200px;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo {
  color: hsl(61, 88%, 90%);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand p {
  color: hsl(61, 88%, 90%);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.footer-col h3 {
  color: hsl(61, 88%, 90%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-menu, .footer-contact {
  list-style: none;
}

.footer-menu li, .footer-contact li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: hsl(61, 88%, 90%);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-contact li {
  color: hsl(61, 88%, 90%);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 20px;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 0 15px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .footer-menu, .footer-contact {
    padding: 0;
  }
}