/* Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Configuração geral */
body {
    font-family: 'Exo 2';
    line-height: 1.6;
}

/* Configuração de Sections */
section {
    padding-top: 20px;
    padding-bottom: 30px;
}

h1, h2 {
    text-align: left;
    padding-left: 40px;
    margin-left: 0;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    text-shadow: 10px 10px 5px rgba(1, 1, 1, 1);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

p {
    margin-left: 40px;
    margin-right: 40px;
}

/* Cabeçalho */
.header {
    position: sticky;
    top: 0;
    background: #0c0c0c;
    padding: 10px 0;
    z-index: 999;
}

.logo {
    width: 100px;
    cursor: pointer;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
    padding: 0;
    margin: 0;
}

.menu li a {
    text-decoration: none;
    color: #ffffff;
}

/* MENU HAMBURGUER */
.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 20px;
        background-color: #0c0c0c;
        padding: 20px;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .menu.active {
        display: flex;
    }
}


/* Seção principal */
.home {
    height: 100vh;
    background: url('img/backgrounds/Bem\ vindos\ a\ Fork.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Serviços de Locação */
.services {
    padding: 50px 20px;
    background-color: #ffffff;
}

.services h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: left;
    padding-left: 40px;
    margin-left: 0;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    width: 150px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.service-item p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}

.service-item:hover {
    transform: scale(1.05);
    cursor: pointer;
}
/* Orçamentos */
.orcamento {
    padding: 50px 40px;
    background-color: #ffffff;
  }
  
  .orcamento h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-bottom: 30px;
  }
  
  #orcamentoForm {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Exo 2';
  }
  
  .form-group textarea {
    resize: vertical;
  }
  
  #orcamentoForm button {
    background-color: #007BFF;
    color: #fff;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
  }
  
  #orcamentoForm button:hover {
    background-color: #0056b3;
  }
  

/* Cases (Carousel de imagens) */
.carousel-section {
    padding: 40px 0;
    background-color: #000;
}

.carousel-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    height: 700px;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-image-wrapper {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border: none;
}

/* Overlay de título */
.image-title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-image-wrapper:hover .image-title-overlay {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

/* Rodapé */
.footer {
    background: black;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer a img {
    width: 30px;
    margin: 0 10px;
}

/* Botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 50%;
    height: auto;
}

/* Formulário Trabalhe Conosco */
#trabalheForm {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#trabalheForm button {
    align-self: flex-start;
    padding: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    margin-bottom: 5px;
}

input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}


