body {
    font-family: 'Roboto', sans-serif;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Adicionando animação de fade-in para elementos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elementos escondidos inicialmente para serem revelados com o scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

/* Estilo do menu */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

nav ul li a:hover {
    color: #ff8c00; /* Cor dourada */
}

/* Animação do Toggle Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Menu responsivo */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        display: flex;
        animation: slideIn 0.5s forwards;
    }

    nav ul li {
        margin-bottom: 15px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Animações */
@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Estilo geral para a seção */
.services-grid {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Esconde o conteúdo que sai da tela */
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: max-content;
    position: relative;
    animation: scroll 30s linear infinite; /* Ajuste o tempo da animação para que seja suave */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Desloca metade dos itens para criar o looping contínuo */
    }
}

.service-item {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.service-item:hover img {
    transform: scale(1.2);
    filter: grayscale(0%);
}

/* Texto estilizado */
.service-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1.2px;
    transition: background-color 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
    z-index: 3;
}

.service-item:hover .service-text {
    background-color: #ff8c00;
    transform: translateY(-20px);
    opacity: 1;
}

/* Overlay com animações */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.service-item:hover .service-overlay {
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.2));
}

/* Animação de brilho e luz */
@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.service-item:hover .service-text {
    animation: glow 1s infinite alternate;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .services-container {
        animation: scroll 15s linear infinite; /* Velocidade de rotação mais rápida em dispositivos menores */
    }

    .service-item {
        height: 300px;
    }

    .service-text {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

.map-section {
    text-align: center;
    padding: 20px;
    background-color: white;
}




/* Banner */
.banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease, filter 1s ease;
    filter: brightness(0.5);
}

.banner-slide:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.text-overlay {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.banner-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #ff8c00, #f5c242, #ff8c00);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: text-glow 3s infinite alternate ease-in-out, fadeIn 2s ease-out;
}

.banner-subtitle {
    font-size: 2rem;
    margin-top: 15px;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 3s ease forwards 1s;
}

.banner-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: #ff8c00;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.7);
}

.banner-button:hover {
    background: #f5c242;
    box-shadow: 0 12px 30px rgba(255, 140, 0, 1);
}

.lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    animation: lighting-move 10s infinite ease-in-out;
    pointer-events: none;
    opacity: 0.7;
}


@keyframes text-glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.6), 0 0 30px rgba(255, 140, 0, 0.4);
    }
    50% {
        text-shadow: 0 0 40px #ff8c00, 0 0 60px rgba(255, 140, 0, 0.8);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.6), 0 0 30px rgba(255, 140, 0, 0.4);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 1.5rem;
    }

    .banner-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Seção Hero - Quem Somos */


.about-hero {
    position: relative;
    height: 30vh;
    background-image: url("http://www.arnoto.com/proxy.php?url=https%3A%2F%2Fwww.ordine.com.br%2Fcss%2FFotos%2Fhero-bg.jpg"); /* Grande imagem de fundo */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-bottom: 0; /* Remove padding extra */
}

.hero-title {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff8c00, #f5c242);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #f5f5f5;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Reduz o tamanho do divisor */
    background: url("http://www.arnoto.com/proxy.php?url=https%3A%2F%2Fwww.ordine.com.br%2Fcss%2FFotos%2Fwave-divider.svg") no-repeat center bottom;
    background-size: cover;
}

/* Seção de Informações */
.about-info {
    padding: 40px 20px; /* Diminui o padding superior e inferior */

    text-align: center;
}
.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px; /* Diminui a distância entre texto e imagem */
    align-items: center;
    justify-content: space-between;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    position: relative;
}

.info-text h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ff8c00;
}

.company-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-image img:hover {
    transform: scale(1.05);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .about-hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .info-container {
        flex-direction: column;
        gap: 20px;
    }

    .info-text h2 {
        font-size: 2rem;
    }
}

footer {
    background-color: black;
    padding: 40px 0;
    color: #ffffff;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .clients {
    margin-bottom: 30px;
  }
  
  .clients h3 {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.05rem;
    margin-bottom: 20px;
  }
  
  .client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .client-logo {
    height: 100px;
    width: auto;
    max-width: 180px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .client-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
  }
  
  .developed-by {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  
  .developed-by::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff8c00;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .developed-by:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .developed-by:hover {
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  .rights-reserved {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .client-logos {
      gap: 20px;
    }
  
    .client-logo {
      height: 80px;
      max-width: 150px;
    }
  
    .clients h3 {
      font-size: 2rem;
    }
  
    .developed-by {
      font-size: 0.9rem;
    }
  
    .rights-reserved {
      font-size: 0.8rem;
    }
  }
  

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#projects-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-title {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-align: center;
}

@media (max-width: 768px) {
    .projects-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .projects-title {
        font-size: 1.5rem;
    }
}

/* Seção de Nossas Obras */
#nossas-obras {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-align: center;
}

.slider-container {
    position: relative;
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 18s infinite;
    transition: transform 1s ease;
}

.slide {
    width: 33.33%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease, filter 1s ease;
    filter: brightness(80%);
}

.slider:hover img {
    transform: scale(1.05);
    filter: brightness(100%);
}

/* Botões de navegação */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

/* Animação de rotação */
@keyframes slide {
    0%, 20% {
        transform: translateX(0);
    }
    33%, 53% {
        transform: translateX(-33.33%);
    }
    66%, 86% {
        transform: translateX(-66.66%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
    .projects-title {
        font-size: 2rem;
    }
    .nav-button {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .projects-title {
        font-size: 1.5rem;
    }
    .slider-container {
        height: 250px;
    }
}

/* Seção Infotrabalho */
.Infotrabalho-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

/* Container principal */
.Infotrabalho-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    height: 100%;
    width: 100%;
    gap: 80px;
    animation: slideUp 1.2s ease-in-out;
}

/* Estilo da Imagem e Overlay */
.Infotrabalho-image-container {
    position: relative;
    flex: 1;
    max-width: 50%;
    height: 100%; /* Aumenta a altura da imagem para se ajustar ao conteúdo */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.Infotrabalho-image-container img {
    width: 100%; /* Largura responsiva */
    height: auto;
    max-height: 500px; /* Altura máxima da imagem para balancear com o texto */
    transition: transform 1s ease, filter 0.5s ease;
    border-radius: 15px;
    filter: brightness(70%);
    object-fit: cover; /* Garante que a imagem preencha o container de forma adequada */
}

.Infotrabalho-image-container:hover img {
    transform: scale(1.05);
    filter: brightness(100%);
}

.Infotrabalho-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    transition: opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.Infotrabalho-image-container:hover .Infotrabalho-image-overlay {
    opacity: 0.7;
}

/* Estilo do Conteúdo */
.Infotrabalho-content {
    flex: 1;
    text-align: left;
    animation: fadeIn 1.5s ease-in-out;
    padding-right: 20px;
}

.Infotrabalho-title {
    font-size: 3.5rem;
    color: #333; /* Cor sólida para o título */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.Infotrabalho-subtitle {
    font-size: 2rem;
    color: #4a4a4a; /* Cor cinza chumbo */
    margin-bottom: 30px;
}

.Infotrabalho-description {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    animation: fadeInText 1.2s ease-in-out forwards;
    opacity: 0;
}

/* Animações Avançadas */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .Infotrabalho-container {
        flex-direction: column;
        gap: 30px;
    }

    .Infotrabalho-title {
        font-size: 2.5rem;
    }

    .Infotrabalho-subtitle {
        font-size: 1.8rem;
    }

    .Infotrabalho-content {
        padding-right: 0;
        text-align: center;
    }

    .Infotrabalho-image-container {
        max-width: 100%; /* A imagem ocupa 100% da largura em dispositivos móveis */
    }
}

/* Hero Section da Usina */
.usina-hero {
    position: relative;
    height: 30vh;
    background-image: url("http://www.arnoto.com/proxy.php?url=https%3A%2F%2Fwww.ordine.com.br%2Fcss%2FFotos%2Fusina-background.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.usina-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-in-out;
}

.usina-hero-title {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #ff8c00, #f5c242);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção de Sobre a Usina */
.usina-about-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.usina-container {
    display: flex;
    max-width: 1800px;
    width: 100%;
    justify-content: space-between;
    gap: 50px;
}

.usina-content {
    flex: 1;
    animation: slideUp 1.2s ease-in-out;
}

.usina-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.usina-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    animation: fadeInText 1.5s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.usina-image-container {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
}

.usina-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease, filter 0.5s ease;
    object-fit: cover;
    filter: brightness(85%);
}

.usina-image-container:hover img {
    transform: scale(1.05);
    filter: brightness(100%);
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .usina-content, .usina-image-container {
        max-width: 100%;
        width: 100%;
    }

    .usina-hero-title {
        font-size: 3rem;
    } 
      }


      #contact {
        padding: 100px 0;
        color: #333;
        font-family: 'Arial', sans-serif;
      }
      
      #contact .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        animation: fadeIn 1.5s ease-in-out;
        flex-wrap: wrap; /* Flexibilidade extra para telas menores */
      }
      
      #contact .column {
        flex: 1;
        padding: 0 20px;
        opacity: 0;
        transform: translateY(50px);
        animation: slideUp 1s forwards;
      }
      
      #contact .column.left {
        animation-delay: 0.3s;
      }
      
      #contact .column.center {
        animation-delay: 0.5s;
      }
      
      #contact .column.right {
        animation-delay: 0.7s;
      }
      
      #contact h3 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        color: #000000;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        position: relative;
      }
      
      #contact h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: #ff8c00;
        margin-top: 10px;
        transition: width 0.3s ease-in-out;
      }
      
      #contact h3:hover::after {
        width: 80px;
      }
      
      #contact p {
        font-size: 1.2rem;
        line-height: 1.8rem;
        margin-bottom: 15px;
        transition: color 0.3s ease-in-out;
      }
      
      #contact a {
        color: #ff8c00;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      #contact a:hover {
        color: rgba(255, 140, 0, 0.4);
      }
      
      #contact .social-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease;
        display: inline-block;
      }
      
      #contact .social-icon:hover {
        transform: scale(1.1);
        opacity: 0.8;
      }
      
      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      
      /* Responsividade */
      @media (max-width: 1024px) {
        #contact .container {
          flex-wrap: wrap;
        }
      
        #contact .column {
          flex: 1 1 45%; /* Ajusta para 2 colunas em telas médias */
          padding: 20px;
        }
      }
      
      @media (max-width: 768px) {
        #contact .container {
          flex-direction: column;
          text-align: center;
        }
      
        #contact .column {
          padding: 20px 0;
          flex: 1 1 100%; /* Colunas empilhadas em telas pequenas */
        }
      
        #contact .social-icon {
          margin-right: 0;
          margin-bottom: 15px;
        }
      }
 /* Seção Trabalhe Conosco */
#trabalhe-conosco {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

#trabalhe-conosco .container {
    max-width: 800px;
    margin: 0 auto;
}

#trabalhe-conosco h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333333;
}

#trabalhe-conosco form {
    display: flex;
    flex-direction: column;
}

#trabalhe-conosco label {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333333;
}

#trabalhe-conosco input[type="text"],
#trabalhe-conosco input[type="file"] {
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

#trabalhe-conosco input[type="submit"] {
    padding: 15px;
    font-size: 1.2rem;
    background-color: #ff8c00;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#trabalhe-conosco input[type="submit"]:hover {
    background-color: #f5c242;
}

/* Seção de Mensagem (Obrigado e Erro) */
#mensagem {
    padding: 100px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#mensagem .container {
    max-width: 800px;
    margin: 0 auto;
}

#mensagem h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

#mensagem p {
    font-size: 1.5rem;
    color: #555555;
    line-height: 1.8;
}     

#trabalhe-conosco textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
    resize: vertical; /* Permite redimensionar verticalmente */
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

#trabalhe-conosco textarea::placeholder {
    color: #aaaaaa;
}
