body {
    background-color: #0e1621;
    font-family: 'Roboto', sans-serif;
    color: #d1d1d1;
    margin: 0;
    padding: 0;
}

.home-container {
    padding: 20px;
}

.nome {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

/* Serviços */
.servicos-section {
    text-align: center;
    margin: 70px 0;
}

.servicos-section h2 {
    font-size: 2.5rem;
    color: #b0a7d8;
    margin-bottom: 20px;
}

.servicos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.servico-item {
    display: flex;
    background-color: #1b2533;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(16, 27, 40, 0.8);
    transition: transform 0.3s;
}

.servico-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 20px rgba(176, 167, 216, 0.3);
}

.servico-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.servico-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #b3b3b3;
    text-align: left;
}

.servico-texto h3 {
    color: #b0a7d8;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.servico-texto p {
    font-size: 0.9rem;
}

.servico-texto .lermais {
    display: inline-block;
    color: #b0a7d8;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}


/* Portfólio */
.portfolio-section {
    text-align: center;
    margin: 70px 0;
}

.portfolio-section h2 {
    font-size: 2.5rem;
    color: #b0a7d8;
    margin-bottom: 20px;
}

.portfolio-section p {
    color: #b3b3b3;
    margin-bottom: 20px;
}

/* Cards de Portfólio */
.cards-portfolio {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.card-adventure {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(16, 27, 40, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px; 
    height: 250px; 
}

.card-adventure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.card-adventure:hover img {
    transform: scale(1.05); 
}

.card-adventure:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #0e1621;
    margin-top: 50px;
    border-top: 1px solid #333; 
}

.footer-link {
    color: #b0a7d8;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #8fa1d1;
}

.footer p {
    color: #666;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Header */
.site-header {
    background-color: #0e1621;
    color: #d1d1d1;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    width: 100px;
    border-radius: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #d1d1d1;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #576ca8;
}


/* Grid de Portfólio */
.portfolio-grid {
    display: grid;
    gap: 15px;
    padding: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    margin: 0 auto;
    max-width: 1200px;
}

.grid-item {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background-color: #1b2533;
    box-shadow: 0px 4px 8px rgba(16, 27, 40, 0.5);
    transition: transform 0.3s ease;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3);
}

.grid-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 10px 20px rgba(16, 27, 40, 0.6);
}

/* Seção de Detalhes do Portfólio */
.portfolio-detalhes {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.portfolio-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 50px;
    border-top: 1px solid #333;
    padding: 20px 0; /* Adiciona padding em cima e embaixo */
}

.portfolio-item img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.portfolio-texto {
    max-width: 600px;
}

.portfolio-texto h3 {
    font-size: 1.8rem;
    color: #b0a7d8;
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.portfolio-texto p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    text-align: justify;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Responsividade */
@media (max-width: 768px) {
    .portfolio-item {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-item img {
        width: 100%;
    }

    .portfolio-texto {
        max-width: 100%;
    }
}

.contact-section {
    text-align: center;
    background-color: #0e1621;
    color: #d1d1d1;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #b0a7d8;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.contact-card {
    background-color: #1b2533;
    padding: 20px;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(16, 27, 40, 0.8);
}

.contact-card h3 {
    color: #b0a7d8;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-card p, .contact-card a {
    font-size: 1rem;
    color: #b3b3b3;
    text-decoration: none;
}

.contact-card a:hover {
    color: #8fa1d1;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1b2533;
    color: #d1d1d1;
}

form button {
    background-color: #576ca8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #8fa1d1;
}

/* Estilos do Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.modal-navigation {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 0 20px;
}

.prev, .next {
    user-select: none;
}


