@import url('https://fonts.googleapis.com/css2?family=Kanchenjunga:wght@400;500;600;700&family=Pinyon+Script&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --color-bg: #ffffff;
  --color-text: #262626;
  --color-text-secondary: #666666;
  --color-accent: #FFD700;
  --font-base: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-Destaque: 'Kanchenjunga', sans-serif;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
span,
a,
h3 {
  color: #fff;
}

h1 {
  font-weight: 900;
  letter-spacing: 0.5px;
}



/* Tamanhos base para mobile */
h1 {
  font-size: 1.3rem;
}

h2 {
  font-size: 1.1rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 0.95rem;
}

h5 {
  font-size: 0.9rem;
}

h6 {
  font-size: 0.85rem;
}

p {
  font-size: 0.95rem;
}

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.1rem;
  }

  h6 {
    font-size: 1rem;
  }

  p {
    font-size: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.3rem;
  }

  h6 {
    font-size: 1.1rem;
  }

  p {
    font-size: 1.8rem;
  }
}


.intro-section {
  background-color: #000;
  width: 100%;
  margin: 0 auto;


}

section {
  padding: 10px;

}

section>div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 40px;
}

.intro-section>div {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/Arquitetura/secao\ inicial.jpg') center center/cover no-repeat;
  backdrop-filter: blur(5px);
  min-height: 400px;
  padding: 40px 30px;
}

.intro-section>div {
  position: relative;
  z-index: 1;
}

.intro-section>div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* opcional: escurece o fundo para melhor leitura */
  z-index: -1;
}

.intro-section>div>div {
  width: 50%;
}

.intro-section .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.intro-section .info h1 {
  font-family: var(--font-Destaque);
  line-height: 1.2;
}



.intro-section .info button {
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}

.intro-section .info button:hover {
  color: #111;
  cursor: pointer;
}

.intro-section .info a:first-child {
  /* Estilo base (Mobile First) */
  color: #111;
  width: 20%;
}

.intro-section .info button:last-child {
  /* Estilo base (Mobile First) */
  background: #fff;
  color: #111;
  border: 2px solid #111;
  width: 50%;
}

.intro-section .info .container-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.intro-section .info .container-button a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  border-radius: 7px;
  border: none;
  text-align: center;
}

.intro-section .image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mobile First (default) */

/* Tablet */
@media (max-width: 1024px) {
  .intro-section>div {
    flex-direction: column;
    width: 90%;
    min-height: 350px;
    padding: 30px 10px;
    gap: 24px;
  }

  .intro-section>div>div {
    width: 100%;
  }

  /* .intro-section .info h1 {
    font-size: 2rem;
  }
  .intro-section .info p {
    font-size: 1.5rem;
  } */
  .intro-section .info button:first-child,
  .intro-section .info button:last-child {
    width: 60%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .intro-section>div {
    flex-direction: column;
    min-height: 250px;
    padding: 20px 5px;
    gap: 16px;
  }

  /* .intro-section .info h1 {
    font-size: 1.3rem;
  }
  .intro-section .info p {
    font-size: 0.95rem;
  } */
  .intro-section .info .container-button {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .intro-section .info button:first-child,
  .intro-section .info button:last-child {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }

  .intro-section .image img {
    border-radius: 6px;
  }
}

/* Desktop (larger screens) */
@media (min-width: 1025px) {
  .intro-section>div {
    flex-direction: row;
    width: 90%;
    min-height: 400px;
    padding: 40px 30px;
    gap: 40px;
  }

  .intro-section>div>div {
    width: 50%;
  }

  .intro-section .info button:first-child {
    width: 20%;
  }

  .intro-section .info button:last-child {
    width: 50%;
  }
}


.intro-section .escolherRege {
  background-image: none;
  margin-top: 50px;
}

.intro-section .escolherRege img {
  width: 100%;
  height: auto;
  max-height: 1000px;
  border-radius: 8px;
}

.intro-section .escolherRege .info h1 {
  text-align: center;
}

.intro-section .escolherRege .info p {
  text-align: left;
}

/* Container principal */
.section-categoria {
  width: 100%;
  padding-top: 50px;
  box-sizing: border-box;
}

/* Wrapper interno */
.section-categoria>div {
  width: 90%;
  max-width: 1200px;
  /* limita para telas muito grandes */
  margin: 0 auto 60px auto;
  /* centraliza horizontalmente */
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  /* evita corte em telas menores */
  box-sizing: border-box;
}

/* Título */
.section-categoria>h1 {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-Destaque);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  font-size: 2.5rem;
  /* base desktop */
}

/* Títulos internos */
.section-categoria h2,
.section-categoria h3 {
  font-family: var(--font-Destaque);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

/* Imagem principal */
.ContainerImgequipamento img {
  width: 100%;
  max-width: 600px;
  /* não ultrapassa */
  height: auto;
  border-top-right-radius: 30%;
  object-fit: cover;
}

/* Container de categorias */
.ContainerCategoria {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  /* ocupa espaço restante */
  min-width: 280px;
  /* evita corte */
  box-sizing: border-box;
}

/* Divisão de cards */
.divisao {
  display: flex;
  flex-wrap: wrap;
  /* quebra linha se necessário */
  gap: 25px;
  justify-content: space-between;
}

/* Cada card */
.divisao>div {
  flex: 1 1 250px;
  /* ocupa pelo menos 250px, cresce se houver espaço */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.divisao img {
  width: 100%;
  max-width: 300px;
  height: 250px;
  object-fit: cover;
  border-top-right-radius: 30%;
}

/* Ícone Instagram */
.containerIconeInstagram {
  text-align: right;
}

.containerIconeInstagram i {
  font-size: 10rem;
}

.instagram-icon {
  font-size: 40px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Tablet */
@media (max-width: 1024px) {
  .section-categoria>div {
    flex-direction: column;
    width: 95%;
    gap: 30px;
  }

  .divisao {
    justify-content: center;
  }

  .divisao>div {
    flex: 1 1 200px;
  }

  .ContainerImgequipamento img {
    max-width: 100%;
    height: auto;
  }

  .containerIconeInstagram i {
    font-size: 6rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section-categoria>div {
    flex-direction: column;
    width: 100%;
  }

  .divisao {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .divisao>div {
    flex: 1 1 100%;
  }

  .ContainerCategoria {
    width: 100%;
  }

  .ContainerImgequipamento {
    padding: 15px;
  }

  .ContainerImgequipamento h3 {
    text-align: center;
  }

  .containerIconeInstagram i {
    font-size: 5rem;
  }
}

/* ------------------------------ */
/*   SEÇÃO EXPO / ARQUITETURA     */
/* ------------------------------ */

.expoSection {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: #fafafa;
}

.expoContainer {
  width: 100%;
  max-width: 1600px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

/* Badge */
.expoBadge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
  background: #f1f1f1;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Título */
.expoTitle {
  font-family: var(--font-Destaque);
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  margin: 20px 0 25px 0;
  color: var(--color-text);
}

/* Descrição */
.expoDesc {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  max-width: 720px;
  margin-bottom: 40px;
}

/* Galeria da esquerda */
.expoGallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.expoGallery img {
  width: 90%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.3s ease;
}

.expoGallery img:hover {
  transform: scale(1.02);
}

/* Imagem destaque da direita */

.expoFeature img {
  width: 80%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.expoFeature img:hover {
  transform: translateY(-6px);
}


/* ------------------------------ */
/* RESPONSIVIDADE                 */
/* ------------------------------ */

@media (max-width: 1100px) {
  .expoContainer {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .expoFeature img {
    max-width: 800px;
    margin: 0 auto;
    display: block;
  }

  .expoGallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .expoSection {
    padding: 50px 15px;
  }

  .expoTitle {
    font-size: 36px;
  }

  .expoDesc {
    font-size: 16px;
  }

  .expoFeature img {
    border-radius: 16px;
  }
}

.containerConnectRege {
  background-color: #000;
  color: #fff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.connect-wrapper {
  width: 85%;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.containerConnectRege h1 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 42px);
}

.Info {
  flex: 1;
  min-width: 320px;
}

.Info p {
  margin-bottom: 30px;
  color: #ccc;
  line-height: 1.7;
  max-width: 520px;
  font-size: clamp(15px, 2vw, 18px);
}

.buttonConheca {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(45deg, #FFD700, #FFB400);
  color: #111;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, background 0.3s;
  font-size: 16px;
}

.buttonConheca:hover {
  background: linear-gradient(45deg, #FFB400, #FFD700);
  transform: translateY(-3px);
}

.containerVideo {
  flex: 1;
  min-width: 320px;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ========================== */
/* ANIMAÇÕES PROFISSIONAIS */
/* ========================== */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.9s ease-out forwards;
}

/* ordem das animações */
.reveal.delay-1 { animation-delay: .2s; }
.reveal.delay-2 { animation-delay: .4s; }
.reveal.delay-3 { animation-delay: .6s; }


.footer-bottom {
  text-align: center;
  color: #ccc;
  font-size: 0.85rem;
  border-top: 1px solid #333;
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #000;
}

@media (max-width: 600px) {
  .footer-column h3 {
    font-size: 1rem;
  }
}