body {
    background-color: #131a20;
    color: #fff;
    margin: 0;
    font-family: Mulish, sans-serif;
    padding-top: 40px; /* espaço por causa da nav fixa */
}

h3{
    color:goldenrod;
}

a{
    color:goldenrod;
}



.navbar {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1f242b;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
    z-index: 1000;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px; /* espaço entre contato e botão */
    margin-right: 20px;
}

.navbar-logo {
    font-size: 28px;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8),
                 0 0 10px rgba(4, 28, 71, 0.8),
                 0 0 20px rgba(10, 86, 185, 0.6);
    margin-left: 20px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #cec2c2;
    letter-spacing: 4.5px;
}



.navbar-button {
    display: flex;
    align-items: center;
    background-color: #131a20;
    border: 1px solid #495260;
    color: #495260;
    padding: 8px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navbar-button i {
    margin-right: 8px;
}

.navbar-button:hover {
    background-color: #192129;
    cursor:pointer;
}

.swiper {
    width: 100%;
    max-width: calc(80% - 0px);
    height: 650px;
    margin: 40px auto;
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    
}

@media (max-width: 768px) {
    .swiper {
        width: 100%;
        max-width: 400px;
    }
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f242b;
    background: #12191f;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
     object-fit: contain; 
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #00bcd4;
    opacity: 1;
}

.footer {
    background: linear-gradient(135deg, #131a20 0%, #162029 50%, #192330 100%);
    color: #ccc;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9rem;
    margin-top: 40px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 20px;
    justify-items: center;
}

.card {
    width: 300px;
    height: 440px;
    background: #1c2a3b;
    background-color: #151d25;
    /* border-radius: 15px; */
    border:1px solid #33424f;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    justify-content: flex-start; 
}

.card h3 {
    margin-top: 0; /* remove espaço extra acima */
}

.card:hover,.card:focus {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(10, 86, 185, 0.3);
  outline: none;
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        margin: 20px 20px;
    }
    
    .card {
        width: 100%;
        margin:10px;
        margin-left: 30px;
        margin-right: 30px;
        height: auto;
        padding: 30px 20px;
    }
}

.list-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-ul li {
    margin: 17px 0;
    letter-spacing: 1.5px;
}

/* MODAL */

/* Botão flutuante */
.contact-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1ba0f3;
    color: white;
    border: 1px solid #495260;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 2000;
    transition: background-color 0.3s ease;
}



/* Modal fundo */
.modal {
    display: none; /* escondido por padrão */
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

/* Conteúdo do modal */
.modal-content {
    background-color: #1d242f;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    height:400px;
    color: #cec2c2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

/* Botão fechar */
.close-btn {
    color: #cec2c2;
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* Inputs e textarea */
.modal-content input,.modal-content textarea {
    width: calc(100% - 20px);
    padding: 10px;
    padding: 15px 10px 15px 10px;
    border: 1px solid #111a23;
    background-color: #111a23;
    color: #AEBCC0;
    margin:10px 0 10px 0 ;
    font-size:15px;
}

.modal-content textarea {
    margin-bottom:30px;
    height:140px;
}

.modal-content input:focus,.modal-content textarea:focus {
    outline:none;
    border: 1px solid #1a54a6;
    box-shadow: 0 0 0 3px rgba(26, 84, 166, 0.3);
    background-color: #111a23;
}

/* Botão enviar */
.send-btn {
    background-color: #1ba0f3;
    border:0px;
    color: white;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}



