a.one:link {color: #fff;}
a.one:visited {color: #fff;}
a.one:hover {color: #ffcc00;}


.page{
  max-width: 60em;
  margin: 0 auto;
}
table th,
table td{
  text-align: left;
}
table.layout{
  width: 100%;
  border-collapse: collapse;
}
table.display{
  margin: 1em 0;
}
table.display th,
table.display td{
  border: 1px solid #B3BFAA;
  padding: .5em 1em;
}

table.display th{ background: #D5E0CC; }
table.display td{ background: #fff; }

table.responsive-table{
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px){
    table.responsive-table{
      box-shadow: none;  
    }
    table.responsive-table thead{
      display: none; 
    }
  table.display th,
  table.display td{
    padding: .5em;
  }
    
  table.responsive-table td:nth-child(1):before{
    content: 'Nome';
  }
  table.responsive-table td:nth-child(2):before{
    content: 'Descrição';
  }
  table.responsive-table td:nth-child(1),
  table.responsive-table td:nth-child(2){
    padding-left: 25%;
  }
  table.responsive-table td:nth-child(1):before,
  table.responsive-table td:nth-child(2):before{
    position: absolute;
    left: .5em;
    font-weight: bold;
  }
  
    table.responsive-table tr,
    table.responsive-table td{
        display: block;
    }
    table.responsive-table tr{
        position: relative;
        margin-bottom: 1em;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    }
    table.responsive-table td{
        border-top: none;
    }
    table.responsive-table td.organisationnumber{
        background: #D5E0CC;
        border-top: 1px solid #B3BFAA;
    }
    table.responsive-table td.actions{
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        background: none;
    }
}
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 60px auto;
  padding: 24px;
  border-radius: 12px;
  width: 96%;
  max-width: 650px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 18px;
}

.modal-content h4 {
  text-align: center;
  margin-bottom: 18px;
}

.modal-body {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.col-esquerda {
  flex: 1 1 60%;
  background-color: #f9f9f9;
  padding: 14px 14px 14px 18px;
  border-radius: 8px;
  min-width: 200px;
  /* Limite de altura + scroll para descrição grande */
  max-height: 250px;
  overflow-y: auto;
}

.col-direita {
  flex: 1 1 35%;
  background-color: #f1f1f1;
  padding: 14px 18px;
  border-radius: 8px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.col-direita p {
  margin: 8px 0;
  font-size: 15px;
}

.paypal-btn {
  background-color: #0070ba;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 22px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.3s;
}
.paypal-btn:hover {
  background-color: #005ea6;
}

.close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: color 0.2s;
}
.close:hover {
  color: #BFAA12;
}

/* Responsivo para celular */
@media (max-width: 600px) {
  .modal-content {
    padding: 12px;
  }
  .modal-body {
    flex-direction: column;
    gap: 8px;
  }
  .col-esquerda, .col-direita {
    min-width: 100px;
    padding: 10px 8px;
  }
}




body {
            margin: 0;
			background-color: black;
            font-family: Arial, sans-serif;
        }

        /* MENU */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #000000; /* Preto 100% */
            padding: 10px 20px;
            position: relative;
        }

        .logo img {
		max-height: 100px;
		width: auto;
		transition: max-height 0.3s ease;
		}

        .logo {
            display: flex;
            align-items: center;
			margin-right: 50px; /* ou ajuste o valor que achar melhor */
        }

        .menu {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .menu a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            padding: 8px 12px;
            transition: background-color 0.3s;
        }

        .menu a:hover {
            background-color: #575757;
            border-radius: 4px;
        }

        /* Botão Sign In dourado */
        .menu a.signin {
            background-color: #BFAA12;
            color: white;
            border-radius: 25px;
            padding: 8px 20px;
            font-weight: bold;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
		
		a.signin {
            background-color: #BFAA12;
            color: white;
            border-radius: 25px;
            padding: 8px 20px;
            font-weight: bold;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .menu a.signin:hover {
            background-color: #9e8f10;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
		
		a.signin:hover {
            background-color: #9e8f10;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        /* Checkbox escondido */
        #menu-toggle {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 4px 0;
        }

        /* Mobile menu */
        @media (max-width: 768px) {
            .menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 20px;
                background-color: #000000;
                border-radius: 4px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.3);
                width: 200px;
            }

            .menu a {
                padding: 12px;
                margin: 0;
                border-bottom: 1px solid #444;
            }

            .menu a:last-child {
                border-bottom: none;
            }

            .hamburger {
                display: flex;
            }

            #menu-toggle:checked + .hamburger + .menu {
                display: flex;
            }

            /* Ajuste do tamanho do logo em telas pequenas */
            .logo img {
                max-height: 150px;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                max-height: 70px;
            }
        }


		.geral {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
           
            padding: 60px 20px;
            background-color: #BFAA12;
            background-image: url('fundo1.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;	
        }
		
		
        /* HERO SECTION COM FUNDO FIXO */
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
          
            padding: 60px 20px;			
			max-width: 1400px; /* Limite máximo desejado */
			margin: 0 auto;     /* Centraliza */
			padding: 60px 20px;
	
        }

        .hero h1 {
            font-family: 'Times New Roman', Times, serif;
            font-size: 50px;
            margin-bottom: 0px;
            color: white;
        }
		
		.hero h2 {
            font-family: 'Times New Roman', Times, serif;
            font-size: 25px;
            margin-bottom: 0px;
            color: white;
        }
		
		.hero h3 {
            font-family: 'Arial' serif;
            font-size: 16px;
            margin-bottom: 30px;
            color: white;
        }
		
		.hero h4 {
            font-family: 'Times New Roman', Times, serif;
            font-size: 35px;
            margin-bottom: 0px;
            color: white;
        }

        .hero p {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 20px;
            line-height: 1.8;
            max-width: 900px;
            color: white;
        }

        /* Responsivo: aumenta fontes em telas grandes */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 40px;
				
            }
			
			.hero h2 {
                font-size: 27px;
            }
			
			.hero h3 {
                font-size: 18px;
            }
			
			.hero h4 {
                font-size: 37px;
            }

            .hero p {
                font-size: 22px;
            }

            .logo img {
                max-height: 70px;
            }
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 60px;
            }
			
			.hero h2 {
                font-size: 30px;
            }
			
			.hero h3 {
                font-size: 20px;
            }
			
			.hero h4 {
                font-size: 40px;
            }

            .hero p {
                font-size: 24px;
            }

            .logo img {
                max-height: 150px;
            }
        }
		
		/* GALERIA DE 4 COLUNAS COM TEXTO */
		.gallery {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
		padding: 20px;
		text-align: center;
		
		}
		
		.gallery2 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 10px;
		text-align: center;
		box-shadow: 10px 4px 8px rgba(0,0,110,0.2);
		transition: transform 0.3s;
		background: #252525;
		border-radius: 35px;
		margin-top:20px;
		}

		.gallery-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		}
		.gallery-item1 {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
		background: #252525;
		
		}

		.gallery-item img {
		width: 100%;
		max-width: 320px;
		height: auto;
		border-radius: 10px;
		box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		transition: transform 0.3s;
		}
		.gallery-item1 img {
		width: 100%;
		max-width: 320px;
		height: auto;
		border-radius: 10px;
		box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		transition: transform 0.3s;
		}

		.gallery-item img:hover {
		transform: scale(1.05);
		}
		.gallery-item1 img:hover {
		transform: scale(1.05);
		}

		.gallery-item p {
		margin-top: 10px;
		font-size: 16px;
		color: #333;
		}
		.gallery-item1 p {
		margin-top: 10px;
		font-size: 16px;
		color: #333;
		}

		/* Responsivo */
		@media (max-width: 1024px) {
		.gallery {
		grid-template-columns: repeat(2, 1fr);
		}
		.gallery2 {
		grid-template-columns: repeat(2, 1fr);
		box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		transition: transform 0.3s;
		}
		}

		@media (max-width: 600px) {
		.gallery {
        grid-template-columns: 1fr;
		}
		.gallery2 {
        grid-template-columns: 1fr;
		box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		transition: transform 0.3s;
		}
	}
	
	.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid white;
    color: white;
    background-color: transparent;
    border-radius: 35px;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
	}

	.btn-outline:hover {
    background-color: white;
    color: #BFAA12; /* Cor dourada ao passar o mouse */
	}

	.menu a.active {
    background-color: #c0c0c0;
	color: black;
    border-radius: 4px;
}


.language-bar {
    background-color: #fff;
    text-align: right;
    padding: 5px 0;
}

.language-bar a {
    text-decoration: none;
    font-size: 20px;
    margin: 0 10px;
    transition: transform 0.2s;
}

.language-bar a:hover {
    transform: scale(1.3);
}
