/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.container p{
    font-size: large;
}
/* HEADER */
.header {
    background: #1b1e2c;
    padding: 20px 0; 
}

.nav-container {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 70px;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;

    color: #b8b7b7;
    font-size: 20px;
    letter-spacing: 2px;
}
.logo p{
    font-size: small;
}
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #aaaaaa;
    font-weight: 500;
}

/* HERO */
.hero {
    background: url('images/header.png') center/cover no-repeat;
    height: 80vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 600px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 25px;
}

/* BUTTONS */
.btn {
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary {
    background: #0f3d2e;
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-secondary {
    background: #c89b3c;
    color: white;
    margin-top: 20px;
}

/* FEATURES */
.features {
    font-family: 'Montserrat', sans-serif;
    background: url(images/features.jpg);
    padding: 40px 0;
}

.features-grid {
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 150px;
    text-align: center;
    font-weight: 800;
    font-size: medium;
}

/* PRESENCE */
.presence {
    background: url(images/presence.jpg);
    padding: 60px 0;
    text-align: center;
}

.presence p{
    margin-left: 51px;
    margin-right: 51px;;
}

.presence h2{
    color: #333;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
        font-family: "Archivo Black", sans-serif;
}

.presence h2::before,
.presence h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: rgba(39, 39, 39, 0.4);
}

.presence h2::before {
    right: 100%;
    margin-right: 20px;
}

.presence h2::after {
    left: 100%;
    margin-left: 20px;
}

.materials-grid {
    margin-top: 3rem;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: end;   /* empurra o grid para direita */
}

.material-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

.material-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.material-card h3 {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.material-card:hover {
    transform: translateY(-5px);
}

/* SERVICES */
.services {
    opacity: 80%;
    background: url(images/services.jpg);
    padding: 60px 0;
    text-align: center;
}

.services h2{
    color: #333;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
        font-family: "Archivo Black", sans-serif;
}

.services h2::before,
.services h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: rgba(39, 39, 39, 0.4);
}

.services h2::before {
    right: 100%;
    margin-right: 20px;
}

.services h2::after {
    left: 100%;
    margin-left: 20px;
}

.services-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    color: #ffffff;
    background: rgb(23, 32, 43);
    border-radius: 8px;
    overflow: hidden; /* IMPORTANTE */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    margin: 20px 0 10px;
}

.card p {
    padding: 0 20px 25px;
}


/* STRUCTURE */
.structure {
    background: url(images/estrutura.jpg);
    color: white;
    padding: 50px 0;
    text-align: center;
}
.structure h2{
    color: #c89b3c;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
        font-family: "Archivo Black", sans-serif;
}

.structure h2::before,
.structure h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: #c89c3c7c;
}

.structure h2::before {
    right: 100%;
    margin-right: 20px;
}

.structure h2::after {
    left: 100%;
    margin-left: 20px;
}

.companies {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
}

/* STRENGTH */
.strength {
    position: relative;
    background: url(images/solidez.2.avif) center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.strength::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 30, 0.75); /* escurece imagem */
}

.strength .container {
    position: relative;
    z-index: 2;
}

.strength h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.strength h2::before,
.strength h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.strength h2::before {
    right: 100%;
    margin-right: 20px;
}

.strength h2::after {
    left: 100%;
    margin-left: 20px;
}

.strength-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.strength ul {
    text-align: center;
    list-style: none;
    padding: 0;
}

.strength li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.strength .btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #c89b3c, #a67c2b);
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.strength .btn:hover {
    transform: translateY(-3px);
}
/* FOOTER */
.footer {
    background: url(images/solidez3.avif);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer .slogan {
    margin-top: 10px;
    font-style: italic;
    opacity: 0.8;
}
.footer strong{
    font-family: 'Montserrat', sans-serif;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .features-grid,
    .materials-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid,
    .materials-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }
}


/*Empresas side*/

/*ABOUT*/
.about {
    background: url(images/presence.jpg);
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.card {
    padding: 30px;
    text-align: left;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.card h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #c89b3c;
}

.card p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.card-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
}

.card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c89b3c;
    font-weight: bold;
}


.ag-format-container {
  width: 1142px;
  margin: 0 auto;
}

/*SOLIDEZ2*/
body {
  background:url(images/solidez3.avif);
}
.ag-courses_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  padding: 50px 0;
}
.ag-courses_item {
  -ms-flex-preferred-size: calc(50% - 30px);
  flex-basis: calc(50% - 30px);

  margin: 0 15px 30px;

  overflow: hidden;

  border-radius: 28px;
}
.ag-courses-item_link {
  display: block;
  padding: 30px 20px;
  background-color: #121212;

  overflow: hidden;

  position: relative;
}
.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
  text-decoration: none;
  color: #FFF;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
}
.ag-courses-item_title {
  min-height: 87px;
  margin: 0 0 25px;

  overflow: hidden;

  font-weight: bold;
  font-size: 30px;
  color: #FFF;

  z-index: 2;
  position: relative;
}
.ag-courses-item_date-box {
  font-size: 18px;
  color: #FFF;

  z-index: 2;
  position: relative;
}
.ag-courses-item_date {
  font-weight: bold;
  color: #f9b234;

  -webkit-transition: color .5s ease;
  -o-transition: color .5s ease;
  transition: color .5s ease
}
.ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: #f9b234;

  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;

  border-radius: 50%;

  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}




@media only screen and (max-width: 979px) {
  .ag-courses_item {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .ag-courses-item_title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

}
@media only screen and (max-width: 639px) {
  .ag-courses_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .ag-courses-item_title {
    min-height: 72px;
    line-height: 1;

    font-size: 24px;
  }
  .ag-courses-item_link {
    padding: 22px 40px;
  }
  .ag-courses-item_date-box {
    font-size: 16px;
  }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: #333;
    background: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   PRODUTOS - ESTILO PREMIUM
================================ */

.product-section {
    padding: 120px 0;
    background: url(images/presence.jpg); /* fundo neutro sofisticado */
}

.product-section-alt {
    padding: 120px 0;
    background: #f4f2ef;
}

.product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* IMAGEM */

.product-image img,
.product-image-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BLOCO DO TEXTO */

.product-content {
    background: #f7f5f1;
    display: flex;
    align-items: center;
    position: relative;
}

/* leve sombra para parecer painel */
.product-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4);
    mix-blend-mode: overlay;
}

.product-text {
    padding: 70px;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

/* TIPOGRAFIA */

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2e2e2e;
}

.product-subtitle {
    font-size: 20px;
    color: #8a8177;
    margin-bottom: 35px;
}

/* LISTA PRINCIPAL */

.details {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.details li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #5f5a55;
}

/* LINHA DIVISÓRIA IGUAL AO EXEMPLO */

.divider {
    height: 1px;
    background: #d8d4cf;
    margin: 30px 0;
}

/* INDICADO PARA */

.product-text h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #3a3632;
}

.applications {
    list-style: none;
    padding: 0;
}

.applications li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #5f5a55;
    position: relative;
    padding-left: 20px;
}

.applications li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8913f;
    font-weight: bold;
}

/* LINK */

.btn-link {
    display: inline-block;
    margin-top: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #9c7a36;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-link:hover {
    opacity: 0.7;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .product-wrapper {
        grid-template-columns: 1fr;
    }

    .product-text {
        padding: 40px;
    }

    .product-title {
        font-size: 36px;
    }
}


/* IMAGEM */

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LADO DO TEXTO */

.product-content {
    background: #a8a49daf; /* fundo claro do texto */
    display: flex;
    align-items: center;
}

.product-text {
    padding: 60px;
    max-width: 520px;
}

/* TIPOGRAFIA */

.product-text h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-text h4 {
    font-size: 20px;
    color: #777;
    margin-bottom: 30px;
}

.product-text h5 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
}

/* LISTAS */

.details {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.details li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

.product-text ul:not(.details) {
    list-style: none;
    padding: 0;
}

.product-text ul:not(.details) li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* LINK */

.btn-link {
    display: inline-block;
    margin-top: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #8a6d3b;
    transition: 0.3s;
}

.btn-link:hover {
    opacity: 0.7;
}


/* DIFERENCIAIS */

.diferenciais {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.diff-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    font-weight: 500;
}

/* COMERCIAL */

.comercial {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.comercial ul {
    list-style: none;
    margin: 20px 0;
}

.comercial ul li {
    margin-bottom: 10px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   INFORMAÇÕES TÉCNICAS PREMIUM
================================ */

.info-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e0db;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9b948b;
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    color: #3c3834;
    font-weight: 500;
}

.info-value.destaque {
    color: #b8913f;
    font-weight: 600;
}

/* Título da seção */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #2e2a26;
}

/* Aplicações */

.applications {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.applications li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #5a5550;
}

.applications li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b8913f;
    font-size: 18px;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    font-family: 'Inter', sans-serif;
    color: #2e2a26;
}

/* HERO SECTION */

.hero-header {
    position: relative;
    height: 100vh;
    background: url("images/HeaderBgProdutos.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* OVERLAY CLARO PARA ELEGÂNCIA */

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.55) 100%,
        rgba(255, 255, 255, 0.60) 70%,
        rgba(255, 255, 255, 0.68) 40%,
        rgba(255, 255, 255, 0.75) 0%
    );
}


/* CONTEÚDO */

.hero-header-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
}

/* TÍTULO PRINCIPAL */

.hero-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    letter-spacing: 6px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c2926;
}

/* SUBTÍTULO */

.hero-header-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    color: #a77f2a;
    margin-bottom: 25px;
}

/* TEXTO */

.hero-header-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5550;
    margin-bottom: 40px;
}

/* BOTÃO */

.btn-primary {
    display: inline-block;
    padding: 14px 38px;
    background: #b8913f;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #9f7a2f;
    transform: translateY(-2px);
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SECTION BACKGROUND */

.diferenciais {
    min-height: 100vh;
    background: url("images/marble-bg.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

/* CAIXA CENTRAL */

.diferenciais-box {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    padding: 70px 90px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* TÍTULO */

.diferenciais-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2e2a26;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* LINHA SUPERIOR */

.divider {
    width: 80px;
    height: 2px;
    background: #b8913f;
    margin: 0 auto 50px auto;
}

/* LISTA */

.lista-diferenciais {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.lista-diferenciais li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #4a4540;
    margin-bottom: 22px;
    position: relative;
    padding-left: 40px;
    line-height: 1.6;
}

/* ÍCONE CHECK DOURADO */

.lista-diferenciais li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #b8913f;
    border: 2px solid #b8913f;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* LINHA INFERIOR */

.bottom-divider {
    width: 120px;
    height: 2px;
    background: #b8913f;
    margin: 0 auto;
}

.logos-foot1{
    margin-right: 3rem;
    width: 150px;
}
.logos-foot{
    width: 100px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero-projetos {
    background: url("images/projetosilustrativos.png") center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    background: rgba(0,0,0,0.4);
    width: 100%;
    padding: 80px 0;
}

.btn-gold {
    background: #b89a5a;
    padding: 12px 28px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ============================= */
/* BLOCO PROJETO PREMIUM */
/* ============================= */

.projeto-bloco {
    background: url(images/marble-bg.png) center center no-repeat;
    background-size: cover;
    padding: 120px 0;
}

/* Container centralizado */
.container-projeto {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid 2 colunas */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* ------------------ */
/* TEXTO */
/* ------------------ */

.projeto-texto h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2b2b2b;
}

.projeto-texto h3 {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    margin-bottom: 35px;
}

/* Parágrafo destaque com linha dourada */
.texto-destaque {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    padding-left: 25px;
    border-left: 3px solid #c8a96a;
    margin-bottom: 35px;
}

/* Lista */
.lista-aplicacoes {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.lista-aplicacoes li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    position: relative;
    padding-left: 28px;
}

/* Check dourado */
.lista-aplicacoes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8a96a;
    font-weight: bold;
}

/* Botão premium */
.btn-gold {
    display: inline-block;
    padding: 14px 28px;
    background: #c8a96a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background: #b8934f;
}

/* ------------------ */
/* IMAGEM */
/* ------------------ */

.projeto-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ------------------ */
/* RESPONSIVO */
/* ------------------ */

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .projeto-texto h2 {
        font-size: 30px;
    }

    .texto-destaque {
        font-size: 18px;
    }
}


.projeto-imagem img {
    width: 100%;
    border-radius: 6px;
}

.projeto-texto ul {
    margin: 20px 0;
}

.galeria {
    padding: 60px 0;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-galeria img {
    width: 100%;
    border-radius: 6px;
}

