/* Estilos Gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fdf6f9; /* Fundo suave */
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #ff69b4; /* Rosa suave */
    color: white;
    text-align: center;
    padding: 30px 0;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
}

.navbar ul li {
    display: inline;
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Seção Sobre Mim */
.sobre-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
    border-bottom: 2px solid #ff69b4; /* Delicado border */
}

.sobre-section h2 {
    font-size: 36px;
    color: #ff69b4; /* Título rosa */
    margin-bottom: 20px;
}

.sobre-section p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #555;
}

.service-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-box {
    width: 30%;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box i {
    font-size: 40px;
    color: #ff69b4; /* Ícone rosa */
}

/* Seção Portfólio */
.portfolio-section {
    padding: 80px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

/* Estilos da seção de portfólio */
/* Estilos da seção de portfólio */
.portfolio-section {
    text-align: center;
    padding: 50px 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espaçamento entre os itens */
}

.gallery-item {
    position: relative;
    width: 300px; /* Largura das imagens */
    height: 200px; /* Altura das imagens */
    overflow: hidden; /* Esconde o que exceder */
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05); /* Aumenta um pouco ao passar o mouse */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Para manter a proporção */
    border-radius: 10px; /* Bordas arredondadas */
}

/* Estilo para a sobreposição da imagem */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Fundo preto com transparência */
    color: white;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.3s; /* Transição suave */
}

.gallery-item:hover .image-overlay {
    opacity: 1; /* Aparece ao passar o mouse */
}

/* Seção Contato */
.contato-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.contato-section h2 {
    font-size: 36px;
    color: #ff69b4;
    margin-bottom: 20px;
}

.contato-section p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.contato-form input,
.contato-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border: 1px solid #ff69b4; /* Borda rosa ao focar */
}

.contato-form button {
    padding: 15px;
    background-color: #ff69b4; /* Botão rosa */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.contato-form button:hover {
    background-color: #e55a8c; /* Tom mais escuro ao passar o mouse */
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #8a2be2; /* Fundo do rodapé */
    color: white;
}

footer p {
    margin: 0;
    font-size: 14px;
}

.social2 {
    margin-top: 10px;
}

.social-icon2 {
    margin: 0 10px;
    font-size: 20px;
    color: white;
    transition: color 0.3s;
}

.social-icon2:hover {
    color: #ff69b4; /* Hover rosa */
}


/* Ícones das redes sociais fixos */
.social-fix {
    z-index: 99999;
    position: fixed;
    right: 20px; /* Distância da borda direita */
    bottom: 20px; /* Distância da borda inferior */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaçamento entre os ícones */
}

.social-icon {
    background-color: #ff69b4; /* Fundo rosa */
    color: white; /* Cor dos ícones */
    padding: 10px;
    border-radius: 50%; /* Ícones circulares */
    transition: background-color 0.3s, transform 0.3s; /* Efeitos de transição */
}

.social-icon:hover {
    background-color: #e55a8c; /* Cor ao passar o mouse */
    transform: scale(1.1); /* Aumenta um pouco o ícone ao passar o mouse */
}

.social-icon i {
    font-size: 24px; /* Tamanho do ícone */
}
