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

:root {
  --green: #4d874c;
  --dark-gray: #1a1a1a; /* darker background for dark theme */
  --light-gray: #c1c1bd;
  --gold: #d4af37;
  --white: #ffffff;
  --black: #000000;
  --dark-bg: #0f0f0f; /* added very dark background */
  --card-bg: #2a2a2a; /* added dark card background */
  --text-light: #e0e0e0; /* added light text color */
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 0.6;
  color: var(--text-light); /* changed to light text */
  background: var(--dark-bg); /* added dark background */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-loc {
    display: inline-block;
    color: #5eb15d;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    background: rgba(86, 251, 36, 0.1);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(79, 251, 36, 0.3);
    border-image: initial;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none; /* 🔥 tira o sublinhado */
}
.btn-loc:hover {
   background: rgb(79, 251, 36);     /* fundo fica dourado */
    color: #000;                       /* texto preto p/ contraste */
    border-color: rgb(79, 251, 36);   /* borda sólida */
    transform: scale(1.05);            /* leve zoom */
    box-shadow: 0 4px 12px rgba(86, 251, 36, 0.4); /* brilho */
}

.badge {
    display: inline-block;
    color: #4d8f4c;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    background: rgba(97, 251, 36, 0.1);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(79, 251, 36, 0.3);
    border-image: initial;
    padding: 8px 16px;
    border-radius: 50px;
}

.menu {
  height: 50px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(51, 57, 51, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease, transform 0.3s ease; /* Added smooth transition for hide/show effect */
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-margem{
  margin-left: -130px;
}

.logo img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1) drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)),
              url("imagens/1000173711.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* funciona no desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px; /* aumentei a altura do degradê */
  background: linear-gradient(transparent, var(--dark-bg));
  pointer-events: none;
}

/* Safari iOS detectado */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll; /* força a imagem aparecer no iPhone */
  }
}

.scroll-down {
  position: absolute;
  bottom: 20px; /* distância do rodapé da hero */
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}
.hero-title{
  font-size: clamp(48px, 8vw, 128px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.title1{
  font-size: 5rem;
      display: block;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(194, 196, 194)) text;
}
.title2{
  font-size: 2rem;
      display: block;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(102, 214, 117), rgb(70, 173, 30)) text;
} 
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 57, 51, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}


.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--light-gray);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #4D874C;
  color: var(--gray);
}

.btn-primary:hover {
  background: #4D874C;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
}

.btn-secondary:hover {
  background: #3d6b3c;
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light); /* changed to light text */
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-gray);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--dark-gray); /* changed to dark background */
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light); /* changed to light text */
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h4 {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.about-mapa {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-mapa iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 80px;
  background: var(--dark-bg); /* changed to very dark background */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card-bg); /* changed to dark card background */
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* increased shadow opacity */
  transition: transform 0.3s ease;
  
    /* altura fixa */
}

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

.service-icon {
  margin-bottom: 1.5rem;
}

 #bigode{
  margin-top: -20px;
  margin: -20px;
 }
.service-icon {
    font-size: 40px;
    color: rgb(72, 251, 36); /* dourado */
    margin-bottom: 15px;
}

.service-icon img {
  width: 80px;
  height: 80px;
}

.service-card h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  word-break: break-word;
  margin-top: 1rem;
}

.service-card p {
  color: var(--light-gray);
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--dark-gray); /* changed to dark background */
}

.gallery-carousel {
  max-width: 1200px; /* increased max-width for 4-photo grid */
  margin: 0 auto;
  position: relative;
}

.gallery p{
  line-height: 1.2;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(86, 212, 55, 0.6);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  z-index: 5;
}

.carousel-btn:hover {
  background: rgba(118, 212, 55, 0.9);
  color: var(--dark-gray);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.carousel-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
}

.carousel-btn span {
  font-size: 1.6rem;
  line-height: 1;
}

.carousel-btn-prev {
  left: 15px;
}

.carousel-btn-next {
  right: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
  padding: 20px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: scale(1.05);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 85%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #4db44c;
  margin: 0;
}

.carousel-slide > img {
  display: none; /* Hide old single image structure (apenas imgs diretas) */
}

.slide-overlay {
  display: none; /* Hide old overlay structure */
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--dark-bg); /* changed to very dark background */
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg); /* changed to dark card background */
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* increased shadow opacity */
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--gold);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--text-light); /* changed to light text */
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: var(--text-light); /* changed to light text */
  border-bottom: 1px solid #444; /* changed border to darker color */
}

.pricing-card li:last-child {
  border-bottom: none;
}
/*time section */

#team {
  padding: 70px;
  text-align: center;
}

.section-header {
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
}

.team-photo img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.team-text {
  margin-top: 20px;
}

.team-text h3 {
  line-height: 1;
  font-size: 50px;
  color: rgb(59, 97, 59);
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .team-member, .team-member.reverse {
        flex-direction: column;
    }

    .team-photo img {
        width: 260px;
        height: 260px;
    }

    .logo-margem{
      margin-left: 0px;
    }
}
/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: var(--dark-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.review-stars {
  margin-bottom: 1rem;
}

.review-stars span {
  color: var(--gold);
  font-size: 1.2rem;
}

.review-card p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.review-author {
  border-top: 1px solid #444;
  padding-top: 1rem;
}

.review-author strong {
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.review-author span {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
 background: linear-gradient(135deg, #74815a, #304230);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.contact-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  flex: 1;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item h3 {
  color: #4D874C;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.0;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}



.contact-item strong {
  color: var(--text-light);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--card-bg); /* changed to dark card background */
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #444; /* changed border to darker color */
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--dark-bg); /* added dark background */
  color: var(--text-light); /* added light text */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background: #128c7e;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Footer Left - Logo e Descrição */
.footer-left {
  flex: 1;
  max-width: 300px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-description {
  color: var(--light-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}



/* Footer Right - Redes Sociais */
.footer-right {
  text-align: right;
}

.footer-right h4 {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer Center - Menu e Serviços */
.footer-center {
  display: flex;
  gap: 3rem;
}

.footer-section h4 {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--gold);
}



/* Barra inferior do footer */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid #444;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-link svg {
  width: 14px;
  height: 14px;
}

.fgpages{
  color: #c084fc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-title {
    font-size: clamp(36px, 6vw, 80px);
  }

  .title2 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-content {
    display: block;
    gap: 3rem;
  }

  .about-text {
    margin-bottom: 1rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-item {
    max-width: 300px;
  }

   .logo-margem{
      margin-left: 0px;
    }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .logo img {
    height: 40px;
    max-width: 150px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(51, 57, 51, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
  }

  .nav.active ul {
    flex-direction: column;
    gap: 1rem;
  }

   .logo-margem{
      margin-left: 0px;
    }

  .hero-title {
    font-size: clamp(32px, 5vw, 60px);
  }

  .title2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about-content {
    display: block;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

   
  .about-text {
    margin-bottom: 1rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    flex-direction: row;
    gap: 1rem;
  }

  .contact-item {
    max-width: none;
    padding: 1.5rem;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .slide-overlay {
    padding: 1.5rem;
  }

  .slide-overlay h3 {
    font-size: 1.2rem;
  }

  .slide-overlay p {
    font-size: 0.9rem;
  }

  .carousel-slide img {
    height: 300px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-left {
    max-width: none;
    text-align: center;
  }

  .footer-center {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-right {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    justify-content: center;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }

  .photo-overlay {
    padding: 0.8rem;
  }

  .photo-overlay h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-text {
    margin-bottom: 1rem;
  }

  .container {
    padding: 0 15px;
  }

   .logo-margem{
      margin-left: 0px;
    }

  .logo img {
    height: 35px;
    max-width: 120px;
  }

  .header {
    padding: 0.8rem 0;
  }

  .hero-title {
    font-size: clamp(28px, 4vw, 40px);
  }

  .title1 {
    font-size: 4rem;
  }

  .title2 {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.0
  }

  .copyright p {
    line-height: 1.0
  }

  .section-header p {
    font-size: 1rem;
    line-height: 1.0
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .slide-overlay {
    padding: 1rem;
  }

  .slide-overlay h3 {
    font-size: 1.1rem;
  }

  .carousel-slide img {
    height: 250px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 8px;
  }

  .photo-item {
    aspect-ratio: 1;
  }

  .photo-overlay {
    padding: 0.5rem;
  }

  .photo-overlay h4 {
    font-size: 0.75rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .contact-info {
    flex-direction: row;
    gap: 0.8rem;
  }

  .contact-item {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 8px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-left {
    max-width: none;
    text-align: center;
  }

  .footer-center {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-right {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

   .logo-margem{
      margin-left: 0px;
    }

  .header {
    padding: 0.6rem 0;
  }

  .logo img {
    height: 30px;
    max-width: 100px;
  }

  .hero-title {
    font-size: clamp(20px, 3vw, 28px);
  }

  .title1 {
    font-size: 4rem;
  }

  .title2 {
    font-size: 0.9rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header p {
    font-size: 0.8rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contact-item {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .contact-item h3 {
    font-size: 1rem;
  }

  .contact-item p {
    font-size: 0.75rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 5px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-description {
    font-size: 0.85rem;
  }
}