* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  color: #2c2c2c;
  background-color: #2c3350; 
}

.navbar {
  background: #313C5D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  position: relative;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-left: auto;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

.navbar a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; 
  transition: all 0.3s ease;
}

.btn-contato:hover {
  box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff; 
  transition: all 0.3s ease;
}

.btn-contato {
  position: absolute;
  right: 30px;
  background: #fff;
  color: #313C5D !important;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  top: 25px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.active ul {
  transform: translateX(0);
}


/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  top: 25px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.active ul {
  transform: translateX(0);
}

.hero {
  background: url("img/capa.png") center/cover no-repeat;
  height: 400px;
  position: relative;
}

.hero .overlay {
  background: rgba(255,255,255,0.1);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #2c3350;
}

.hero h1 {
  font-family: 'Style Script', cursive; 
  font-size: 100px;
  font-weight: 300;
  margin-bottom: 10px;
}

/* --------------------- NOVA PÁGINA --------------------- */
.portfolio-section {
  padding: 60px 20px;
  background-color: #2c3350; 
  text-align: center;
}

.portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px; 
  font-weight: 300;
  color: #fff;
}

.linha {
  width: 230px;       
  height: 2px;        
  background-color: white;  
  margin: 20px auto; 
  border-radius: px; 
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible; 
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
 aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  margin: 0 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2em;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  color: #313C5D;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  background-color: #e0edfa;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 10px; 
}

.carousel-btn.next {
  right: 10px;
}


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(44, 51, 80, 0.92);
}

.modal-content {
  width: 100%;
  max-width: 96vw;   
  max-height: 85vh;  
  object-fit: contain;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.portfolio-section-novo {
  padding: 10px 20px;
  background-color: #2c3350; 
  text-align: center;
}

.portfolio-title-novo {
  font-family: 'Playfair Display', serif;
  font-size: 30px; 
  font-weight: 300;
  color: #fff;
}

.linha-novo {
  width: 300px;       
  height: 2px;        
  background-color: white;  
  margin: 20px auto; 
  border-radius: px; 
}

.carousel-container-novo {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible; 
}

.carousel-track-novo {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
}

.carousel-track-novo::-webkit-scrollbar {
  display: none;
}

.carousel-track-novo img {
 aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  margin: 0 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-track-novo img:hover {
  transform: scale(1.05);
}

.carousel-btn-novo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2em;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  color: #313C5D;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-btn-novo:hover {
  background-color: #e0edfa;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-novo.prev {
  left: 10px; 
}

.carousel-btn-novo.next {
  right: 10px;
}


.modal-novo {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(44, 51, 80, 0.92);
}

.modal-content-novo {
  width: 100%;
  max-width: 96vw;   
  max-height: 85vh;  
  object-fit: contain;
  border-radius: 12px;
}

.close-novo {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.portfolio-section-novo-estrutura {
  padding: 40px 20px 80px 20px;
  background-color: #2c3350; 
  text-align: center;
  margin-top: 22px;
}

.portfolio-title-novo-estrutura {
  font-family: 'Playfair Display', serif;
  font-size: 30px; 
  font-weight: 300;
  color: #fff;
}

.linha-novo-estrutura {
  width: 515px;       
  height: 2px;        
  background-color: white;  
  margin: 20px auto; 
  border-radius: px; 
}

.carousel-container-novo-estrutura {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible; 
}

.carousel-track-novo-estrutura {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
}

.carousel-track-novo-estrutura::-webkit-scrollbar {
  display: none;
}

.carousel-track-novo-estrutura img {
  width: auto;            
  height: 400px;          
  max-width: none;       
  object-fit: cover;     
  margin: 0 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-track-novo-estrutura img:hover {
  transform: scale(1.05);
}

.carousel-btn-novo-estrutura {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2em;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  color: #313C5D;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-btn-novo-estrutura:hover {
  background-color: #e0edfa;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-novo-estrutura.prev {
  left: 10px; 
}

.carousel-btn-novo-estrutura.next {
  right: 10px;
}


.modal-novo-estrutura {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(44, 51, 80, 0.92);
}

.modal-content-novo-estrutura {
  width: 100%;
  max-width: 96vw;   
  max-height: 85vh;  
  object-fit: contain;
  border-radius: 12px;
}

.close-novo-estrutura {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* --------------------- RODAPÉ --------------------- */
.rodape {
  background-color: #ffffff;
  color: #313C5D;
  padding: 50px 20px 20px 20px;
  font-family: 'Playfair Display', serif;
}

.rodape-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.rodape-logo h2 {
  font-family: 'Style Script', cursive;
  font-weight: 250px;
  font-size: 36px;
  margin-bottom: 20px;
}

.rodape-links h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.rodape-links ul {
  list-style: none;
  padding: 0;
}

.rodape-links li {
  margin-bottom: 10px;
}

.rodape-links a {
  color: #313C5D;
  text-decoration: none;
  transition: color 0.3s;
}

.rodape-links a:hover {
  color: #313C5D;
  text-decoration: underline;
}

.rodape-redes {
  text-align: center; 
}

.social-icons {
  display: flex;
  justify-content: center; 
  gap: 20px; 
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  text-decoration: none; 
}

.social-icons img {
  width: 40px;  
  height: 40px;
}

.rodape-contato p {
  margin: 5px 0;
  font-size: 16px;
}

.rodape-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #313C5D;
}

.rodape-credits {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.rodape-credits a {
  color: #313C5D;
  cursor: pointer;
  text-decoration: none;
}

.rodape-credits a:hover {
  color: #313C5D;
  text-decoration: underline;
}

.rodape-credits p {
  margin: 5px 0;
}

@media (max-width: 768px) {

  .btn-contato {
    display: none;
  }

  /* Remove barra lateral */
  body, html {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* Navbar */
  .navbar {
    padding: 15px 10px;
  }

  .navbar ul {
    gap: 15px;
  }

  .navbar a {
    font-size: 14px;
  }

  .btn-contato {
    right: 10px;
    padding: 8px 14px;
    font-size: 12px;
  }
/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 1001;
}

.navbar.active .hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu completo full-screen */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-left: auto;
  transition: transform 0.3s ease-in-out;
}

  .navbar ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #313C5D;
    gap: 32px;
    transform: translateY(-100%);
    z-index: 1000;
  }

  .navbar.active ul {
    transform: translateY(0);
  }

  /* Botão contato dentro do menu */
  .navbar ul li:last-child {
    margin-top: 20px;
  }

  .navbar ul li a {
    margin: 0;
  }

  .btn-contato {
    position: static;
    margin-top: 20px;
    background: #fff;
    color: #313C5D !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
  }

  

  .hamburger {
    display: flex;
  }

  /* Quando o menu estiver ativo */
  .navbar.active .btn-contato {
    display: inline-flex;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;

    background: #fff;
    color: #313C5D !important;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
  }

/* Hero */
  .hero {
    height: 480px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero p {
    font-size: 20px;
  }

  .hero .linha {
    width: 180px;
  }


/* Rodapé */
  .rodape-container {
    flex-direction: column;
    text-align: center;
  }

  .rodape-logo h2 {
    font-size: 28px;
  }

  .rodape-links h3 {
    font-size: 18px;
  }

 .modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    /* fundo meio transparente */
    background-color: rgba(0, 0, 0, 0.7);

    /* centralização vertical + horizontal */
    align-items: center;
    justify-content: center;

    padding: 20px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
  }

  .close {
    position: fixed;
    top: 15px;
    right: 20px;
    font-size: 36px;
    color: #fff;
    z-index: 10000;
  }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;

  background-color: rgba(44, 51, 80, 0.92);

  /* CENTRALIZAÇÃO REAL */
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 100%;
  max-width: 96vw;   
  max-height: 90vh;  
  object-fit: contain;
  border-radius: 12px;
}

.close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
}

body.modal-open {
  overflow: hidden;
}

.modal[style*="display: flex"] ~ * {
  pointer-events: none;
}

.modal[style*="display: flex"] {
  pointer-events: auto;
}

.modal[style*="display: flex"] {
  position: fixed;
}

html:has(.modal[style*="display: flex"]) {
  overflow: hidden;
}

/* MODAL – SEGUNDO CARROSSEL (igual ao primeiro) */

 .modal-novo {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    /* fundo meio transparente */
    background-color: rgba(0, 0, 0, 0.7);

    /* centralização vertical + horizontal */
    align-items: center;
    justify-content: center;

    padding: 20px;
  }

  .modal-content-novo {
  width: 100%;
  max-width: 96vw;   
  max-height: 90vh;  
  object-fit: contain;
  border-radius: 12px;
}

  .close-novo {
    position: fixed;
    top: 15px;
    right: 20px;
    font-size: 36px;
    color: #fff;
    z-index: 10000;
  }

.modal-novo {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;

  background-color: rgba(44, 51, 80, 0.92);

  /* CENTRALIZAÇÃO REAL */
  align-items: center;
  justify-content: center;
}

.modal-novo-content {
  width: 100%;
  max-width: 96vw;   
  max-height: 90vh;  
  object-fit: contain;
  border-radius: 12px;
}

.close-novo {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
}

body.modal-novo-open {
  overflow: hidden;
}

.modal-novo[style*="display: flex"] ~ * {
  pointer-events: none;
}

.modal-novo[style*="display: flex"] {
  pointer-events: auto;
}

.modal-novo[style*="display: flex"] {
  position: fixed;
}

html:has(.modal-novo[style*="display: flex"]) {
  overflow: hidden;
}

/* MODAL – TERCEIRO CARROSSEL */

.modal-novo-estrutura {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;

  background-color: rgba(44, 51, 80, 0.92);

  align-items: center;
  justify-content: center;

  padding: 20px;
}

.modal-content-novo-estrutura {
  width: 100%;
  max-width: 96vw;   
  max-height: 90vh;  
  object-fit: contain;
  border-radius: 12px;
}

.close-novo-estrutura {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

.linha-novo-estrutura {
  width: 250px;       
  height: 2px;        
  background-color: white;  
  margin: 20px auto; 
}

.linha-novo {
  width: 250px;       
  height: 2px;        
  background-color: white;  
  margin: 20px auto; 
}

}