* {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

body:not(.home) {
    padding-top: 80px;

}

a {
    text-decoration: none;
    color: #fff;
    margin: 10px;
}

.italico {
    font-weight: 300;
}

.negrito {
    font-weight: bold;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-default:hover {
    background-color: #000;
    color: #fff;
}

h2 {
    font-size: 2rem;
    margin: 20px 20px;
}

h2.left {
    text-align: left;
    margin-left: 5px;
}

h2.right {
    text-align: right;
    margin-right: 20px;
}

p{
    font-style: normal;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 1000;
    padding: 30px 15px;
    border-radius: 10px;
    background-color: #424242;
}

.whatsapp-button i {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}



.whatsapp-button i:hover {
    transform: scale(1.1);
}

.back-to-top {
    opacity: 0;
    position: fixed;
    bottom: 95px;
    right: 15px;
    z-index: 12;
    padding: 22px 22px;
    border-radius: 10px;
    background-color: #424242;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.back-to-top i {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.back-to-top i:hover {
    transform: scale(1.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Fundo preto transparente */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.overlay span {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.overlay h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.overlay p {
    color: white;
    font-size: 16px;
    margin: 0;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container:hover .overlay {
    opacity: 1;
}

.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
}

.image-container img {
    width: 600px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
