* {
    margin: 0;
    padding: 0;
}

body {
    background: #fef9e4;
    overflow-x: hidden;
}

a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.FotoTitulo {
    display: flex;
    height: 10vh;
    width: 10vh;
    margin-left: 65vh;
    margin-right: 85vh;
}

.Iniciais {
    width: 5vh;
    height: 5vh;
    display: flex;
}

.logo {
    font-size: 24px;
    text-transform: uppercase;
    margin-left: 5%;
}

/* título no geral */
.MenuLateral {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Ts arabic bebas neue pro, sans-serif;
    font-size: 2vh;
    height: 10vh;
    background: #266873;
}

/* menu lateral */
.MenuOpcao {
    display: flex;
    position: absolute;
    top: 10vh;
    right: 0;
    width: 15vw;
    height: 30vh;
    transition: 0.5s;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
    transform: translateX(100%);
    border-radius: 5%;
    padding-right: 6.5vh;
}

/* ▼ NOVO: animação item por item do menu principal */
.MenuOpcao li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.MenuOpcao.aberto li {
    opacity: 1;
    transform: translateX(0);
}

.MenuOpcao.aberto li:nth-child(1) {
    transition-delay: 0.05s;
}
.MenuOpcao.aberto li:nth-child(2) {
    transition-delay: 0.15s;
}
.MenuOpcao.aberto li:nth-child(3) {
    transition-delay: 0.25s;
}

/* ▼ CONTINUAÇÃO do seu CSS original */

.MenuOpcao li {
    list-style: none;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 23px;
}

.MenuOpcao ul li {
    line-height: 20px;
}

.MenuOpcao li a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

#sbmTexto1 {
    font-size: 20px;
}

#sbmTexto2 {
    font-size: 20px;
}

.MenuIcone {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.MenuIcone div {
    background-color: white;
    height: 4px;
    border-radius: 2px;
}

.MenuIcone div:hover {
    color: black;
    transition: 0.5s;
}

/* ▼▼▼ CSS DO SUBMENU - permanece como você fez ▼▼▼ */

/* Submenu oculto inicialmente */
.svOpcoes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

/* Quando ativado, revela com animação */
.svOpcoes.ativo {
    max-height: 100px; /* altura suficiente p/ 2 itens */
}

/* Estilo dos subitens */
.svOpcoes li {
    list-style: none;
    padding-bottom: 10px;
    padding-top: 8px;
}

.svOpcoes a {
    font-family: 'Montserrat', sans-serif;
}

/* Link de serviços interativo */
#btnServicos {
    cursor: pointer;
}
.main{
    text-align: center;
    display: flex;
    
}

/*Foto e TextoFoto*/
#imgPrincipal {
height: 500px;
width: 500px;
border-radius: 50%;
margin-top: 8vh;
margin-left: 20vh;
}

#Nome{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Negrito, sans-serif;
    height: 7vh;
    width: auto;
    text-align: center;
    margin-top: 5vh;
    margin-left: 17vh;
    color: #0f2032;
}

#TextoFoto{
    margin-left: 15vh;
    margin-right: 36vh;
    margin-top: 2vh;
    font-size: 20px;
    font-family:'Trebuchet Ts', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans',  Ts arabic bebas neue pro, sans-serif;
    word-wrap: break-word;
    text-align: left;
}

#historia{
    text-align: left;
    display: flex;
    font-size: 25px;
    writing-mode: horizontal-tb;
    margin-left: 12%;
    font-family:'Trebuchet Ts', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans',  Ts arabic bebas neue pro, sans-serif;
    
}
.BlocoTextoFoto{
margin-top: 8vh;

}
#titulo{
    font-size: 6vh;
    padding-left: 10vh;
    padding-top: 5vh;
     font-family:'Trebuchet Ts', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans',  Ts arabic bebas neue pro, sans-serif;
    display: flex;
}

#VideoClaudia{
    width:300px ;
    height: 500px;
    
}

/*RODAPÉ*/
.rodape {
  padding: 15px ;
  text-align: center;
  margin-top: 6%;
  
}

.social-btn {
  display: inline-block;
  margin: 0 15px;
  color: #3f6173;
  font-size: 28px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  color: #266873;
}


.botao-icon-insta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #E1306C;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  
}

.botao-icon-insta:hover {
  background-color: #c1275a;
}


