/* Base Styles */
body {
	background-color: #121212;
	color: #cdfab1;
	font-family: 'Integral CF';
	src: url('fonts/integralcf-regular.ttf') format('truetype');
	font-weight: normal;
    font-style: normal;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

/* Hero Section */
.hero-logo {
	max-width: 75px;
	margin-bottom: 20px;
}

.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	/* background-image: url('https://marques.lawyer/images/gamer/Background.webp'); */
	/* background-size: cover;
	background-position: center; */
	color: #ffffff;
}

.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	/* Adjust the alpha value to make the video dimmer or brighter */
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 20px;
}

.hero-section h1,
.hero-section h2 {
	font-family: 'Press Start 2P', cursive;
	text-transform: uppercase;
	color: #cdfab1;
}

.hero-section h1 {
	font-size: 4em;
	margin-bottom: 10px;
}

.hero-section h2 {
	font-size: 2em;
	margin-bottom: 30px;
}

/* Hero Buttons */
.hero-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* Center the buttons */
	gap: 15px;
	/* Reduced gap for smaller spacing */
	margin-top: 20px;
}

.hero-buttons a,
.hero-buttons .whatsapp-button {
	width: 20%;
	/* Set button width to 35% */
	padding: 10px 0;
	/* Adjust padding to maintain proportional height */
	font-size: 1.1em;
	/* Reduced font size */
	color: #ffffff;
	background-color: #25d366;
	border: 2px solid #0f0;
	/* Bright green border for a gaming effect */
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	/* Center text inside the button */
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-buttons a::before,
.hero-buttons .whatsapp-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: rgba(255, 255, 255, 0.15);
	transition: all 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0;
	transform: translate(-50%, -50%) rotate(45deg);
}

.hero-buttons a:hover::before,
.hero-buttons .whatsapp-button:hover::before {
	opacity: 1;
	width: 0;
	height: 0;
}

.hero-buttons a:hover,
.hero-buttons .whatsapp-button:hover {
	background-color: #1eb851;
	transform: scale(1.1);
	/* Slightly larger on hover */
	box-shadow: 0 0 15px #0f0;
	/* Neon-like shadow for gaming effect */
}

.hero-buttons a:nth-child(2),
.hero-buttons a:nth-child(3) {
	background-color: #121212;
	color: #cdfab1;
	border-color: #cdfab1;
}

.hero-buttons a:nth-child(2):hover,
.hero-buttons a:nth-child(3):hover {
	background-color: #1e1e1e;
	color: #ffffff;
	box-shadow: 0 0 15px #cdfab1;
}

/* Gallery Section */
.carousel-item img {
	width: 100%;
	height: 800px;
	object-fit: cover;
	border-radius: 10px;
}

.carousel-caption h5 {
	font-family: 'Press Start 2P', cursive;
	color: #cdfab1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: invert(100%);
}


/* Accordion Section Redesign */
.accordion-section {
    padding: 50px 0;
    background-color: #121212;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.accordion-section p {
    text-align: justify; /* Justifica o texto nos parágrafos da seção de acordeão */
}

.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.service-card {
    display: flex;
    height: 235px;
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    position: relative;
    transform-origin: center top;
}

.card-image {
    flex: 0 0 33.333%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 0 0 66.666%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    color: #cdfab1;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
}

.card-content p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        height: auto;
    }

    .card-image {
        flex: 0 0 200px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .card-content {
        flex: 1;
        padding: 20px;
    }
}

/* Content Section */
.content-section {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #1e1e1e;
	padding: 20px;
	color: #ffffff;
	text-align: center;
}

.content-section img {
	width: 200px;
	height: 400px;
	object-fit: cover;
	margin: 0 20px;
}

.content-text {
	flex: 1;
	padding: 20px;
}

/* About Section */
.about-section {
	padding: 50px 0;
	color: #e0e0e0;
}

.about-section h3 {
	font-family: 'Press Start 2P', cursive;
	text-align: center;
	color: #cdfab1;
}

.about-section h4 {
	color: #cdfab1;
}

.about-section p {
	color: #e0e0e0;
	line-height: 1.6;
	text-align: justify;
}

/* Partner Section */
.partners-section {
	padding: 50px 0;
	background-color: #2a2a2a;
}

.partners-carousel {
	position: relative;
	overflow: hidden;
	padding: 20px 0;
}

/* Gradientes para fade */
.partners-carousel::before,
.partners-carousel::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100px;
	height: 100%;
	z-index: 2;
}

.partners-carousel::before {
	left: 0;
	background: linear-gradient(to right, rgba(42, 42, 42, 0.8), transparent);
}

.partners-carousel::after {
	right: 0;
	background: linear-gradient(to left, rgba(42, 42, 42, 0.8), transparent);
}

.partners-track {
	display: flex;
	gap: 40px;
	animation: scroll 120s linear infinite;
	width: calc(1000%);
}

.partner-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.partner-logo {
	height: 100px;
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

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

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.carousel-item h4 {
	color: #cdfab1;
	margin-top: 10px;
}

.carousel-item p {
	color: #e0e0e0;
	text-align: center;
	max-width: 80%;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.partner {
		flex-direction: column;
		text-align: center;
	}

	.partner-logo {
		margin-bottom: 15px;
	}
}

/* Footer */
footer {
	background-color: #1e1e1e;
	color: #ffffff;
	text-align: center;
	padding: 20px 0;
}

a {
	text-decoration: none;
	color: #cdfab1;
}

a:hover {
	text-decoration: underline;
}

/* Instagram Embed */
.instagram-embed {
	text-align: center;
	margin: 50px 0;
	background-color: #2a2a2a;
	padding: 20px;
	border-radius: 10px;
}

.instagram-embed iframe {
	border-radius: 10px;
	border: 2px solid #cdfab1;
}

/* Team Section */
.team-section {
	padding: 50px 0;
	background-color: #2a2a2a;
}

.team-section .row {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}

/* Team Section */
/* .team-section {
    position: relative;
    padding: 50px 0;
    background-color: #1e1e1e;
}

.background-layers .color-underlay {
    background-color: #2a2a2a;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-layers .background-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-section-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin-bottom: 30px;
}

.team-image-container {
    width: 100%;
    height: auto;
}

.team-member-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-image:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 255, 0, 0.5);
}

.team-member-info {
    text-align: center;
    color: #e0e0e0;
    margin-top: 15px;
}

.team-member-info h2 {
    color: #cdfab1;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5em;
}

.team-member-info p {
    font-size: 1em;
    line-height: 1.6;
    color: #d0d0d0;
} */

/* Mobile view adjustments */
@media (max-width: 768px) {
    .team-section-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Gallery Mobile Adjustments */
@media (max-width: 768px) {
	.gallery {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 1fr);
	}

	.gallery img {
		height: auto;
	}

	.content-section {
		flex-direction: column;
		height: auto;
	}

	.content-section img {
		margin: 20px 0;
	}
}

/* Hero Mobile Adjustments */
@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2em;
		/* Adjusted font size for smaller screens */
	}

	.hero-section h2 {
		font-size: 1.2em;
		/* Adjusted font size for smaller screens */
	}

	.hero-buttons a,
	.hero-buttons .whatsapp-button {
		width: 50%;
	}

	.hero-logo {
		max-width: 75px;
	}

	.hero-section h1 {
		font-size: 2em;
		/* Adjusted for smaller screens */
	}

	.hero-section h2 {
		font-size: 1.2em;
		/* Adjusted for smaller screens */
	}
}


.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-img-container {
    position: relative;
    width: 100%;
    height: 436px;
    overflow: hidden;
    border-radius: 10px;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}

.team-img-container:hover .team-overlay,
.team-img-container:active .team-overlay {
    opacity: 1;
}

.accordion-section p {
    text-align: justify;
}