@font-face {
	font-family: 'Avenir Next';
	src: url('../styles/fonts/avenir-next-regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: 'Avenir Next', 'Montserrat', "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	background: #000;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

:root{
	--bg:#000;
	--text:#fff;
	--muted:#cfcfcf;
	--gold:#c89b1a;
}

.site-header {
    color-scheme: dark;
	background: transparent;
	padding: 1.4rem 4vw;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	transition: background 0.3s ease, color 0.3s ease;
}

.site-header.is-dark .header-nav a {
    color: #fff;
}

.site-header.is-dark {
    background: transparent;
}

.site-header.menu-open {
    background: #000;
}

.site-header.menu-open .header-nav a {
    color: #fff;
}

.site-header:hover {
    background: var(--bg);
}
.site-header:hover .header-nav a {
    color: var(--text);
}


.header-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-nav {
	display: flex;
	gap: 5rem;
	align-items: center;
}

.header-nav a {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	transition: color 0.3s ease;
	white-space: nowrap;
}


.site-header:hover .header-nav a:hover {
	color: var(--gold);
}

@media (max-width: 900px) {
    .site-header {
        background: transparent;
    }

    .site-header.menu-open {
        background: #000;
    }
	.header-nav {
		gap: 1rem;
		font-size: 13px;
	}
    .site-header.menu-open .header-nav a {
        color: #fff;
    }

    .site-header.menu-open .header-nav a.active {
        color: #d4a21a; /* amarelo */
    }
}

@media (max-width: 768px) {
	.header-inner {
		flex-direction: column;
		gap: 1rem;
	}
	
	.header-nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.8rem;
	}
}

.menu-toggle {
    display: none !important;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 10001;
        padding: 0;
        margin-left: auto;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .header-inner {
        justify-content: flex-end;
        position: relative;
    }

    .header-nav {
        display: none; 
        position: fixed;
        top: 0;
        right: 0;
        width: 281px; 
        max-width: 415px; 
        height: 100vh;  
        background-color: #000;
        opacity: 1;      
        flex-direction: column;
        justify-content: flex-start; 
        align-items: flex-start;
        padding-top: 59px;   
        padding-left: 40px;  
        gap: 1px;           
        z-index: 10000;
    }

    .header-nav.active {
        display: flex;
    }

	.header-nav a {
		font-size: 24px; 
		font-weight: 400;
		color: #fff; 
		text-decoration: none;
		display: block;
		width: 100%;
		padding-top: 30px;
		padding-bottom: 30px;
		border-bottom: none;
		transition: color 0.2s ease;
		text-align: left;
		-webkit-tap-highlight-color: transparent; 
	}

	.header-nav a:active, 
	.header-nav a:hover,
	.header-nav a:focus {
		color: #c89b1a !important;
	}

}


.hero-section {
    display: flex;
    min-height: 125vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

.hero-left {
    flex: 0 0 43%;
    background: #000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.058);
    -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 30%, transparent);
    mask-image: linear-gradient(to right, black 30%, transparent);
}

.logo-container {
    text-align: left;
    margin-top: -30px;
    margin-left: -20px;
    padding-left: 0px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 280px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.video-label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.hero-right {
    flex: 1;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 80px 60px 150px;
    text-align: left;
}

.hero-right h1 {
    font-size: 50px;
    font-weight: 400;
    margin: 0 0 30px 0;
    letter-spacing: 4px;
}

.hero-right p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin: 0;
    text-align: left;
}

.hero-right strong {
    font-weight: 700;
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-left {
        flex: 0 0 auto;
        min-height: 300px;
    }
    
    .hero-right {
        padding: 40px 30px;
    }
    
    .hero-right h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
}

.solutions-section {
    display: flex;
    min-height: 70vh;
    background: #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 2;
}

.solutions-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.solutions-left h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    color: #000;
}

.solutions-left .highlight {
    color: var(--gold);
    font-weight: 400;
}

.solutions-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-right p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 500px;
    margin: 0;
    color: #000;
}

@media (max-width: 900px) {
    .solutions-section {
        flex-direction: column;
    }
    
    .solutions-left,
    .solutions-right {
        padding: 40px 30px;
    }
    
    .solutions-left h2 {
        font-size: 24px;
    }
}

.numbers-section {
    display: flex;
    background: #000;
    color: #fff;
    min-height: 120vh;
    position: sticky;
    top: 0;
    z-index: 2;
}

.numbers-left {
    flex: 0 0 35%;
    padding: 60px 40px 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.numbers-left h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #fff;
}

.numbers-left .since {
    color: var(--gold);
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 30px 0;
}

.numbers-left .description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #fff;
}

.numbers-right {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.pillar-image-container {
    position: relative;
    width: 170px;
}

.pillar-image {
    width: 100%;
    height: auto;
    display: block;
}

.pillar-text-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.stat-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.stat-number {
    color: var(--gold);
    font-size: 36px;
    font-weight: 400;
    display: inline-block;
}

.stat-highlight {
    color: var(--gold);
}

.pillar {
    border: 1px solid var(--gold);
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    border-radius: 1px;
    width: 170px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.7s ease;
    cursor: pointer;
}

.pillar-title {
    transition: opacity 0.7s ease;
}

.pillar-content {
    position: absolute;
    inset: 0;
    background: var(--gold);
    color: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease 0.15s;
    border-radius: 1px;
}

.pillar-content h3 {
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #fff;
    width: 100%;
    text-align: center;
}

.pillar-content p {
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.pillar:hover .pillar-title {
    opacity: 0;
}

.pillar:hover .pillar-content {
    opacity: 1;
    transition-delay: 0.15s;
}

.pillar:not(:hover) .pillar-content {
    transition-delay: 0s;
}

.pillar:hover {
    background: var(--gold);
    border-color: var(--gold);
    height: 240px;
    z-index: 10;
}

@media (max-width: 900px) {
    .numbers-section {
        flex-direction: column;
    }
    
    .numbers-left,
    .numbers-right {
        flex: 1;
        padding: 40px 30px;
    }
    
    .stats-grid,
    .pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-left h2 {
        font-size: 24px;
    }
}

.clients-carousel-wrapper {
    position: sticky;
    top: 0;
    z-index: 3;
}

.clients-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-background {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.clients-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.clients-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.clients-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 2;
}

.clients-content h2 {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .clients-background {
        height: 300px;
    }
    
    .clients-content {
        bottom: 30px;
        left: 30px;
    }
    
    .clients-content h2 {
        font-size: 32px;
    }
}

.carousel-section {
    width: 100%;
    background: #000;
    padding: 20px 0;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-logos {
    display: flex;
    align-items: center;
    gap: 120px;
    padding: 0 60px;
}

.carousel-logos img {
    height: 50px;
    width: auto;
    min-width: 100px;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

.carousel-logos img[src="images/logo-casadosaber.svg"],
.carousel-logos img[src="images/logo-rio-design-barra.svg"],
.carousel-logos img[src="images/logo-spp-paulista.svg"],
.carousel-logos img[src="images/logo-4U.svg"] {
    height: 90px;
    max-width: 200px;
}

.carousel-logos img[src="images/logo-rio-design-leblon.svg"],
.carousel-logos img[src="images/logo-aliansce.svg"]{
    height: 105px;
    max-width: 190px;
}

.carousel-logos img[src="images/logo-ancar-ivanhoe.svg"]{
    height: 125px;
    max-width: 200px;
}

.carousel-logos img[src="images/logo-patio-batel.svg"]{
    height: 180px;
    max-width: 200px;
}

.carousel-logos img[src="images/logo-saphyr.svg"]{
    height: 200px;
    max-width: 200px;
}

.carousel-logos img[src="images/logo-spp-leblon.svg"]{
    height: 160px;
    max-width: 200px;
}
.carousel-logos img[src="images/logo-ac.svg"]{
    height: 250px;
    max-width: 200px;
}

.carousel-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    color: var(--gold);
}

.carousel-btn-prev {
    margin-left: 40px;
}

.carousel-btn-next {
    margin-right: 40px;
}

@media (max-width: 900px) {
    .carousel-section {
        padding: 50px 0;
        gap: 20px;
    }
    
    .carousel-logos {
        gap: 80px;
        padding: 0 40px;
    }
    
    .carousel-logos img {
        height: 40px;
        min-width: 80px;
        max-width: 120px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 36px;
    }
    
    .carousel-btn-prev {
        margin-left: 20px;
    }
    
    .carousel-btn-next {
        margin-right: 20px;
    }
}

.contact .socials{
  margin-top: 12px;
  justify-content: flex-start;
}

.contact-intro-section{
  background: #d3d3d3;
  padding: 60px 4vw;
  text-align: center;
  position: relative;
  z-index: 4;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}

.contact-intro-section h2 {
	font-size: 36px;
	font-weight: 400;
	margin: 0 0 15px 0;
	color: #000;
	letter-spacing: 2px;
}

.contact-intro-section p {
	font-size: 18px;
	margin: 0;
	color: #000;
}

@media (max-width: 900px) {
	.contact-intro-section {
		padding: 40px 30px;
	}
	
	.contact-intro-section h2 {
		font-size: 28px;
	}
}

.contact-form-section {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 4;
}

.contact-form select {
	padding: 10px 15px;
	background: rgba(211, 211, 211, 0.7);
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	color: #000;
	appearance: none;
	cursor: pointer;
}

.contact-form-background {
	position: relative;
	width: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #000;
}

.contact-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% top;
	z-index: 0;
}

.contact-form-container {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 80px;
	align-items: center;
	padding: 50px 60px;
	max-width: 100%;
	width: 100%;
	justify-content: flex-start;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 0 0 320px;
	max-width: 320px;
	margin-left: 20px;
}

.contact-form input,
.contact-form textarea {
	padding: 10px 15px;
	background: rgba(211, 211, 211, 0.7);
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	color: #000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #000000;
}

.contact-form textarea {
	resize: vertical;
	min-height: 80px;
}

.recaptcha-container {
	display: flex;
	align-items: center;
	padding: 10px 0;
}

.recaptcha-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
}

.recaptcha-checkbox {
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: var(--gold);
}

.recaptcha-label span {
	color: #fff;
	font-size: 16px;
}

.submit-btn {
	background: var(--gold);
	color: #000;
	padding: 12px 55px;
	border: none;
	border-radius: 7px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	width: fit-content;
	align-self: center;
}

.submit-btn:hover {
	background: #DAA521;
}

.contact-message {
	flex: 1;
	display: flex;
	align-items: flex-start;
    justify-content: center;
    padding-left: 450px;
    margin-top: 300px;
}

.contact-message p {
	color: #fff;
	font-size: 20px;
	line-height: 1.6;
	text-align: left;
	margin: 0;
}

@media (max-width: 900px) {
    .contact-intro-section {
        background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6)), url('../images/img-carteira-contato.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        text-align: left;
        padding: 40px 30px;
        margin-bottom: 0;
        border-bottom: none;
    }

    .contact-form select {
    background: #EAEAEA;
    color: #333;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    }

    .contact-intro-section h2 {
        color: #fff; 
        font-size: 34px;
        font-weight: 400;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .contact-intro-section p {
        color: #ddd; 
        font-size: 14px;
        line-height: 1.4;
        max-width: 90%;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    }


    .contact-form-section {
        background-color: #000; 
        margin-top: -2px; 
    }

    .contact-form-background {
        background: #000;
        min-height: auto; 
        padding-top: 20px;
    }

    .contact-bg-image {
        display: none;
    }

    .contact-form-container {
        flex-direction: column;
        padding: 30px 24px 60px 24px;
        gap: 30px;
    }

    .contact-form {
        max-width: 75%;
        width: 100%;
        margin-left: 0;
        flex: auto;
    }

    .contact-form input,
    .contact-form textarea {
        background: #EAEAEA; 
        color: #333;
        border-radius: 6px;
        margin-bottom: 8px;
        border: 1px solid transparent;
        font-size: 14px;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #555; 
    }

    .submit-btn {
        width: 60%; 
        margin-top: -10px;
        padding: 10px;
        font-weight: 500;
        border-radius: 6px;
        color: white;
    }

    .contact-message {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
        padding: 0 10px; 
    }

    .contact-message p {
        color: #B0B0B0; 
        font-size: 14px;
        line-height: 1.4;
        text-align: center; 
        max-width: 300px; 
    }

    .recaptcha-container {
        justify-content: center;
        padding: 15px 0;
    }
}

.site-footer{
    background:var(--bg);
    color:var(--text);
    padding:48px 0vw 20px;
    position:relative;
    z-index: 4;
    overflow:visible;
}

.footer-inner{
    display:flex;
    gap:2rem; 
    align-items:flex-start;
    padding: 0 4vw;
    box-sizing:border-box;
}

.footer-col{flex:1}
.footer-left { flex: 4; min-width: 220px; display:flex; flex-direction:column; align-items:flex-start; }
.footer-center { flex: 0.8; }
.footer-right { flex: 0.5; min-width: 140px; text-align: right; }


.brand .logo{
    font-size:40px;
    font-weight:700;
    letter-spacing:4px;
}
.brand .tag{font-size:12px;color:var(--muted);margin-top:6px}

.brand{
  margin-bottom: 25px;
}

.socials.socials-left{
  justify-content: flex-start;
  margin-top: 14px;
}

.socials.socials-top{
  display: flex;
  justify-content: flex-start;
  align-items: center;

  width: fit-content;
  margin-left: 0;
  padding-left: 0;

  margin-top: -80px;
  margin-bottom: 25px;
}

.footer-left{
  align-items: flex-start !important;
}

.brand-logo{
    width:220px;
    max-width:100%;
    height:auto;
    display:block;
    margin:-21px; 
    position:relative;
    top:-38px;
}

.contact{margin-top:0}
.contact h4{margin:0 0 10px 0;font-weight:600;color:var(--text)}
.contact-item{display:flex;align-items:center;gap:10px;color:var(--muted);margin:6px 0}
.contact-item a{color:var(--muted);text-decoration:underline}
.ic{width:24px;height:24px;color:var(--gold)}
.mail-icon{width:24px;height:24px;display:block;object-fit:contain}
.phone-icon{width:24px;height:24px;display:block;object-fit:contain}

.contact .contact-item,
.contact .phone-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.contact .contact-item span,
.contact .phone-item span,
.contact .contact-item a{
    font-size:14px;
    color:var(--muted);
}

.footer-nav{display:flex;flex-direction:column;gap:8px}
.footer-nav a{color:var(--muted);text-decoration:none;font-size:14px}
.footer-nav a:hover{color:var(--text)}

.socials{display:flex;justify-content:flex-end;gap:14px}
.social-icon{display:inline-flex;align-items:center;justify-content:center;padding:6px;color:var(--gold);text-decoration:none;border:none;background:transparent}
.social-icon svg{width:20px;height:20px}
.social-icon:hover{background:transparent;color:var(--gold)}


.social-img{width:40px;height:40px;object-fit:contain;display:block}

.footer-divider{
    height:1px;
    background:var(--gold);
    margin:28px 0 40px;
    position:relative;
    left:50%;
    transform:translateX(-50%);
    width:100vw;
}

.footer-bottom{max-width:1200px;padding: 0 4vw;padding-top:12px;padding-bottom:18px}
.credit{color:var(--muted);font-size:13px;font-weight:400}
.credit strong{color:var(--text);font-weight:400}


@media (max-width:900px){
    .footer-inner{flex-direction:column;align-items:flex-start}
    .footer-right{text-align:left}
    .socials{justify-content:flex-start}
}

@media (max-width:480px){
    .brand .logo{font-size:28px}
    .site-footer{padding:32px 4vw 16px}
}

@media (max-width: 900px) {
  .hero-section{
    position: relative;   
    top: auto;
    min-height: auto;
  }

  .hero-left{
    min-height: 60vh;     
  }

  .hero-video{
    transform: none;                
    object-position: center 35%;     
    -webkit-mask-image: none;       
    mask-image: none;                
  }

  .logo-container{
    margin-top: -48px;   /* sobe a logo */
    margin-left: -12px;
  }

  .hero-logo{
        width: 150px;
        padding-top: 70px;
        padding-left: 20px;      
  }
      .carousel-section {
    padding: 20px 0;
    gap: 10px;
  }

  .carousel-container {
    max-width: 100%;
  }

  .carousel-logos {
    gap: 40px;          /* reduz espaço entre logos */
    padding: 0 20px;    /* reduz margem lateral */
  }

  .carousel-logos img {
    height: 50px;
    min-width: 140px;
    max-width: 160px;
  }

  .carousel-btn {
    font-size: 28px;
    width: 32px;
    height: 32px;
  }

  .carousel-btn-prev {
    margin-left: 10px;
  }

  .carousel-track {
    display: flex;
    align-items: center;
  }

  .carousel-btn-next {
    margin-right: 10px;
  }
}

.sound-alert {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7); 
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
    text-align: center;
    white-space: nowrap;
}

.sound-alert.hidden {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 900px) {
    .numbers-section{
        position: relative !important;
        top: auto !important;
        min-height: auto !important; 
        height: auto !important;
    }


    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 15px;
        margin-top: 20px;
    }

    .pillar {
        width: 100%; 
        height: 120px; 
    }
    
    .pillar-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

}

.popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px;
}

.popup-overlay.is-open{ display: flex; }

.popup{
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 22px 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.popup h3{
  margin: 0 0 8px 0;
  font-weight: 400;
  letter-spacing: 1px;
}

.popup p{
  margin: 0 0 16px 0;
  color: #cfcfcf;
  line-height: 1.5;
}

.popup-close{
  background: var(--gold);
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  color: #000;
}

.audio-toast{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 99999;

  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(0,0,0,.75);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 10px 14px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  font-size: 14px;
  line-height: 1;
  max-width: calc(100vw - 32px);
  white-space: nowrap;
}

.audio-toast-btn{
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
}

.audio-toast-close{
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px 6px;
  opacity: .85;
}

.audio-toast-close:hover{ opacity: 1; }

@media (max-width: 900px){
  .audio-toast{ bottom: 18px; font-size: 13px; }
}

.audio-toast { pointer-events: auto; }
.audio-toast * { pointer-events: auto; }

.audio-toast[hidden]{
  display: none !important;
}

/* ========= SOCIALS TOP (replicar igual em todas as páginas) ========= */

.site-footer .socials.socials-left.socials-top{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;

  width: fit-content;
  margin-left: 0;
  padding-left: 0;

  margin-top: -80px;
  margin-bottom: 25px;

  position: relative;
  z-index: 20;
}

.site-footer .socials.socials-left.socials-top .social-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  padding: 0;

  background: transparent;
  border: none;
  text-decoration: none;

  cursor: pointer;
  position: relative;
  z-index: 21;
  -webkit-tap-highlight-color: transparent;
}

.site-footer .socials.socials-left.socials-top .social-img{
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  max-width: none;
  pointer-events: none;
}

/* evita pseudo-elementos decorativos bloquearem clique */
.site-footer::before,
.site-footer::after{
  pointer-events: none;
}

@media (max-width: 900px){
  .site-footer .socials.socials-left.socials-top{
    margin-top: 14px;
    margin-bottom: 20px;
  }

  .site-footer .socials.socials-left.socials-top .social-icon{
    width: 58px;
    height: 58px;
  }

  .site-footer .socials.socials-left.socials-top .social-img{
    width: 42px;
    height: 42px;
  }
}

/* ===== iPad / Tablets (corrige espaço preto + sticky bug) ===== */
@media (min-width: 768px) and (max-width: 1366px){

  .hero-section{ min-height: 100vh !important; }
  .numbers-section{ min-height: 0 !important; }

  .hero-right{
    padding: 80px 40px 60px 70px !important;
  }

  .stats-grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .pillar-image-container,
  .pillar{
    width: 100% !important;
  }
}