body {
    font-family: 'Raleway', sans-serif;
    background-color: #666;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

p a {
	color: #808080;
}

p a:hover {
	color: #FFF;
}

#about p a { color: #066; }
#about p a:hover { color: #F36; }

#contact p a { color: #066; }

footer span {
    color: #FFF;
    font-size: 16px;
}

footer span a:hover { text-decoration: underline }

.tm-logo-font {
    font-family: 'Oswald', sans-serif;
}

.tm-container {
    max-width: 1200px;
}

.parallax-window {
    min-height: 1064px;
    background: transparent;
}

.tm-text-white {
    color: #FFFFFF;
}

.tm-text-yellow {
    color: #FC6;
}

.tm-text-gold {
    color: #CC9966;
}

.tm-text-brown {
    color: #544639;
}

.tm-text-blue {
    color: #2a5382;
}

.tm-text-green {
    color: #006666;
}

a.tm-bg-green:hover {
    background-color: #0a8585;
}

.tm-bg-brown {
    background-color: #544639;
}

.tm-bg-blue {
    background-color: #2a5382;
}

.tm-bg-black {
    background-color: black;
}

.tm-bg-gray {
    background-color: #333333;
}

.tm-bg-green {
    background-color: #006666;
}

.tm-border-gold {
    border-color: #CC9966;
}

.tm-border-blue {
    border-color: #00b4c0;
}

.tm-intro-width {
    max-width: 436px;
}

.tm-item-container {
    max-width: 520px;
}

.input:focus {
    outline: none !important;
    border: 1px solid #00b4c0;
    box-shadow: 0 0 10px #00b4c0;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(214, 212, 212);
    opacity: 1; /* Firefox */
}
  
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(214, 212, 212);
}
  
input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(214, 212, 212);
}

#tm-nav {
    z-index: 1000;
    transition: all 0.3s ease;
}

#tm-nav.scroll {
    background-color: rgba(0,0,0,0.7);
}

#tm-nav li a {
    border-bottom-color: transparent;
    transition: all 0.3s ease;
}

    #tm-nav li a.current,
    #tm-nav li a:hover {
        border-bottom: 4px solid #2A5382;
    }

.tm-text-2xl {
    font-size: 1.2rem;
    line-height: 2rem;
}

@media (min-width: 768px) {
    #tm-nav.scroll .tm-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    #tm-nav {
        width: auto;
        right: 0;
        border-radius: 5px;
    }
}

@media (max-width: 639px) {
    .parallax-window {
        min-height: 600px;
    }
}

@media (max-width: 370px) {
    .tm-menu-item {
        flex-direction: column;
    }

    .tm-menu-item-2 {
        flex-direction: column-reverse;
    }

    .tm-menu-item img {
        margin-bottom: 10px;
    }

    .tm-menu-item-2 img {
        margin-bottom: 10px;
    }
}



/* Container principal */
.image-text-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
/* Container das imagens */
.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
/* Estilo individual para cada imagem */
.image-item {
    box-sizing: border-box;
    margin-bottom: 15px;
    text-align: center;
    background-color: dimgray;
    border-radius: 25px;
}
    /* Imagem responsiva */
    .image-item img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 25px;
    }
/* Texto abaixo das imagens */
.text-content {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    color: white;
}

/* Para telas médias e grandes - 4 imagens lado a lado */
@media (min-width: 768px) {
    .image-item {
        width: calc(25% - 10px); /* 4 imagens com espaçamento */
    }
}

/* Para telas pequenas - 2 imagens por linha */
@media (max-width: 767px) and (min-width: 480px) {
    .image-item {
        width: calc(50% - 10px); /* 2 imagens com espaçamento */
    }
}

/* Para telas muito pequenas - 1 imagem por linha */
@media (max-width: 479px) {
    .image-item {
        width: 100%; /* 1 imagem */
    }
}