* { 
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F3E8FF; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    padding: 20px; 
}

header {
    text-align: center;
    margin-bottom: 20px; 
}

header h1 {
    color: #8a2caa;
    margin-bottom: 10px;
}

header p {
    max-width: 800px; 
    margin: 0 auto 15px auto; 
}

nav ul {
    display: flex; 
    justify-content: center;
    list-style: none; 
    gap: 25px;
    margin-bottom: 20px;
}

nav a {
    text-decoration: none; 
    color: #8a2caa;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

nav a:hover {
    background-color: #e3d3f1;
    color: #5e0f7f;
    
}

.imagem-central {
    display: block; 
    margin: 20px auto;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

ul li { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 15px; 
}

ul li img {
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

a {
    color: #8a2caa;
}

a:hover {
    color: #5e0f7f; 
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
    background-color: #F3E8FF;
    border-top: 1px solid #F3E8FF;
}

h2, h3 {
    color: #5e0f7f;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;
}

ul li strong {
    font-size: 1.1rem;
    color: #4b1f63;
}


ul li em {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
}

p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
}

ul.galeria {
    display: flex;                 
    flex-wrap: wrap;            
    justify-content: center;       
    gap: 20px;                     
    padding: 0;                    
    list-style: none;             
    margin-top: 20px;
}

ul.galeria li {
    flex: 1 1 200px;           
    background-color: #e6d8ee;     
    border: 1px solid #d3c0f0;     
    border-radius: 10px;           
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

ul.galeria li:hover {
    transform: scale(1.05);        
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

ul.galeria li img {
    border-radius: 8px;
    width: 100px; 
    height: 100px;
    margin-bottom: 10px;
}

ul.galeria li strong {
    display: block;
    margin-bottom: 5px;
    color: #4b1f63;
    font-size: 1.1rem;
}

ul.galeria li em {
    font-size: 0.95rem;
    color: #555;
}

.dicas {
    background-color: #F3E8FF;
    border-left: 4px solid #F3E8FF;
    padding: 15px;
    margin: 25px 0;
    border-radius: 6px;
}

.dicas h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #8a2caa;
}
.contato {
    background: #e6d8ee;
    padding: 20px;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contato h3 {
    text-align: center;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.contato a {
    color: #8a2caa;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.contato a:hover {
    color: #5e0f7f;
    text-decoration: underline;
}

.info-contato {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.info-contato div {
    flex: 1 1 300px;
    background: #e6d8ee;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.telefone {
    background: yellow;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 5px;
}