* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            
            --primary-color: #cf0404; /* Cor principal (logo, títulos principais) */
            --secondary-color: #777; /* Cor secundária (hover, detalhes) */
            --accent-color: #00a3a3; /* Cor de destaque (não usada atualmente) */
            --light-color: #f5f5f5;
            --dark-color: #333;
            --gray-color: #333333;
            
            
            --logo-color: #cf0404; /* Cor do logo */
            --title-color: #cf0404; /* Cor dos títulos das seções */
            --carousel-icon-bg: #cf040400; /* Fundo do ícone do carrossel */
            --hero-btn-bg: #b11111cc; /* Fundo do botão do hero */
            --hero-btn-hover: #777; /* Hover do botão do hero */
            --modal-header-bg: #ffffff; /* Fundo do cabeçalho do modal */
            --modal-carousel-btn: rgba(207, 4, 4, 0.8); /* Botões do carrossel do modal */
            --modal-carousel-btn-hover: #cf0404; /* Hover dos botões do carrossel do modal */
            --footer-bg: #494949; /* Fundo do footer */
            --section-border: #777; /* Borda dos títulos das seções */
            --sidebar-title-color: #cf0404; /* títulos da sidebar */
            --carousel-item-h3: #cf0404; /* titulos dos itens do carrossel */
            --modal-images-title: #cf0404; /* titulo das imagens no modal */
            --carousel-overlay: linear-gradient(to bottom, rgba(53, 53, 53, 0.247), rgba(0, 0, 0, 0.5)); /* Overlay do carrossel */
        }

        body {
            background-color: #f9f9f9;
            color: var(--dark-color);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0px;
        }
        .container-footer {
            width: 100%;
           
            margin: 0 auto;
            padding: 0 0px;
        }

        
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
          width: 100%;
    padding: 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
              padding-left: 20px;
    padding-right: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
    color: inherit;
        }

        .logo-icon {
            color: #585858; 
            font-size: 2.5rem;
        }

        .logo-text h1 {
            color: var(--logo-color); 
            font-size: 1.8rem;
            line-height: 1.2;
             font-style: italic;
              font-family: "Times New Roman", Times, serif;
        }

        .logo-text span {
            font-size: 1rem;
            color: var(--gray-color);
            display: block;
        }
nav ul{
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

        nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 1.05rem;
        }

        nav a:hover {
            color: var(--secondary-color);
            text-decoration: none;
            
        }
/*
nav a.active{
    border-bottom: 2px solid rgb(97, 97, 97);
}
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--logo-color); 
            cursor: pointer;
        }*/

        /* Hero Section */
        .hero {
            background:  url('https://lxunbtvyngpjyuhxbygz.supabase.co/storage/v1/object/sign/test/HOME/Home%203_redim.png?token=eyJraWQiOiJzdG9yYWdlLXVybC1zaWduaW5nLWtleV82MTBkZGNjZS0yYjFlLTRiYzMtYWM1Mi0xYjU4ZjIxZDM0YWQiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJ0ZXN0L0hPTUUvSG9tZSAzX3JlZGltLnBuZyIsImlhdCI6MTc3MDAzMTMxOCwiZXhwIjoxODAxNTY3MzE4fQ.1glwXxCJFJ5BzTUVpphfalnSckjPCTH_IUFUJY4G9DI');
            background-size:cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
            
        }
.hero .container {
    padding: 0 20px;
}


        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .hero-btn {
            display: inline-block;
            background-color: var(--hero-btn-bg); 
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }

        .hero-btn:hover {
            background-color: var(--hero-btn-hover); 
        }

        /* Main Content */
        .main-content {
          display: block;
          gap: 0;
        }

        .content-left {
            flex: none;
            width: 100%;
        }

        .content-right {
            display: none;
        }

        .section-title {
            color: var(--title-color); 
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 5px;
            border-bottom: 1px solid var(--section-border); 
        }

        .about-text {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
        }

      
        .carousel-section {
            margin-bottom: 40px;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 1px 0;
            /*margin-top: 20px;*/
            background-color: #f5f5f5e8;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            margin-left: 20px;
            margin-top: 9px;
            margin-bottom: 10px;
        }

        .carousel-item {
            flex: 0 0 calc(100% / 4 - 20px);
            background-color: rgb(255, 255, 255);
            border-radius: 8px;
            box-shadow: 0 0px 5px rgba(0,0,0,0.08);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
    position:relative;
        }

        .carousel-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.13);
        }

        .carousel-item-image {
            height: 230px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #5f5f5f18; 
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.74);
        }

        .carousel-item-icon {
            font-size: 4rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.637);
        }

        .carousel-item-content {
            padding: 6px ;
            min-height: auto;
            justify-content: center;
        }

        .carousel-item h3 {
            color: #c91414; 
            margin-bottom: 1px;
            font-size: 1rem;
            text-align: center;
            margin-top: 5px;
        }


        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #c91414c2;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            font-size: 1.2rem;
            color: rgb(255, 255, 255); 
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s;
        }

        .carousel-btn:hover {
            background-color: #c91414;
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-dot.active {
            background-color: var(--secondary-color);
        }

       
        .sidebar-section {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }

        .sidebar-title {
            color: var(--sidebar-title-color); 
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .sidebar-list {
            list-style: none;
        }

        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

        .sidebar-list a {
            text-decoration: none;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }

        .sidebar-list a:hover {
            color: var(--secondary-color);
        }

footer {
    background-color: var(--footer-bg);
    width: 100%;
    
}

.lattes-icon{
        width: 15px;
        height: 15px;
}

.footer-inner {
    width: 100%;
    background-color: var(--footer-bg);
 
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
}

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
                padding-left: 20px;
    padding-right: 20px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column p {
          color: #ddd;
        }

        
.footer-title-lamp {
font-size: 2rem;
margin-top: 35px;
margin-left: 5px;
color: white;
font-family: "Times New Roman", Times, serif;
font-style: italic;
}
        
.footer-title {
margin-top: 20px;
font-size: 1.3rem;
margin-bottom: 20px;
color: white;

}
        

        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 12px;
        }

        .footer-list a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-list a:hover {
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
}

        .social-list {
    display: flex;
    gap: 18px;        
     margin-top: 5px;
}

.social-icon {
    color: #fff;
    font-size: 22px;
 transition: color 0.3s ease, transform 0.3s ease;

}

.social-icon:hover {
    color: #e63946;
    transform: translateY(-2px); /* ou a cor institucional do site */
}
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ffffff;
        }

       
/* OVERLAY */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MODAL */
.modal {
    background-color: #fff;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* HEADER */
.modal-header {
    background-color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #9797975d;
}

.modal-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #444;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--secondary-color);
}

/* BODY */
.modal-body {
    flex: 1;
    overflow-y: auto;
}

/* CONTEÚDO PRINCIPAL (GRID) */
.modal-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    padding: 40px;
}

/* IMAGENS */
.modal-images-container {
    padding: 0;
    background: transparent;
    border: none;
}

.modal-images-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.modal-images-track {
    display: flex;
    transition: transform 0.5s ease;
}

.modal-image-container {
    flex: 0 0 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-image {
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 4px;
}

/* BOTÕES DO CARROSSEL */
.modal-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--modal-carousel-btn);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.modal-carousel-btn.prev { left: 3px; }
.modal-carousel-btn.next { right: 3px; }

.modal-carousel-btn:hover {
    background-color: var(--modal-carousel-btn-hover);
}

/* DOTS */
.modal-images-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.modal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
}

.modal-dot.active {
    background-color: var(--secondary-color);
}

/* TEXTO */
.modal-description {
    padding: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
     font-family: "Times New Roman", Times, serif;
}

.modal-description p {
    margin-bottom: 20px;
    text-align: justify;
}

/* TEXTO INFERIOR (LARGURA TOTAL) */
.modal-description.full {

    grid-column: 1 / -1;
    margin-top: 10px;
}



/* RESPONSIVO */
@media (max-width: 900px) {

  .modal-content {
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

  .modal-images-container {
    order: 1;
  }

  .modal-description {
    order: 2;
    margin-top: 10px;
  }
}


@media (max-width: 768px) {

    
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-align: center;
  }



   nav ul {
    flex-direction: row; /* ← Alterado: lado a lado */
    flex-wrap: wrap; /* Se não couber, quebra linha */
    justify-content: center;
    gap: 15px; /* Espaço entre itens */
    padding: 10px 0;
    font-size: 0.95rem;
  }

  nav ul li {
    margin: 0;
  }

  nav a {
    padding: 8px 12px;
    white-space: nowrap;
  }

  .logo {
    flex-direction: column;
    gap: 5px;
  }

  .logo-text h1 {
    font-size: 1.4rem;
  }

  .logo-text span {
    font-size: 0.9rem;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
  }

    .section-title {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.5rem;
        text-align: center;

  }

  .about-text {
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
  }
   .carousel-container {
    overflow: hidden;
     padding: 0 16px;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
            
    margin: 0;       
    
  }

  .carousel-item {
    flex: 0 0 100%;  
    margin: 0;      
  }

  .carousel-item-image {
    height: 220px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

}

.lista-oqf {
  list-style: none;
  padding: 5px;
  margin-bottom: 5px;
}

.lista-oqf li {
  position: relative;
  padding-left: 20px;
}

.lista-oqf li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #cf0404; /* cor do site */
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 576px) {

  .modal-content {
    padding: 0;
  }

  .modal-images-container {
    width: 100%;
  }

  .modal-images-container img {
    width: 100%;
    border-radius: 0;
  }

  .modal-description {
    margin: 10px;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
  }
}
