body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
}

header {
    background-color: #ffffff;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Bodoni Moda', serif;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #71ae60;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: rgba(172, 197, 133, 0.5);
}

main {
    padding: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 3px;
    
    width: 100% - 56px;
    bottom: 0;
}

.logo {
    height: 110px;
    width: auto;
    margin-right: 20px;
}

h1 {
    font-family: 'Bodoni Moda', serif;
    color: #71ae60;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.social-icon {
    width: 50px;
    margin-left: 10px;
}

.carousel {
    position: relative;
    max-width: 1250px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-image {
    width: 75%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin: 0 10px;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.carousel-images .carousel-image {
    transform: scale(0.9);
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: rgba(255, 255, 255, 1);
}

.photo-text-sections {
    max-width: 1200px;
    margin: 40px auto;
}

.section-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-item:nth-child(odd) .section-image {
    order: 1;
}

.section-item:nth-child(even) .section-image {
    order: 2;
}

.section-image {
    width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.section-content {
    width: 50%;
    padding: 20px;
}

.section-content h2 {
    font-size: 28px;
    color: #71ae60;
}

.section-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.section-item:nth-child(even) {
    flex-direction: row-reverse;
}

.ver-mais {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #71ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.ver-mais:hover {
    background-color: #5b8b4d;
}

.section-decoration {
    width: 100%;
    height: auto;
    margin-bottom: -30%;
}

.section-content {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-content h2 {
    margin-top: 0;
    font-size: 28px;
    color: #71ae60;
}

.section-decoration1 {
    width: 110%;
    height: auto;
    margin-top: -15%;
    margin-left: -5%;
    margin-bottom: 10px;
}

.section-decoration2 {
    width: 110%;
    height: auto;
    margin-top: -5%;
    margin-left: -5%;
    margin-bottom: 10px;
}

.section-decoration3 {
    width: 100%;
    height: auto;
    margin-top: -5%;
    margin-left: -5%;
    margin-bottom: -30%;
}

.section-decoration4 {
    width: 100%;
    height: auto;
    margin-top: -5%;
    margin-left: -5%;
    margin-bottom: 10px;
}

.temas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tema-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
}

.tema-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tema-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tema-item:hover .tema-image {
    transform: scale(1.05);
}


.ver-mais {
    display: inline-block;
    padding: 10px 20px;
    background-color: #71ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    font-size: 16px;
}

.ver-mais:hover {
    background-color: #5b8b4d;
}

/* Galeria de imagens */
.galeria-imagens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.galeria-imagens img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-imagens img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Seção de contato */
.contato-section {
    margin-top: 40px;
}

.contato-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #71ae60;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.contato-btn:hover {
    background-color: #5b8b4d;
}

/* Seção Sobre */
.sobre-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.sobre-section h2 {
    font-size: 36px;
    color: #71ae60;
    margin-bottom: 20px;
    font-family: 'Bodoni Moda', serif;
}

.sobre-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sobre-section h3 {
    font-size: 28px;
    color: #71ae60;
    margin-top: 30px;
    font-family: 'Bodoni Moda', serif;
}

.sobre-section ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.sobre-section ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

/* Imagem na seção Sobre */
.sobre-image {
    margin-top: 30px;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Botão de contato */
.contato-section {
    margin-top: 40px;
}

.contato-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #71ae60;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.contato-btn:hover {
    background-color: #5b8b4d;
}

/* Seção de Avaliações */
.avaliacoes-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.avaliacoes-section h2 {
    font-size: 36px;
    color: #71ae60;
    margin-bottom: 20px;
    font-family: 'Bodoni Moda', serif;
}

.avaliacoes-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.avaliacoes-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.avaliacao-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
}

.avaliacao-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.avaliacao-texto {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
}

/* Botão de contato */
.contato-section {
    margin-top: 40px;
}

.contato-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #71ae60;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.contato-btn:hover {
    background-color: #5b8b4d;
}

/* Estilo para a seção de avaliações */


/* Título com o botão do Google */
.titulo-com-botao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.titulo-com-botao h2 {
    font-size: 30px;
    color: #71ae60;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color:#71ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-google:hover {
    background-color: #4b7240;
}

.google-icon {
    width: 25px;
    margin-right: 10px;
}

/* Estilo das avaliações */




/* Estilo da seção de contato */
.contato-section {
    margin-top: 40px;
    text-align: center;
}

.contato-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #71ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.contato-btn:hover {
    background-color: #5b8b4d;
}