:root {

  --color-orange: #B5343A;

  --color-red: #B5343A;

  --color-charcoal: #373435;

  --color-gray: #f7f7f7;

  --color-dark-gray: #5c5c5c;

  --max-width: 1200px;

  font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;

}



* {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



body {

  font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;

  background-color: #fff;

  color: var(--color-charcoal);

  line-height: 1.6;

}



body.no-scroll {

  overflow: hidden;

}



img {

  max-width: 100%;

  height: auto;

  display: block;

}



ul {

  list-style: none;

}



a {

  color: inherit;

  text-decoration: none;

}



.container {

  width: min(92%, var(--max-width));

  margin-inline: auto;

}



.sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;

}



header {

  position: sticky;

  top: 0;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.97);

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

}



.navbar {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 1rem 0;

}



.nav-brand img {

  width: 160px;

}



.nav-links {

  display: flex;

  position: fixed;

  inset: 0;

  background: rgba(55, 52, 53, 0.98);

  flex-direction: column;

  justify-content: center;

  gap: 1.5rem;

  align-items: center;

  transform: translateY(-100%);

  transition: transform 0.3s ease;

  text-align: center;

  width: 100%;

}



.nav-links a {

  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 0.35rem;

  color: #fff;

  font-weight: 600;

  font-size: 1.1rem;

  padding: 0.15rem 0;

  transition: transform 0.25s ease, color 0.25s ease;

}



.nav-links a::after {

  content: '';

  position: absolute;

  left: 0;

  bottom: -0.35rem;

  width: 100%;

  height: 2px;

  border-radius: 2px;

  background: rgba(181, 52, 58, 0.85);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.25s ease;

}



.nav-links a:hover,

.nav-links a:focus-visible {

  transform: translateY(-3px);

}



.nav-links a:hover::after,

.nav-links a:focus-visible::after {

  transform: scaleX(1);

}



.nav-links.open {

  transform: translateY(0);

}



.hamburger {

  width: 32px;

  height: 22px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  cursor: pointer;

}



.hamburger span {

  display: block;

  height: 3px;

  border-radius: 2px;

  background: var(--color-charcoal);

  transition: all 0.3s ease;

}



.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0.9rem 1.5rem;

  font-weight: 600;

  border-radius: 999px;

  background: var(--color-orange);

  color: #fff;

  border: none;

  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;

}



.btn:hover,

.btn:focus {

  transform: translateY(-2px);

  box-shadow: 0 10px 20px rgba(246, 139, 52, 0.2);

}



.hero {

  padding: 6rem 0 3rem;

  background: linear-gradient(135deg, rgba(246, 139, 52, 0.1), rgba(181, 52, 58, 0.08));

}



.hero-grid {

  display: grid;

  gap: 2rem;

}



.hero .container {

  text-align: center;

}



.hero-slider {

  position: relative;

  min-height: 340px;

  border-radius: 1.2rem;

  overflow: hidden;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);

}



.hero-slider img {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition: opacity 1s ease;

}



.hero-slider img.active {

  opacity: 1;

}



.hero h1 {

  font-size: clamp(2.2rem, 6vw, 3.5rem);

  margin-bottom: 1rem;

}



.mission-card .card-content {

  text-align: center;

}



.mission-card h3 {

  margin-top: 0.5rem;

}



.hero p {

  color: var(--color-dark-gray);

  margin-bottom: 1.5rem;

}



.section {

  padding: 4rem 0;

}



.section .container {

  text-align: center;

}



.section-title {

  text-transform: uppercase;

  letter-spacing: 0.15em;

  color: var(--color-red);

  font-weight: 700;

  margin-bottom: 0.5rem;

  font-size: 0.85rem;

}



.section h2 {

  font-size: clamp(1.8rem, 4vw, 2.8rem);

  margin-bottom: 1.5rem;

}



.section-alt {

  background: var(--color-gray);

}



.grid {

  display: grid;

  gap: 1.5rem;

}



.card {

  background: #fff;

  border-radius: 1rem;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.card:hover {

  transform: translateY(-6px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

}



.card-content {

  padding: 1.5rem;

}



.portfolio-card > img {

  display: block;

  width: 100%;

  height: 240px;

  object-fit: cover;

  border-radius: 1rem 1rem 0 0;

}



.hero-slider {

  position: relative;

}



.hero-slider-overlay {

  position: absolute;

  inset: auto 0 0 0;

  padding: 1.2rem;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);

  color: #fff;

  display: grid;

  gap: 0.2rem;

  border-radius: 0 0 1.2rem 1.2rem;

}



.hero-slider-overlay strong {

  font-size: 1.05rem;

}



.hero-slider-overlay span {

  font-size: 0.9rem;

  opacity: 0.85;

}



.badge {

  display: inline-block;

  padding: 0.35rem 0.9rem;

  border-radius: 999px;

  font-size: 0.85rem;

  margin-top: 0.5rem;

  font-weight: 600;

  background: rgba(55, 52, 53, 0.08);

}



.badge.status-lancamento {

  background: rgba(181, 52, 58, 0.12);

  color: var(--color-red);

}



.badge.status-obras {

  background: rgba(246, 139, 52, 0.15);

  color: var(--color-orange);

}



.badge.status-entregue {

  background: rgba(66, 185, 131, 0.2);

  color: #2d7a50;

}



.diferenciais {

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

}



.diferencial {

  padding: 1.5rem;

  border: 1px solid rgba(55, 52, 53, 0.08);

  border-radius: 1rem;

  background: #fff;

}



.diferencial h3 {

  margin-bottom: 0.5rem;

  font-size: 1.1rem;

}



.gallery {

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

}



.gallery figure {

  border-radius: 0.8rem;

  overflow: hidden;

  background: var(--color-gray);

}



.gallery figcaption {

  padding: 0.8rem;

  background: #fff;

  font-weight: 600;

  text-align: center;

}



#servicos .gallery figure img,

.gallery figure img {

  width: 100%;

  height: 240px;

  object-fit: cover;

  display: block;

}



.testimonials {

  position: relative;

}



.testimonial {

  display: none;

}



.testimonial.active {

  display: block;

}



.testimonial p {

  font-style: italic;

  margin-bottom: 1rem;

}



.testimonial strong {

  color: var(--color-red);

}



.timeline {

  border-left: 3px solid rgba(246, 139, 52, 0.3);

  padding-left: 1.5rem;

  margin-left: 0.5rem;

}



.timeline-item {

  margin-bottom: 1.5rem;

}



.timeline-item h3 {

  margin-bottom: 0.3rem;

}



.certifications {

  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

}



.certifications span {

  padding: 0.8rem 1.2rem;

  border-radius: 999px;

  border: 1px solid rgba(55, 52, 53, 0.15);

  font-weight: 600;

}



.filters {

  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

  margin-bottom: 1.5rem;

}



.filters select {

  padding: 0.8rem 1rem;

  border-radius: 999px;

  border: 1px solid rgba(55, 52, 53, 0.2);

  font-size: 0.95rem;

}



.services-grid {

  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

}



.service-icon {

  width: 64px;

  height: 64px;

  border-radius: 16px;

  background: rgba(246, 139, 52, 0.15);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 1rem;

  margin-inline: auto;

}



.services-grid .card-content {

  text-align: center;

}



.process-steps {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  gap: 1rem;

}



.process-step {

  border-left: 4px solid var(--color-orange);

  padding: 1rem;

  background: var(--color-gray);

  border-radius: 0.6rem;

}



.partners-grid {

  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

}



.partner-card {

  border: 1px dashed rgba(55, 52, 53, 0.2);

  border-radius: 1rem;

  padding: 1.5rem;

  text-align: center;

  background: #fff;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.partner-card img {

  width: 120px;

  margin-inline: auto;

  filter: grayscale(0.2);

}



.partner-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

}



.contact-form {

  display: grid;

  gap: 1rem;

}



.contact-form input,

.contact-form textarea,

.contact-form select {

  padding: 0.9rem 1rem;

  border-radius: 0.6rem;

  border: 1px solid rgba(55, 52, 53, 0.2);

  font-size: 1rem;

}



.contact-form .erro {

  border-color: var(--color-red);

}



.contact-form label {

  display: flex;

  flex-direction: column;

  gap: 0.35rem;

  text-align: left;

  font-weight: 600;

}



.contact-grid {

  align-items: flex-start;

}



.contact-grid {

  display: grid;

  gap: 2rem;

}



.map {

  border-radius: 1rem;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}



.rj-hero {

  background: linear-gradient(120deg, rgba(181, 52, 58, 0.12), rgba(55, 52, 53, 0.15));

  color: var(--color-charcoal);

}



.faq {

  border: 1px solid rgba(55, 52, 53, 0.12);

  border-radius: 1rem;

  padding: 1.5rem;

  background: #fff;

}



.faq-trigger {

  background: none;

  border: none;

  font-size: 1.1rem;

  font-weight: 600;

  text-align: center;

  width: 100%;

  padding: 0.5rem 0;

}



.faq-item + .faq-item {

  margin-top: 1rem;

  padding-top: 1rem;

  border-top: 1px solid rgba(55, 52, 53, 0.08);

}



.communiques {

  display: grid;

  gap: 1.5rem;

}



.communique {

  border-left: 4px solid var(--color-red);

  padding: 1.5rem;

  background: #fff;

  border-radius: 0.8rem;

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);

}



.communique small {

  display: block;

  margin-bottom: 0.5rem;

  color: var(--color-dark-gray);

}



.shortcuts {

  display: flex;

  flex-direction: column;

  gap: 1rem;

}



.shortcuts a {

  border-radius: 0.8rem;

  border: 1px solid rgba(55, 52, 53, 0.2);

  padding: 1rem;

  text-align: center;

  font-weight: 600;

}



.modal-backdrop {

  position: fixed;

  inset: 0;

  background: rgba(55, 52, 53, 0.72);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 1rem;

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.3s ease;

}



.modal-backdrop.active {

  opacity: 1;

  pointer-events: auto;

}



.modal-content {

  background: #fff;

  border-radius: 1rem;

  max-width: 520px;

  width: 100%;

  padding: 2rem;

  text-align: center;

  position: relative;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);

}



.modal-content h3 {

  font-size: 1.4rem;

  margin-bottom: 0.75rem;

}



.modal-content p {

  margin-bottom: 1rem;

  color: var(--color-dark-gray);

}



.modal-content .btn {

  width: 100%;

}



.modal-close {

  position: absolute;

  top: 1rem;

  right: 1rem;

  background: transparent;

  border: none;

  font-size: 1.5rem;

  cursor: pointer;

  color: var(--color-charcoal);

}



.whatsapp-button {

  position: fixed;

  bottom: 1.5rem;

  right: 1rem;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 60px;

  height: 60px;

  background: #1fc86a;

  color: #fff;

  border-radius: 50%;

  font-weight: 600;

  box-shadow: 0 18px 40px rgba(31, 200, 106, 0.35);

  z-index: 1200;

  padding: 0;

}



.whatsapp-button svg {

  width: 26px;

  height: 26px;

}



.footer {

  background: #5d5857;

  color: #fff;

  padding: 3rem 0 1.5rem;

}



.footer-grid {

  display: grid;

  gap: 1.5rem;

}



.footer a {

  color: #fff;

  opacity: 0.9;

}



.footer-bottom {

  margin-top: 1.5rem;

  font-size: 0.9rem;

  text-align: center;

  opacity: 0.8;

}



.footer-contact-links {

  margin-top: 1rem;

}



.footer-contact-links a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: #1fc86a;

  color: #fff;

  transition: transform 0.2s ease, box-shadow 0.2s ease;

  box-shadow: 0 14px 32px rgba(31, 200, 106, 0.35);

}



.footer-contact-links a svg {

  width: 22px;

  height: 22px;

}



.footer-contact-links a:hover {

  transform: translateY(-2px);

  box-shadow: 0 18px 38px rgba(31, 200, 106, 0.45);

}



.section-centered .container {

  text-align: center;

}



.section-centered .grid {

  text-align: left;

}



.section-centered .diferenciais {

  justify-items: center;

}



.section-centered .diferencial {

  text-align: center;

}



#obras .card-content {

  text-align: center;

}



#fotos-obras .gallery figcaption {

  text-align: center;

}



.section-centered .btn {

  margin-inline: auto;

}



.canais-grid {

  display: grid;

  gap: 1.5rem;

  justify-items: center;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

}



.canais-grid .card {

  width: 100%;

  text-align: center;

}



.page-recuperacao main .container {

  text-align: center;

}



.page-recuperacao .hero .container {

  text-align: center;

}



.page-recuperacao .faq p {

  text-align: center;

}



.page-recuperacao .communique {

  border-left: none;

  border-top: 4px solid var(--color-red);

  text-align: center;

}



.page-recuperacao .communique h3,

.page-recuperacao .communique p,

.page-recuperacao .communique small {

  text-align: center;

}



.page-recuperacao .shortcuts {

  justify-content: center;

}



.page-recuperacao .modal-content {

  text-align: center;

}



.modal-note {

  display: block;

  margin-top: 1rem;

  color: var(--color-dark-gray);

  font-size: 0.9rem;

}



.page-obras .card .card-content {

  text-align: center;

}



.page-obras .hero .container {

  text-align: center;

}



.page-obras .card > img {

  width: 100%;

  height: 220px;

  object-fit: cover;

  display: block;

}



.page-obras .card {

  overflow: hidden;

}



#obras .card > img {

  width: 100%;

  height: 220px;

  object-fit: cover;

  display: block;

}



#obras .card {

  overflow: hidden;

}



.modal-obra {

  max-width: min(1100px, 95vw);

  width: 95vw;

  height: 90vh;

  display: flex;

  flex-direction: column;

}



.modal-obra iframe {

  flex: 1;

  width: 100%;

  border: none;

  border-radius: 0.75rem;

  margin-top: 1rem;

  background: #fff;

}



body.modal-embed {

  background: transparent;

  padding: 1rem;

}



body.modal-embed header,

body.modal-embed footer,

body.modal-embed .navbar,

body.modal-embed .footer {

  display: none !important;

}



body.modal-embed main {

  margin: 0 auto;

  padding: 0;

}



@media (max-width: 767px) {

  .hero-grid,

  .section .container,

  .footer-grid {

    text-align: center;

  }



  .hero-grid .btn {

    width: 100%;

    justify-content: center;

  }



  .hero-grid .btn + .btn {

    width: 100%;

  }



  .grid {

    justify-items: center;

  }



  .footer-grid {

    justify-items: center;

  }

}



/* Media queries */

@media (min-width: 768px) {

  .nav-links {

    position: static;

    transform: none;

    flex-direction: row;

    justify-content: flex-end;

    align-items: center;

    background: transparent;

    gap: 2.4rem;

  }



  .nav-links a {

    color: var(--color-charcoal);

    font-size: 0.95rem;

    padding: 0.25rem 0;

  }



  .hamburger {

    display: none;

  }



  .hero-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    align-items: center;

  }



  .card-grid-3 {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }



  .contact-grid {

    grid-template-columns: 1fr 1fr;

  }



  .footer-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }



  .shortcuts {

    flex-direction: row;

  }



  .modal-content {

    padding: 2.5rem 3rem;

  }

}



@media (min-width: 992px) {

  .card-grid-4 {

    grid-template-columns: repeat(4, minmax(0, 1fr));

  }

}







.hero-obra .container {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  text-align: center;

  align-items: center;

}



.hero-obra-text {

  max-width: 720px;

  margin-inline: auto;

}



.hero-obra-media {

  width: 100%;

  display: flex;

  justify-content: center;

}



.hero-obra-media > img {

  width: min(520px, 100%);

  border-radius: 1.25rem;

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);

}



.hero-obra-slider {

  position: relative;

  width: min(520px, 100%);

  aspect-ratio: 16 / 9;

  border-radius: 1.25rem;

  overflow: hidden;

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);

  background: #f1efef;

}



.hero-obra-slides {

  position: absolute;

  inset: 0;

}



.hero-obra-slides img {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition: opacity 0.8s ease;

}



.hero-obra-slides img.active {

  opacity: 1;

}



.hero-obra-nav {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 42px;

  height: 42px;

  border-radius: 50%;

  border: none;

  background: rgba(255, 255, 255, 0.85);

  color: var(--color-charcoal);

  font-size: 1.6rem;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}



.hero-obra-nav span {

  line-height: 1;

}



.hero-obra-nav-prev {

  left: 0.75rem;

}



.hero-obra-nav-next {

  right: 0.75rem;

}



.hero-obra-progress {

  position: absolute;

  left: 1rem;

  right: 1rem;

  bottom: 0.85rem;

  height: 4px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.5);

  overflow: hidden;

}



.hero-obra-progress span {

  display: block;

  height: 100%;

  width: 0;

  background: var(--color-orange);

  transition: width 0.1s linear;

}



.hero-obra-countdown {

  position: absolute;

  top: 0.75rem;

  right: 0.75rem;

  background: rgba(55, 52, 53, 0.82);

  color: #fff;

  padding: 0.2rem 0.8rem;

  border-radius: 999px;

  font-size: 0.85rem;

  font-weight: 600;

}



.hero-obra-countdown span {

  font-weight: 700;

  margin: 0 0.25rem;

}



.hero-obra-thumbs {

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  display: flex;

  gap: 0.4rem;

  justify-content: center;

  padding: 0.4rem;

  background: rgba(0, 0, 0, 0.65);

  transform: translateY(100%);

  opacity: 0;

  pointer-events: none;

  transition: transform 0.3s ease, opacity 0.3s ease;

}



.hero-obra-slider:hover .hero-obra-thumbs,

.hero-obra-slider:focus-within .hero-obra-thumbs {

  transform: translateY(0);

  opacity: 1;

  pointer-events: auto;

}



.hero-obra-thumbs button {

  border: none;

  background: transparent;

  padding: 0;

  width: 56px;

  height: 42px;

  border-radius: 0.5rem;

  overflow: hidden;

  cursor: pointer;

  opacity: 0.7;

  transition: transform 0.2s ease, opacity 0.2s ease;

}



.hero-obra-thumbs button.active,

.hero-obra-thumbs button:hover {

  opacity: 1;

  transform: translateY(-2px);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);

  outline: 2px solid var(--color-orange);

}



.hero-obra-thumbs img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.obra-galeria {

  display: none;

}



.obra-descricao p {

  max-width: 680px;

  margin-inline: auto;

}

