/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8f8f8, #eaeaea);
    color: #333;
    overflow-x: hidden;
    transition: background 0.5s ease;
  }
  
  /* Efeito de gradiente que segue o mouse */
  body::before {
    content: "";
    position: fixed;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(241,196,15,0.3) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  /* Seção 1: Imagem de fundo */
  .section1 {
    position: relative;
    background-image: url('/imagens/sec_01.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
  }
  .section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .section1 h1,
  .section1 h2 {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
  .section1 h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  .section1 h2 {
    font-size: 2rem;
  }
  
  /* Seção 2: Destaques sobre a empresa */
  .section2 {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    text-align: center;
    z-index: 2;
    position: relative;
  }
  .section2 h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #444;
  }
  .highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .highlight {
    flex: 1 1 300px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  .highlight h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #222;
  }
  .highlight p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Seção 3: Galeria de Imagens (Carousel) */
  .section3 {
    padding: 60px 20px;
    text-align: center;
    z-index: 2;
    position: relative;
  }
  .section3 h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #444;
  }
  .swiper-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
  }
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    transition: transform 0.5s ease;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  /* Zoom suave no slide ativo */
  .swiper-slide-active img {
    transform: scale(1.05);
  }
  
  /* Seção 4: Mensagem Motivacional */
  .section4 {
    padding: 60px 20px;
    background: #333;
    color: #fff;
    text-align: center;
    z-index: 2;
    position: relative;
  }
  .section4 .motivational-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .section4 h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #f1c40f;
  }
  .section4 p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
  }
  
  /* Seção 5: Rodapé */
  footer {
    background: #dbdbdb;
    color: #141414;
    padding: 20px;
    text-align: center;
    z-index: 2;
    position: relative;
  }
  footer p {
    margin: 5px 0;
  }
  footer a {
    color: #584909;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
  }
  footer a:hover {
    color: #fff;
  }
  
  /* Estilos para os modais */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .modal-content {
    background: #fff;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
  }
  .modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
  }
  .modal-text {
    margin-top: 40px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Media Queries para mobile */
  @media (max-width: 768px) {
    .section1 h1 {
      font-size: 2.8rem;
    }
    .section1 h2 {
      font-size: 1.6rem;
    }
    .section2 h2, 
    .section3 h2, 
    .section4 h2 {
      font-size: 2rem;
    }
    .swiper-slide {
      height: 300px;
    }
    .highlight {
      flex: 1 1 90%;
    }
  }
  