
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Raleway', sans-serif; 
    background-color: #fffcf5;
}


body h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 55px;
}




#MiauDasEstrelas {
    background-image: url('Imagens/Logo_4+15.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; 
    background-color: #ffbf40; 
    height: 140px; 
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#BarraDeNav {
    background-color: #ffbf40;
    box-shadow: 0 4px 8px rgba(#ffbf40);
    position: sticky;
    top: 0;
    z-index: 100;
}
#BarraDeNav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}

#BarraDeNav ul li a{
    position: relative;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 8px 16px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px;
    color: #fffcf5;
}

#BarraDeNav > ul > li > a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 3px;
    background: #fffcf5;
    transition: .4s;
}

#BarraDeNav ul li a:hover::before{
    width: 100%;
}

#BarraDeNav ul li a.ativo::before {
    width: 100%;
}

.seta-baixo {
    font-size: 30px;
    vertical-align: middle; 
    line-height: 0; 
}



#BarraDeNav ul li.dropdown {
    position: relative;
}


#BarraDeNav ul li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ff571d;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 0 0 20px 20px;
    min-width: 260px;
    z-index: 200;
}


#BarraDeNav ul li .submenu li {
    padding: 0;
    margin: 0;
}


#BarraDeNav ul li .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #fffcf5;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
} 

#BarraDeNav ul li .submenu li a:hover {
    background-color: #e6a832;
}


#BarraDeNav ul li.dropdown:hover .submenu {
    display: block;
}


#ResumoSobreMimBanner {
    background-image: url('Imagens/IMG_20250707_172550011_HDR.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    height: 600px;
    margin: 0;
    color: white;
}


#ResumoSobreMimBanner p {
    max-width: 700px;
}

#ResumoSobreMimBanner h1 {
    font-size: 55px;
}



.banner-conteudo {
    background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 10%;
    box-sizing: border-box;
    text-align: center;
}


.banner-conteudo h1 {
    font-size: 55px;
    color: #fffcf5;
    margin-bottom: 20px;
}

.banner-conteudo p {
    font-size: 18px;
    line-height: 1.6;
    color: #fffcf5;
    margin-bottom: 30px;
}

#botao-conhecer {
    padding: 12px 28px;
    font-size: 30px;
    border-radius: 50px;
    background-color: #ff571d;
    color: #fffcf5;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

#botao-conhecer:hover {
    background-color: #e24a16;
    transform: translateY(-2px);
}


#SetorBranco {
    background-color: #fffcf5;
    padding: 80px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
 
}

#SetorAmarelo {
    background-color: #ffbf40;
    padding: 80px 20px;
 
}

.conteudo-amarelo {
    width: 100%;
}

.texto-central {
    text-align: center;
    color: #ff571d;
    margin-bottom: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 5; 
}
.texto-central h1 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff571d;
}

.texto-central p {
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto;
    color: #ff571d;
}


.container-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    top: 0; 
}



.box {
    background-color: white;
    width: 280px; 
    padding: 30px 20px;
    box-shadow: 0 2px 8px #ff571d;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    margin-bottom: 30px; 
    text-decoration: none;
}

.box:hover {
    transform: translateY(-10px);
}

.box img {
    width: 50px;
    margin-bottom: 15px;
}

.box h3 {
    padding-top: 10px;
    font-size: 20px;
    margin-bottom: 10px;
    color: black;
}

.box p {
    font-size: 16px;
    color: #444;
}






.botao-contato {
    display: inline-block;
    padding: 12px 28px;
    font-size: 20px;
    border-radius: 50px;
    background-color: #ff571d;
    color: #fffcf5;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-contato:hover {
    background-color: #e24a16;
    transform: translateY(-2px);
}

.conteudo-setor-amarelo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.texto-e-botao {
    flex: 1;
    min-width: 400px;
}

.texto-e-botao h1 {
    font-size: 55px;
    color: #fffcf5;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.texto-e-botao .botao-contato {
    font-size: 30px;
    border-radius: 50px;
    background-color: #ff571d;
    color: #fffcf5;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.texto-e-botao .botao-contato:hover{
    background-color: #e24a16;
}

.imagem-setor-amarelo {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.imagem-principal img {
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.imagens-menores {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.imagens-menores img {
    width: 195px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}


#Rodape {
    background-color: #fffcf5;
    padding: 20px 40px;
}

.conteudo-rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.logo-rodape img {
    height: 90px; 
    width: auto;
}

.links-rodape {
    display: flex;
    gap: 20px;
}

.links-rodape a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
    transition: color 0.3s ease;
}

.links-rodape a:hover {
    color: #ff571d; 
}

.logo-rodape p {
    color: #333333;
    font-size: 20px;
    margin: 0;
}

.icone-rodape {
    height: 55px;
    width: auto;
    vertical-align: middle; 
}



.links-rodape a:hover img.icone-rodape {
    filter: brightness(0) saturate(100%) invert(28%) sepia(47%) saturate(416%) hue-rotate(289deg) brightness(92%) contrast(92%);
}

.direitos {
    text-align: center;
}


#SobreMim1 .conteudo-sobre-mim {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto;
    padding: 20px;
}

#SobreMim1 .foto-sobre-mim {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    min-width: 300px;
    justify-content: center;
}

#SobreMim1 .foto-sobre-mim img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#SobreMim1 .texto-sobre-mim {
    flex: 2;
    min-width: 300px;
    text-align: center;
    margin-left: 250px;
}

#SobreMim1 .texto-sobre-mim h1 {
    font-size: 55px;
    margin-bottom: 20px;
    color: #ff571d;
}

#SobreMim1 .texto-sobre-mim p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
}



#SobreMim2 .conteudo-sobre-mim2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1300px;
    margin: 10px auto;
    padding: 20px;
}

#SobreMim2 .foto-sobre-mim2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    min-width: 300px;
    justify-content: center;
}

#SobreMim2 .foto-sobre-mim2 img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#SobreMim2 .texto-sobre-mim2 {
    flex: 2;
    min-width: 400px;
    text-align: center;
    margin-right: 250px;
}

#SobreMim2 .texto-sobre-mim2 h1 {
    font-size: 55px;
    margin-bottom: 20px;
    color: #ff571d;
}

#SobreMim2 .texto-sobre-mim2 p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
}



.Cursos {
    text-align: center;
    padding: 60px 20px;
    background-color: #fffcf5;
    overflow: hidden;
}

.Cursos h1 {
    font-size: 55px;
    color: #ff571d;
    margin-bottom: 30px;
}

.carrossel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carrossel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carrossel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carrossel-item {
    min-width: calc(25% - 15px); 
    box-sizing: border-box;
}

.carrossel-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.carrossel-item img:hover {
    transform: scale(1.03);
}

.carrossel-btn {
    background-color: #ff571d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.carrossel-btn:hover {
    background-color: #e24a16;
}

.carrossel-btn.prev {
    left: 0;
}

.carrossel-btn.next {
    right: 0;
}


@media (max-width: 1200px) {
    .carrossel-item {
        min-width: calc(33.33% - 15px); 
    }
}

@media (max-width: 900px) {
    .carrossel-item {
        min-width: calc(50% - 15px); 
    }
}

@media (max-width: 600px) {
    .carrossel-item {
        min-width: 100%; 
    }
}





.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff571d;
}



#FaleComigo {
  background-color: #fffcf5;  /* mesmo fundo do site */
  padding: 80px 20px;
}

.card-fale {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.card-fale h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 40px;
  color: #ff571d;
  margin-bottom: 30px;
}

.contatos-simples {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.contatos-simples li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  color: #444;
  margin-bottom: 16px;
}

.icon-small {
  width: 50px;
  height: auto;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ff571d;  
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  font-size: 30px;
}

.btn-whatsapp:hover {
  background-color: #ffbf40;
  transform: translateY(-2px);
}


#FaleComigo form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#FaleComigo input,
#FaleComigo textarea {
  width: 100%;
  max-width: 450px;
  border: 3px solid #dd0d23;        
  border-radius: 25px;              
  padding: 14px 20px;               
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  color: #333;
  background-color: #fffcf5;        
  margin-bottom: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

#FaleComigo textarea {
  min-height: 140px;               
  resize: vertical;                
}

#FaleComigo input:focus,
#FaleComigo textarea:focus {
  border-color: #ff571d;            
  box-shadow: 0 0 8px rgba(255, 87, 29, 0.4);
}

#FaleComigo button.btn-whatsapp {
  max-width: 450px;                 
}

#FaleComigo .contatos-simples{
    margin-top: 20px;
}

#FaleComigo .contatos-simples li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #444;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

#FaleComigo .contatos-simples li a:hover {
  color: #ff571d; 
}


#FaleComigo .contatos-simples li img.icon-small {
  width: 30px;
  height: auto;
}


/* container empilhado */
#Ebooks {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #fffcf5;
}

/* cada card continua horizontal */
#Ebooks .card-horizontal {
  display: flex;              /* mantém imagem + conteúdo lado a lado */
  flex-direction: row;
  width: 100%;
  max-width: 900px;
  background-color: #fff;      /* cor de fundo */
  border-radius: 12px;         /* cantos arredondados */
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);  /* sombra */
  overflow: hidden;
}

/* imagem dentro do card */
#Ebooks .card-horizontal .card-image {
  width: 240px;
  object-fit: cover;
  flex-shrink: 0;
}

/* conteúdo dentro do card */
#Ebooks .card-horizontal .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 24px;
}

/* título */
#Ebooks .card-horizontal .card-content h3 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #ff571d;
}

/* parágrafo */
#Ebooks .card-horizontal .card-content p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

/* botão */
#Ebooks .card-horizontal .card-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #ff571d;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}
#Ebooks .card-horizontal .card-button:hover {
  background-color: #e24a16;
  transform: translateY(-2px);
}



#Consultoria {
  background-color: #fffcf5;
  padding: 80px 20px;
}

.card-consultoria {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-consultoria h1 {
  font-size: 48px;
  color: #ff571d;
  margin-bottom: 24px;
}

.card-consultoria .descricao,
.card-consultoria .reuniao,
.card-consultoria .importante {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.card-consultoria .reuniao-titulo{
    font-size: 25px;
}

.card-consultoria .reuniao strong {
  color: #ff571d;
}

.card-consultoria .importante {
    background-color: #fffcf5;
    border-left: 4px solid #dd0d23;
    padding: 16px;
    font-size: 16px;
    color: #333;
    margin: 0 auto 24px;
    display: inline-block;
    text-align: left;

}

.card-consultoria .botao-contato {
  margin-top: 10px;
  padding: 14px 32px;
  font-size: 30px;
  border-radius: 50px;
  background-color: #ff571d;
  color: #fffcf5;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}

.card-consultoria .botao-contato:hover {
  background-color: #ffbf40;
  transform: translateY(-2px);
}


#Gatificacao {
  background-color: #fffcf5;
  padding: 80px 20px;
}


.card-gatificacao .titulo{
    color: #ff571d;
}

.card-gatificacao {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  padding: 40px 30px;
  text-align: center;
}

.card-gatificacao .descricao {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
}

.cards-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}


.card-prancheta {
  position: relative;
  background-color: #f1a713;
  border-radius: 12px;
  width: 300px;
  padding: 40px 20px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.30);
  text-align: left;
}

.card-prancheta::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 12px;
  background-color: #c7c1c1;
  border-radius: 6px 6px 0 0;
}

.card-prancheta h1 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #fffcf5;
    
}

.card-prancheta ul {
  list-style: none;
  padding: 10px;
}

.card-prancheta ul li {
  margin-bottom: 8px;
  font-size: 19px;
  color: #fff;

}


.card-gatificacao .botao-contato {
  margin-top: 10px;
  padding: 14px 32px;
  font-size: 30px;
  border-radius: 50px;
  background-color: #ff571d;
  color: #fffcf5;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}

.card-gatificacao .botao-contato:hover {
  background-color: #ffbf40;
  transform: translateY(-2px);
}

.card-prancheta .divider {
  width: 100%;
  border: none;
  border-top: 2px solid #ff571d; 
  margin: 8px auto 16px;
}

.cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.card-arrow {
  font-size: 48px;
  color: #ff571d;
  align-self: center;
}



#ConsultoriaArq {
  background-color: #fffcf5;
  padding: 80px 20px;
}


.card-ConsultoriaArq .titulo{
    color: #ff571d;
}

.card-ConsultoriaArq {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.card-consultoria .titulo{
    font-size: 45px;
}

.card-consultoria .reuniao{
    text-align: center;

}

.card-ConsultoriaArq .descricao {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
}

.card-ConsultoriaArq h1 {
  font-size: 48px;
  color: #ff571d;
  margin-bottom: 24px;
}


.reuniao-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reuniao-list li {
    margin-bottom: 12px;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    color: #444;
}

.reuniao-list li::before {
    content: '➜';
    position: absolute;
    font-size: 30px;
    left: 0;
    color: #ff571d;

}
.card-consultoria h2 {
    font-size: 30px;
    color: #ff571d;
    margin-top: 30px;
}




#Loja {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background-color: #fffcf5;
}


#Loja .card-horizontal {
  width: calc(20% - 20px); 
  max-width: none;
  margin: 10px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


#Loja .card-horizontal .card-image {
  width: 240px;
  object-fit: cover;
  flex-shrink: 0;
}


#Loja .card-horizontal .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 24px;
}


#Loja .card-horizontal h3 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #ff571d;
}


#Loja .card-horizontal .card-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #ff571d;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}
#Loja .card-horizontal .card-button:hover {
  background-color: #e24a16;
  transform: translateY(-2px);
}


#Loja > p {
  width: 100%;
  text-align: center;
  margin-top: 20px; 
}






/* === RESPONSIVIDADE PARA TABLETS E CELULARES === */
@media (max-width: 1024px) {
  body h1,
  .texto-e-botao h1,
  .banner-conteudo h1,
  .texto-central h1 {
    font-size: 40px;
  }

  .texto-central p,
  .box p,
  .banner-conteudo p,
  .texto-sobre-mim p,
  .card-gatificacao .descricao,
  .card-consultoria .descricao {
    font-size: 16px;
  }

  #BarraDeNav ul {
    flex-wrap: wrap;
    gap: 20px;
  }

  .conteudo-setor-amarelo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .imagem-setor-amarelo {
    flex-direction: column;
  }

  .texto-e-botao {
    min-width: unset;
  }

  .box {
    width: 90%;
  }

  #SobreMim1 .texto-sobre-mim,
  #SobreMim2 .texto-sobre-mim2 {
    margin: 0 auto;
  }

  #Loja .card-horizontal {
    flex-direction: column;
  }

  #Loja .card-horizontal .card-image {
    width: 100%;
  }

  #ResumoSobreMimBanner {
    height: 400px;
  }

  .banner-conteudo {
    padding: 40px 5%;
  }
 

  .card-horizontal {
    flex-direction: column;
  }

  .card-horizontal .card-image {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .btn-whatsapp,
  .botao-contato,
  #botao-conhecer {
    font-size: 20px;
    padding: 10px 20px;
  }

  .icone-rodape {
    height: 40px;
  }

  .links-rodape a {
    font-size: 18px;
  }

  .carrossel-item {
    min-width: 100%;
  }

  #SobreMim1 .foto-sobre-mim img,
  #SobreMim2 .foto-sobre-mim2 img {
    width: 100%;
    max-width: 300px;
  }

  .card-prancheta {
    width: 90%;
  }

  .card-consultoria h1,
  .card-ConsultoriaArq h1 {
    font-size: 36px;
  }

  .reuniao-list li {
    font-size: 16px;
    padding-left: 30px;
  }

  .reuniao-list li::before {
    font-size: 20px;
  }
}


@media (max-width: 768px) {
  .conteudo-rodape {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .logo-rodape img {
    height: 70px;
  }

  .logo-rodape p {
    font-size: 16px;
  }

  .links-rodape {
    flex-direction: column;
    gap: 16px;
  }

  .links-rodape a {
    font-size: 18px;
  }

  .icone-rodape {
    height: 40px;
  }

  .direitos {
    font-size: 14px;
    padding-top: 10px;
  }
}

/* Versão padrão: ambas visíveis */
.img-principal,
.img-secundaria {
  display: block;
}

/* Esconde a imagem secundária só no celular */
@media (max-width: 768px) {
  .img-secundaria {
    display: none;
  }

  .foto-sobre-mim,
  .foto-sobre-mim2 {
    flex-direction: column;
    align-items: center;
  }

  .img-principal {
    width: 90%;
    max-width: 320px;
    height: auto;
  }
}


@media (max-width: 1200px) {
  #Loja .card-horizontal {
    width: calc(25% - 20px); /* 4 por linha */
  }
}

@media (max-width: 992px) {
  #Loja .card-horizontal {
    width: calc(33.33% - 20px); /* 3 por linha */
  }
}

@media (max-width: 768px) {
  #Loja .card-horizontal {
    width: calc(50% - 20px); /* 2 por linha */
  }
}

@media (max-width: 500px) {
  #Loja .card-horizontal {
    width: 100%; /* 1 por linha */
  }
}


@media (max-width: 768px) {
  .conteudo-rodape {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .logo-rodape img {
    height: 70px;
  }

  .logo-rodape p {
    font-size: 16px;
  }

  .links-rodape {
    flex-direction: row; /* <-- mantém horizontal */
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .links-rodape a {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .icone-rodape {
    height: 40px;
  }

  .direitos {
    font-size: 14px;
    padding-top: 10px;
  }
}


@media (max-width: 768px) {
  #SobreMim2 .foto-sobre-mim2 {
    flex-direction: column !important;
    align-items: center;
  }

  .img-principal2,
  .img-secundaria2 {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .imagens-menores {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .imagens-menores img {
    width: 48%;
    max-width: 150px;
    height: auto;
  }
}


/* E‐books: empilha card e centraliza */
@media (max-width: 768px) {
  #Ebooks .card-horizontal {
    flex-direction: column;      /* empilha imagem + texto */
    width: 90%;                  /* ocupa quase toda a tela */
    max-width: 400px;            /* limita para não ficar gigante */
    margin: 0 auto 30px;         /* centraliza e afasta do próximo */
  }
  #Ebooks .card-horizontal .card-image {
    width: 100%;                 /* imagem preenche a largura */
    height: auto;
    border-radius: 0;            /* remove cantos arredondados exagerados */
  }
  #Ebooks .card-horizontal .card-content {
    padding: 16px;               /* menos “ar puro” */
  }
  #Ebooks .card-horizontal h3 {
    font-size: 24px;             /* título um pouco menor */
  }
  #Ebooks .card-horizontal p {
    font-size: 16px;             /* texto legível em celular */
  }
}



