/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7ecd6;
    color: #555e1f;
}

h1,
h2,
h3 {
    font-weight: 700;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #157e02;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #ffcc80;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 28px;
    margin: 0;
    color: #555e1f;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 0px;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ff6b6b;
}

/* Project Styles */
.project {
    background-color: #ffcc80;
    /* Cor de fundo do painel */
    border-radius: 10px;
    /* Borda arredondada */
    padding: 20px;
    /* Espaçamento interno */
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

.project-info {
    padding: 20px;
}

.project h3 {
    color: #555e1f;
    margin-bottom: 10px;
    font-family: 'FonteDesejada', cursive;
    /* Substitua 'FonteDesejada' pelo nome da fonte desejada */
    font-size: 20px;
    /* Altere o tamanho do texto conforme necessário */
}

.project ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.project ul li {
    margin-bottom: 10px;
    /* Espaçamento entre as tarefas */
}

.project ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project ul li a:hover {
    color: #ff6b6b;
}

/* Adiciona um hover effect suave */
.project:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
/* Footer Styles */
footer {
    background-color: #ffcc80;
    padding: 20px 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 30px;
}

/* Speech Bubble Styles */
.speech-bubble {
    position: relative;
    background-color: #ffcc80;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    transform: translateX(-50%);
}

.speech-bubble:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Button Styles */
.button-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.button-list li {
    margin-right: 10px;
}

.button {
    padding: 8px 30px;
    background-color: #167418;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #033d09;
    transform: translateY(-3px);
}

/* Project Title Styles */
.project-title {
    text-align: center;
    margin-bottom: 20px;
    
}

/* Image Styles */
.project-image {
    border: 4px solid #333;
    border-radius: 8px;
    margin-bottom: 20px;
}
.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
    margin-right: 20px;
}

.about-image img {
    width: calc(100% - 20px);
    /* Definindo a largura da imagem */
    max-width: 200px;
    /* Limitando a largura máxima da imagem */
    float: right;
    /* Posicionando a imagem à direita */
    border-radius: 8px;
    /* Adicionando borda arredondada */
    margin-top: 10px;
    /* Espaçamento superior */
}
/* Adicione este estilo para a fonte personalizada */
.handwritten {
    font-family: 'FonteDesejada', cursive;
    /* Substitua 'FonteDesejada' pelo nome da fonte desejada */
    font-size: 36px;
    /* Altere o tamanho do texto conforme necessário */
}
.task2-image {
    width: calc(100% - 20px);
    /* Definindo a largura da imagem */
    max-width: 1000px;
    /* Limitando a largura máxima da imagem */
    border-radius: 8px;
    /* Adicionando borda arredondada */
    margin-top: 10px;
    /* Espaçamento superior */
}