.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-column {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
}

#inicio {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--color-muted-50), var(--color-background-end));
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.grid-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-text-default);
}

.text-gradient {
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

  #inicio p,
  #servucis p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-background);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-icon {
  margin-left: 0.5rem;
  height: 1rem;
  width: 1rem;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

.image-container {
  position: relative;
  z-index: 10;
}

.image-glow {
  position: absolute;
  top: -1rem;
  bottom: -1rem;
  left: -1rem;
  right: -1rem;
  background: linear-gradient(to right, rgba(30, 112, 191, 0.2), rgba(46, 139, 87, 0.2));
  filter: blur(2rem);
  border-radius: calc(var(--border-radius) + 0.5rem);
  z-index: -1;
}

.hero-image {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

#servicos {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, var(--color-background), rgba(243, 244, 246, 0.3));
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0s;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background-color: rgb(255 185 0 / 10%);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
}

.section-header h2 {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text-default);
}

.section-header p {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.services-grid .card{
  animation-delay: 0.1s;
}

.services-grid .card,
.gallery-grid .card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  width: 100%;
  padding: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.services-grid .card:hover,
.gallery-grid .card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.services-grid .card-image-wrapper {
  position: relative;
  height: 12rem;
  overflow: hidden;
  width: 100%;
}

.services-grid .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  display: block;
}

.services-grid .card:hover .card-image {
  transform: scale(1.1);
}

.image-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
}

.services-grid .card-body {
  padding: 1.5rem;
}

.services-grid .card-icon-container {
  margin-bottom: 0.5rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgb(255 185 0 / 10%);
}

.services-grid .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-default);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.services-grid .card-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#galeria {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-background);
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.gallery-card-content {
  /* position: relative;
  padding-top: 75%; */
  background-color: var(--color-muted-bg);
}

.gallery-content-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-text-container {
  text-align: center;
  padding: 1rem;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--color-primary);
  color: var(--color-background);
}

.gallery-badge.dois {
  background-color: #f97316; /* Verde */
}

.gallery-badge.tres {
  background-color: #f97316; /* Amarelo */
}

.gallery-text-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text-default);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 0.875rem;
}

.before-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: var(--color-destructive-bg);
  padding: 1rem;
}

.before-box .label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-destructive);
}

.after-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: var(--color-secondary-bg);
  padding: 1rem;
}

.after-box .label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-secondary-accent);
}

.after-box img,
.before-box img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.before-after-grid p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}


.icon {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-small {
  height: 1rem;
  width: 1rem;
}

.icon-medium {
  height: 1.5rem;
  width: 1.5rem;
}

.icon-large {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--color-primary);
}

#beneficios {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: rgba(243, 244, 246, 0.3);
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.benefit-card {
  text-align: center;
  opacity: 1;
  animation: scaleIn 0.6s ease-out forwards;
}

.benefit-icon-container {
  margin-bottom: 1rem;
  display: inline-flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgb(255 185 0 / 10%);
  padding: 10px;
  font-size: 2rem;
}

.benefit-icon-container i {
  color: var(--color-primary);
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-default);
}

.benefit-card p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

#contato {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, rgba(243, 244, 246, 0.3), var(--color-background-end));
}

#contato .section-header{
  margin-bottom: 3rem;
}

.contact-wpp{
  margin-left: auto; 
  margin-right: auto; 
  max-width: 64rem;
}

.contact-wpp .section-header h2 {
  margin-bottom: 1rem; 
  font-size: 1.875rem; 
  font-weight: 700; 
  color: var(--color-text-default); 
  line-height: 1.2;
}

.contact-wpp .section-header p {
  margin-left: auto; 
  margin-right: auto; 
  max-width: 42rem; 
  font-size: 1.125rem; 
  color: var(--color-text-muted); 
  line-height: 1.6; 
  margin-bottom: 0;

}

.contact-card {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  background-color: var(--color-background);
}

.card-content {
  padding: 2rem;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrapper {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgb(255 185 0 / 10%);
}

.contact-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--color-primary);
}

.contact-label {
  font-weight: 500;
  color: var(--color-text-default);
  margin-bottom: 0.25rem;
}

.contact-detail {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.cta-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.cta-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-container p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.cta-container i {
  margin-right: 10px;
}

.cta-container .link-whatsapp {
  padding-top: 1rem; 
  padding-bottom: 1rem;
}
.cta-info-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.space-y-6{
  display: flex; 
  flex-direction: column; 
  gap: 1rem;
}

@media (min-width: 1024px) {
  #inicio {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
  }

  h1 {
    font-size: 3.75rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .services-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: repeat(1, 1fr);
  }

}

@media (min-width: 640px) {

  #inicio h1,
  #servucis h1,
  #galeria h1,
  #contato h1  {
    font-size: 3rem;
  }

  #inicio p,
  #servucis p {
    font-size: 1.25rem;
  }

  .button-group {
    flex-direction: row;
  }

  .btn {
    width: auto;
  }

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