/* RESET E CONFIGURAÇÕES GERAIS */
:root {
    --fundo-principal: #000000;
    --texto-principal: #ffffff;
    --detalhe-cinza: #666666;
    --fonte-titulo: 'Playfair Display', serif;
    --fonte-corpo: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--fundo-principal);
    color: var(--texto-principal);
    font-family: var(--fonte-corpo);
    line-height: 1.6;
    overflow-x: hidden;
}

/*  NAVBAR  */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

/* Estado inicial - Logo centralizada sem links */
.nav-branca .nav-container {
    justify-content: center;
}

.nav-branca {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.nav-branca #logo {
    filter: invert(0);
    transition: all 0.4s ease;
}

/* Esconde links no estado inicial */
.nav-branca #nav-links {
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: all 0.4s ease;
}

/* Estado no scroll - Com links */
.nav-transparente {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.nav-transparente .nav-container {
    justify-content: space-between;
    transition: all 0.4s ease;
}

.nav-transparente #logo {
    filter: invert(1);
    transition: all 0.4s ease;
}

/* Mostra links no estado scroll */
.nav-transparente #nav-links {
    opacity: 1;
    visibility: visible;
    width: auto;
    transition: all 0.4s ease;
}

/*  LOGO  */
#logo {
    height: auto;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 95px;
}

/*  LINKS NAVBAR */
.nav-links {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 40px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

/* Efeito hover com linha abaixo */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #f39c12;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
    transition: color 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    transition: width 0.3s ease;
}

/* HAMBURGER*/
#hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
    padding: 5px;
    transition: all 0.3s ease;
}

#hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-branca #hamburger span {
    background-color: #000;
    transition: all 0.3s ease;
}

/* Transform hamburger em X ao abrir */
#hamburger.ativo span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    transition: all 0.3s ease;
}

#hamburger.ativo span:nth-child(2) {
    opacity: 0;
    transition: all 0.3s ease;
}

#hamburger.ativo span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    transition: all 0.3s ease;
}

/* SEÇÕES */
.secao {
    padding: 100px 5% 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.8s ease;
}

.fundo-escuro {
    background-color: #111111;
    transition: all 0.8s ease;
}

h1 {
    font-family: var(--fonte-titulo);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.8s ease;
}

h2 {
    font-family: var(--fonte-titulo);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.8s ease;
}

h3 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    transition: all 0.8s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s ease;
}

/* HEADER */
.header-capa {
    min-height: 100vh;
    padding: 80px 5% 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.8s ease;
}

.banner-capa {
    background-color: #000000;
    transition: all 0.8s ease;
}

/* QUEM SOU EU */
.conteudo-flex {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    transition: all 0.8s ease;
}

.conteudo-flex .texto {
    flex: 2;
    transition: all 0.8s ease;
}

.citacao {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 20px;
    border-left: 3px solid var(--detalhe-cinza);
    padding-left: 20px;
    line-height: 1.4;
    transition: all 0.8s ease;
}

p {
    text-align: justify;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.8s ease;
}

.fotos-perfil {
    flex: 1;
    display: flex;
    justify-content: center;
    transition: all 0.8s ease;
}

.fotos-perfil img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.8s ease;
}

/* DESTAQUES */
.destaques-grade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    transition: all 0.8s ease;
}

.destaque-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.5s ease;
}

.destaque-item:hover {
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.destaque-item span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--detalhe-cinza);
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.destaque-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: all 0.5s ease;
}

/* BOTÃO COMPRAR  */
.btn-comprar {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    font-size: 0.9rem;
    min-width: 140px;
}

.btn-comprar:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    transition: all 0.5s ease;
}

/* CONTATO */
.contato-conteudo {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    width: 100%;
    transition: all 0.8s ease;
}

.contato-conteudo img {
    width: 40%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.8s ease;
}

.contato-conteudo .info {
    width: 60%;
    text-align: left;
    transition: all 0.8s ease;
}

.contato-conteudo .info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    transition: all 0.8s ease;
}

/* ANIMAÇÕES */
.animar {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animar.visivel {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


/* Efeito zoom para imagens em geral */
.imagem-container img,
.destaque-item img,
.fotos-perfil img,
.contato-conteudo img {
    transition: transform 0.7s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Zoom nas imagens do banner */
.imagem-container:hover img {
    transform: scale(1.18);
    transition: transform 0.7s ease;
}

/* Zoom nas imagens dos destaques */
.destaque-item:hover img {
    transform: scale(1.12);
    transition: transform 0.7s ease;
}

/* Zoom na foto de perfil */
.fotos-perfil img:hover {
    transform: scale(1.08);
    transition: transform 0.7s ease;
}

/* Zoom na imagem de contato */
.contato-conteudo img:hover {
    transform: scale(1.12);
    transition: transform 0.7s ease;
}

/* Efeito adicional de brilho suave no hover */
.imagem-container:hover img,
.destaque-item:hover img,
.fotos-perfil img:hover,
.contato-conteudo img:hover {
    filter: brightness(1.12);
    transition: all 0.7s ease;
}

/*DISPOSITIVOS MÓVEIS */

@media (max-width: 768px) {
    /* Ajustes de zoom para mobile */
    .imagem-container:hover img {
        transform: scale(1.12);
    }
    
    .destaque-item:hover img {
        transform: scale(1.08);
    }
    
    .fotos-perfil img:hover {
        transform: scale(1.05);
    }
    
    .contato-conteudo img:hover {
        transform: scale(1.09);
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .imagem-container:hover img {
        transform: scale(1.06);
    }
}

/* BANNER COM DIMENSÕES PROPORCIONAIS  */
.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    margin: 0 auto;
    padding-top: 40px; 
}

.banner-texto {
    flex: 1;
    max-width: 450px;
    margin-top: 80px; 
    transition: all 0.8s ease;
    margin-left: 20px;

}

.banner-texto h1 {
    font-family: var(--fonte-titulo);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.1;
    transition: all 0.8s ease;
}

.banner-texto h2 {
    font-family: var(--fonte-corpo);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--detalhe-cinza);
    letter-spacing: 1.5px;
    text-align: left;
    margin-bottom: 0;
    color: #ffffff;
    line-height: 1.4;
    transition: all 0.8s ease;
}

.banner-imagens {
    display: flex;
    position: relative;
    height: 380px;
    width: 420px;
    margin-top: 30px;
    transition: all 0.8s ease;
}

.imagem-container {
    width: 220px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    position: absolute;
    transition: all 0.4s ease;
}

/* POSIÇÕES PROPORCIONAIS */
.imagem-container:nth-child(1) {
    left: 0;
    top: 50px; 
    z-index: 3;
    transform: rotate(-6deg);
    transition: all 0.4s ease;
}

.imagem-container:nth-child(2) {
    left: 140px;
    top: 30px; 
    z-index: 2;
    transform: rotate(3deg);
    transition: all 0.4s ease;
}

.imagem-container:nth-child(3) {
    left: 240px;
    top: 60px; 
    z-index: 1;
    transform: rotate(8deg);
    transition: all 0.4s ease;
}

.imagem-container:hover {
    z-index: 4;
    transform: scale(1.06) rotate(0deg);
    transition: all 0.4s ease;
}

.imagem-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

/* NAVBAR MOBILE   */
@media (max-width: 768px) {
    /* Navbar centralizada inicialmente */
    .nav-branca .nav-container {
        justify-content: center;
    }
    
    /* Logo centralizada no estado inicial */
    .nav-branca #logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    
    /* Esconde hamburger no estado inicial */
    .nav-branca #hamburger {
        display: none;
    }
    
    /* No scroll - navbar com logo à esquerda e hamburger à direita */
    .nav-transparente .nav-container {
        justify-content: space-between;
    }
    
    .nav-transparente #logo {
        position: static;
        transform: none;
        margin: 0;
    }
    
    .nav-transparente #hamburger {
        display: flex;
    }
    
    /* Ajuste para iOS */
    @supports (-webkit-touch-callout: none) {
        .banner-imagens {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        
        .imagem-container {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
    }
}

/*  BANNER MOBILE MELHORADO  */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-top: 60px;
    }
    
    .banner-texto {
        margin-top: 0;
        margin-left: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .banner-texto h1,
    .banner-texto h2 {
        text-align: center;
    }
    
    .banner-imagens {
        position: relative;
        height: 280px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .imagem-container {
        width: 140px;
        height: 200px;
        transition: all 0.4s ease;
    }
    
    /* Posições para mobile */
    .imagem-container:nth-child(1) {
        left: 10%;
        top: 30px;
        transform: rotate(-8deg);
    }
    
    .imagem-container:nth-child(2) {
        left: 35%;
        top: 10px;
        transform: rotate(2deg);
    }
    
    .imagem-container:nth-child(3) {
        left: 60%;
        top: 40px;
        transform: rotate(10deg);
    }
    
    .imagem-container:hover {
        transform: scale(1.05) rotate(0deg);
    }
}

/*  MEDIA QUERIES PROPORCIONAIS  */

/* Tablets e Mobile */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .conteudo-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .fotos-perfil {
        order: -1;
    }
    
    .fotos-perfil img {
        max-width: 300px;
    }
    
    .contato-conteudo {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .contato-conteudo img {
        width: 100%;
        max-width: 300px;
    }
    
    .contato-conteudo .info {
        width: 100%;
    }
}

/* Mobile */


@media (max-width: 768px) {
    /* Ajustes gerais */
    .secao {
        padding: 80px 5% 60px;
    }
    
    /* NAVBAR MOBILE  */
    .nav-container {
        justify-content: space-between !important;
        padding: 0 15px;
    }
    
    /* Logo sempre visível e centralizada no mobile */
    #logo {
        width: 90px;
    }
    
    /* Esconde links normais no mobile */
    #nav-links {
        display: none;
    }
    
    /* Menu mobile expandido */
    #nav-links.visivel {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        text-align: center;
        z-index: 1000;
    }
    
    #nav-links.visivel a {
        margin: 15px 0;
        font-size: 1.3rem;
        color: #ffffff;
    }
    
    /* Ajuste de conteúdo */
    .destaques-grade {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destaque-item {
        padding: 15px;
    }
    
    .btn-comprar {
        width: 100%;
        max-width: 200px;
    }
}

/* Ajustes para iPhone e dispositivos menores */
@media (max-width: 480px) {
    .banner-imagens {
        height: 240px;
        max-width: 280px;
    }
    
    .imagem-container {
        width: 120px;
        height: 170px;
    }
    
    .imagem-container:nth-child(1) {
        left: 5%;
        top: 25px;
        transform: rotate(-6deg);
    }
    
    .imagem-container:nth-child(2) {
        left: 35%;
        top: 5px;
        transform: rotate(1deg);
    }
    
    .imagem-container:nth-child(3) {
        left: 65%;
        top: 35px;
        transform: rotate(8deg);
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    #logo {
        width: 90px;
    }
    
    .banner-texto h1 {
        font-size: 1.8rem;
    }
    
    .banner-texto h2 {
        font-size: 1.3rem;
    }
    
    .secao {
        padding: 60px 5% 40px;
    }
    
    h2 {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }
}

/* Para telas muito pequenas */
@media (max-width: 360px) {
    .banner-imagens {
        height: 200px;
        max-width: 240px;
    }
    
    .imagem-container {
        width: 100px;
        height: 140px;
    }
    
    .imagem-container:nth-child(1) {
        left: 3%;
        top: 20px;
    }
    
    .imagem-container:nth-child(2) {
        left: 35%;
        top: 0;
    }
    
    .imagem-container:nth-child(3) {
        left: 67%;
        top: 25px;
    }
    
    .banner-texto h1 {
        font-size: 1.4rem;
    }
    
    .banner-texto h2 {
        font-size: 1.1rem;
    }
}

/* Ajuste para telas muito grandes */
@media (min-width: 1600px) {
    .banner-container {
        max-width: 1400px;
    }
    
    .banner-imagens {
        height: 420px;
        width: 480px;
    }
    
    .imagem-container {
        width: 250px;
        height: 340px;
    }
    
    .imagem-container:nth-child(2) {
        left: 160px;
    }
    
    .imagem-container:nth-child(3) {
        left: 280px;
    }
}


.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.modal-content {
  background-color: #1a1a1a;
  margin: 5% auto;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  border: 1px solid #333;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 2001;
}

.close-modal:hover {
  color: #f39c12;
}

.modal h2 {
  margin-bottom: 20px;
  text-align: center;
  padding-right: 30px; 
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.form-group textarea,
.form-group input[type="text"] {
  width: 100%;
  padding: 12px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-family: var(--fonte-corpo);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group textarea::placeholder {
  color: #888;
}

.btn-whatsapp {
  width: 100%;
  padding: 15px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contato-conteudo {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .contato-conteudo img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .contato-conteudo .info {
    width: 100%;
    text-align: center;
  }
  
  .contato-conteudo .info p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  .redes-sociais {
    justify-content: center;
  }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
  .contato-conteudo .info p {
    font-size: 1rem;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* POPUP PARA IMAGENS DAS OBRAS */
.popup-imagem {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.popup-imagem.conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-conteudo {
  background-color: rgba(26, 26, 26, 0.95);
  border-radius: 15px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

.fechar-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fechar-popup:hover {
  color: #f39c12;
}

.popup-imagem-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.popup-imagem-grande {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 8px;
}

.popup-info {
  text-align: center;
}

.popup-info h3 {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
  color: #ffffff;
}

.popup-info p {
  font-family: var(--fonte-corpo);
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--detalhe-cinza);
  text-align: center;
  margin-bottom: 20px;
}

.btn-comprar-popup {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease;
  font-size: 0.9rem;
  min-width: 140px;
}

.btn-comprar-popup:hover {
  background-color: #f39c12;
  border-color: #f39c12;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

/* Animações para o popup */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .popup-conteudo {
    width: 95%;
    max-height: 95vh;
  }
  
  .popup-imagem-container {
    padding: 20px;
    gap: 15px;
  }
  
  .popup-imagem-grande {
    max-height: 400px;
  }
  
  .fechar-popup {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .popup-imagem-container {
    padding: 15px;
  }
  
  .popup-imagem-grande {
    max-height: 300px;
  }
}

/* Tamanhos de tela */
.tamanhos-opcoes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.tamanho-opcao {
  padding: 12px;
  background: #2a2a2a;
  border: 2px solid #444;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.tamanho-opcao:hover {
  border-color: #f39c12;
  background: #333;
}

.tamanho-opcao.selecionado {
  border-color: #f39c12;
  background: #333;
  color: #f39c12;
}

/* Opções de Tipo de Tela  */
.tipo-tela-opcoes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.tipo-tela-opcao {
  padding: 15px;
  border: 2px solid #444;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #2a2a2a;
  color: #fff;
}

.tipo-tela-opcao:hover {
  border-color: #f39c12;
  transform: translateY(-2px);
  background: #333;
}

.tipo-tela-opcao.selecionado {
  border-color: #f39c12;
  background-color: #333;
  color: #f39c12;
  box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

.tipo-tela-opcao span {
  font-weight: 600;
  color: #fff;
}

.tipo-tela-opcao.selecionado span {
  color: #f39c12;
}

/* Campo personalizado */
#tamanho-personalizado {
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }
  
  .modal-content {
    margin: 10% auto;
    padding: 20px;
    width: 95%;
    max-width: 95%;
  }
  
  .tamanhos-opcoes {
    grid-template-columns: 1fr;
  }
  
  .tipo-tela-opcoes {
    grid-template-columns: 1fr;
  }
  
  .modal h2 {
    font-size: 1.5rem;
    padding-right: 25px;
  }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
  .modal-content {
    margin: 5% auto;
    padding: 15px;
    width: 98%;
  }
  
  .close-modal {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
  
  .modal h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .tipo-tela-opcao {
    padding: 12px;
  }
  
  .btn-whatsapp {
    padding: 12px;
    font-size: 1rem;
  }
}

/* modal fique sempre visível */
@media (max-height: 600px) {
  .modal-content {
    margin: 2% auto;
    max-height: 96vh;
    overflow-y: auto;
  }
}

.redes-sociais {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .modal-content {
    margin: 5% auto;
    padding: 20px;
    width: 95%;
  }
  
  .tamanhos-opcoes {
    grid-template-columns: 1fr;
  }
  
  .btn-personalizado {
    width: 100%;
  }
}

.obra-personalizada {
    text-align: center;
    margin-top: 50px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    width: 100%;
}

.obra-personalizada h3 {
    margin-bottom: 20px;
    font-family: var(--fonte-titulo);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #ffffff;
}

.btn-personalizado {
    display: inline-block;
    margin: 0 auto;
    padding: 15px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    font-size: 1rem;
    min-width: 250px;
    text-align: center;
}

.btn-personalizado:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

/* Mobile - Centralização total */
@media (max-width: 768px) {
    .obra-personalizada {
        padding: 25px 15px;
        margin-top: 40px;
    }
    
    .btn-personalizado {
        width: 100%;
        max-width: 280px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .obra-personalizada {
        padding: 20px 10px;
        margin-top: 30px;
    }
    
    .btn-personalizado {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .obra-personalizada h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}
.footer {
  background-color: #111111;
  border-top: 1px solid #333;
  padding: 30px 5% 25px;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-info p {
  text-align: center;
  color: var(--detalhe-cinza);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.footer-info strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-info span {
  color: var(--detalhe-cinza);
  font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    padding: 25px 5% 20px;
  }
  
  .footer-info p {
    font-size: 0.9rem;
    line-height: 1.5; 
  }
}


@media (max-width: 480px) {
  .footer {
    padding: 20px 5% 15px;
  }
  
  .footer-info p {
    font-size: 0.85rem;
    line-height: 1.6; 
  }
}
