@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap');

:root {
    --dark-blue: #050d18;
    --gold: #FFC300;
    --text-color: #e0e1dd;
    --glass-bg: rgba(13, 27, 42, 0.5);
    --glass-border: rgba(255, 195, 0, 0.3);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-color);
    position: relative; 
    overflow-x: hidden; 
    min-height: 100vh;
    background-image:
        radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 195, 0, 0.15), transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255, 195, 0, 0.3) 0%, transparent 40%), 
        radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.2) 0%, transparent 40%);
    background-attachment: fixed;
}

body::before {
    content: ''; 
    position: fixed; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    z-index: -1;
    transform: skewY(-20deg) rotate(20deg);
    background-image:
        linear-gradient(to right, rgba(255, 195, 0, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 195, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

body::after {
    content: ''; 
    position: fixed; 
    top: 0; left: 0; 
    width: 200%; 
    height: 100%; 
    z-index: -1;
    background: linear-gradient(to right, rgba(255, 195, 0, 0) 10%, rgba(255, 195, 0, 0.15) 30%, rgba(255, 195, 0, 0.05) 50%, rgba(255, 195, 0, 0) 70%);
    transform: skewX(-20deg); 
    animation: luz-fundo 10s infinite linear;
}

@keyframes luz-fundo { 0% { transform: translateX(-130%) skewX(-20deg); } 100% { transform: translateX(30%) skewX(-20deg); } }


#intro-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: var(--dark-blue);
    z-index: 1001;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

#intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.intro-content .intro-logo { 
    height: 200px; 
    margin-bottom: 20px; 
    filter: drop-shadow(2px 2px 20px var(--gold));
}



.intro-content h1 { 
    font-size: 3rem; 
    color: var(--gold); 
    margin-bottom: 40px; 
}

#explore-btn { 
    animation: pulse 2s infinite; 
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 195, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 195, 0, 0); }
}


.header {
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; 
    z-index: 100;
    background: rgba(5, 13, 24, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-100%); 
    transition: transform 0.8s ease-out;
}

.header.visible {
    transform: translateY(0); 
}

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 90px; 
}

.nav-logo img{ 
   height: 100px; 
}

.nav-menu { 
    display: flex;
    list-style: none;
    gap: 40px; 
}

.nav-link { 
    text-decoration: none; 
    color: var(--text-color); 
    font-weight: 600; 
    padding: 5px 0; 
    border-bottom: 2px solid transparent; 
    transition: all 0.3s; 
}

.nav-link:hover, .nav-link.active { 
    color: var(--gold); 
    border-bottom-color: var(--gold); 
}

.nav-toggle{
    display: none;
}


.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    
}

.page-header { 
    padding-top: 200px;
    padding-bottom: 80px;
    text-align: center; 
}

.page-header h1 { 
    font-size: 3rem; 
    color: var(--gold); 
    text-shadow: 0 0 15px rgba(255, 195, 0, 0.5); 
}

.glass-card {
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border); 
    border-radius: 15px;
    padding: 40px; 
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.glass-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    border-color: var(--gold); 
}

.btn {
    display: inline-block; 
    text-decoration: none; 
    padding: 12px 30px; 
    background-color: var(--gold);
    color: var(--dark-blue); 
    border-radius: 8px; font-weight: 700; 
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn:hover { 
    background-color: transparent; 
    color: var(--gold); 
    transform: scale(1.05); 
}


.hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
 }

.hero-content { 
    animation: fadeIn 1s ease-out 0.5s forwards; 
    opacity: 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    
} 

@keyframes fadeIn { 
    to { opacity: 1; } 
}

.hero-content h1 { 
    font-size: 4rem; 
    color: #fff; 
    text-shadow: 0 0 20px rgba(255, 195, 0, 0.7);
}


.hero-content p { 
    font-size: 1.2rem; 
    max-width: 600px; 
    margin: 20px 0 40px 0; 
    
}

.home-section { 
    padding: 80px 20; 
}

.home-section-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 40px; 
    margin-top: 50px;
    color: var(--gold); 
}

.diferenciais-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; text-align: center; 
}

.diferencial-card img { 
    height: 100px;    
    margin-bottom: 15px; 
}

.diferencial-card h3{
    padding-bottom: 10px;

}

#diferenciais{
    padding: 80px 20px;
}
.hidden-result {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}


.calculadora-container { 
    text-align: center; 
    max-width: 800px; 
    margin: auto; 
}

.calculadora-container h2 { 
    font-size: 2rem; 
    color: var(--gold); 
}

.calculadora-container p {
    margin: 15px 0 30px 0; 
}

.calculadora-form { 
    display: flex; 
    gap: 15px; 
    justify-content: center; 
    align-items: center; 
}

.calculadora-form input { 
    padding: 12px; 
    border-radius: 8px; 
    border: 1px solid var(--glass-border); 
    background: rgba(0,0,0,0.2); 
    color: var(--text-color); 
    font-size: 1rem; 
    width: 60%; 
}

.resultado { 
    margin-top: 30px; 
}

.resultado p { 
    margin: 0; 
}

.resultado h3 { 
    font-size: 2.8rem; 
    color: var(--gold); 
}

#como-funciona{
    padding: 80px 20px;
}


.timeline { 
    position: relative; 
    max-width: 800px; 
    margin: 0 auto; 
}


.timeline::after { 
    content: ''; 
    position: absolute; 
    width: 3px; 
    background-color: var(--glass-border);
    top: 0; 
    bottom: 0; 
    left: 50%; 
    margin-left: -1.5px; 
    z-index: -1; 
}

.timeline-item { 
    padding: 10px 40px; 
    position: relative; 
    width: 50%; 
}


.timeline-item:nth-child(odd) {
     left: 0; 
}

.timeline-item:nth-child(even) { 
    left: 50%; 
}

.timeline-item::after { 
    content: ''; 
    position: absolute; 
    width: 20px; 
    height: 20px; 
    right: -10px; 
    background-color: var(--dark-blue); 
    border: 3px solid var(--gold); 
    top: 30px; 
    border-radius: 50%; 
    z-index: 1; 
}


.timeline-item:nth-child(even)::after { 
    left: -10px; 
}

.timeline-content { 
    text-align: left; 
}

#depoimentos{
    padding: 80px 20px;
}
.depoimentos-grid { 
    display: 
    grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}
.depoimento-card {
    padding: 30px; 
}

.depoimento-card p { 
    font-style: italic; 
    margin-bottom: 20px; 
    position: relative; 
}

.depoimento-card h4 { 
    color: var(--gold);
    font-weight: 700; 
}

.depoimento-card span { 
    font-size: 0.9rem; 
    opacity: 0.8; 
}


#cta-final { 
    text-align: center;
    padding: 80px 20px; 
    background: rgba(0,0,0,0.3); 
}

.cta-content h2 { 
    font-size: 2.5rem; 
    color: #fff;
    margin-bottom: 15px; 
}

.btn-final {
    display: inline-block; 
    text-decoration: none; 
    padding: 12px 30px; 
    background-color: var(--gold);
    color: var(--dark-blue); 
    border-radius: 8px; font-weight: 700; 
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-final:hover { 
    background-color: transparent; 
    color: var(--gold); 
    transform: scale(1.05); 
}

.btn-final2 {
    display:inline-flex; 
    text-decoration: none; 
    padding: 12px 30px; 
    background-color: var(--gold);
    color: var(--dark-blue); 
    border-radius: 8px; 
    font-weight: 700; 
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: 30px;
    margin-bottom: 30px;
    cursor: pointer;
}

.btn-final2:hover { 
    background-color: transparent; 
    color: var(--gold); 
    transform: scale(1.05); 
}



.about-section { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 50px; 
    align-items: center; 
}
.about-image img { 
    width: 100%; 
    border-radius: 10px; 
}

.about-text h2 { 
    color: var(--gold);
     margin-bottom: 20px; 
    font-size: 2rem; 
}
.pillars-section {
     padding: 80px 0; 
}
.pillars-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    text-align: center; 
}

.pillar-card img { 
    height: 100px;
    padding-bottom: 10px;
}
.project-filters { 
    margin-bottom: 40px; 
}

.pillar-card h3{
    padding-bottom: 10px;
}



.filter-btn { 
    background: transparent; 
    color: var(--text-color); 
    border: 1px solid var(--glass-border); 
    padding: 10px 20px; 
    margin: 0 5px; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: all 0.3s; 
}

.filter-btn:hover,
 .filter-btn.active { 
    background: var(--gold);
     color: var(--dark-blue); 
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-chic);
}

.project-card:hover img {
    transform: scale(1.05);
}

.card-overlay-simple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 13, 24, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s var(--ease-chic);
}

/* .card-overlay-simple 
.p-card{
    color: var(--gold);
    font-size: 1em;
} */

.project-card:hover .card-overlay-simple {
    opacity: 1;
}

.p-card { 
    color: var(--gold); 
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4; 
}

.card-overlay-simple .icon-project{
    width: 50px;
    height: 50px;
    opacity: 0.9;
    transition: all 0.4s;
}

.project-card:hover .icon-project {
    opacity: 1;
    transform: scale(1.1);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 13, 24, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}
.comparison-slider .img-before {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.comparison-slider .img-after {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.comparison-slider .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--gold);
    cursor: ew-resize; 
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.comparison-slider .slider-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: rotate(90deg);
}

.modal-body-comparison {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-chic);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}


.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 30px;
    align-items: start;
}

.modal-media-container {
    width: 100%;
}

.modal-details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.modal-details h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.3;
}

.modal-details p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
}

.contact-form input, 
.contact-form textarea { 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px; 
    border-radius: 8px; 
    border: 1px solid var(--glass-border); 
    background: rgba(0,0,0,0.2); 
    color: var(--text-color); 
    font-size: 1rem; 
}
.contact-info p { 
    margin-bottom: 15px;
 }


.footer {
    background: #03080f; 
    padding: 80px 0 0 0;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
}


.footer-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}


.footer-title a{
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap; 
    cursor: pointer;
}

.btn-footer {
    display: inline-block; 
    text-decoration: none; 
    padding: 12px 30px; 
    background-color: var(--gold);
    color: var(--dark-blue); 
    border-radius: 8px; font-weight: 700; 
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: 30px;
    font-size: 1em;
    cursor: pointer;
}

.btn-footer:hover { 
    background-color: transparent; 
    color: var(--gold); 
    transform: scale(1.05); 
}


.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-about .footer-logo img {
    height: 120px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    margin-left: 30px;
    text-align: justify;
   
}

.footer-links h3, .footer-social h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}


.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    transform: translateY(-3px);
    color: var(--gold);
}

.social-link img {
    height: 35px;
}


.footer-copyright {
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--gold);
}

.footer-copyright a{
    font-size: 0.7rem;
    text-decoration: none;
    color: var(--gold);
}

.hidden { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}

.hidden.show { 
    opacity: 1; 
    transform: translateY(0);
}


.project-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
 
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 13, 24, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.05);
}

.card-info h3 {
    color: #fff;
    margin-bottom: 5px;
}

.card-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-info .card-view-btn {
    display: block;
    margin-top: 15px;
    color: var(--gold);
    font-weight: 600;
}

.card-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    pointer-events: none; 
    transition: transform 0.4s var(--ease-out), background-color 0.4s;
}

.project-card:hover .card-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.card-overlay-simple

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 13, 24, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 10; 
}

.modal-close-btn:hover {
    background: var(--gold);
    color: var(--dark-blue);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start; 
}

.modal-media-container {
    width: 100%;
}

.modal-media-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.modal-details h2 {
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.modal-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.modal-stats i {
    color: var(--gold);
    font-size: 1.2rem;
}

.calculadora-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--dark-blue);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.btn-full-width {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.calculadora-error {
    color: #ff8a80;
    margin-top: 15px;
    font-weight: 600;
    height: 20px;
    transition: opacity 0.3s;
}

.resultado-calculadora-wrapper {
    margin-top: 50px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.8s ease;
}

.resultado-calculadora-wrapper.visible {
    opacity: 1;
    max-height: 1000px;
}

.resultado-header { 
    text-align: 
    center; 
    margin-bottom: 20px;
 }

.resultado-header h3 { 
    font-size: 1.8rem; 
    color: var(--gold); 
}

.resultado-main { 
    text-align: center; 
    padding: 40px; 
}
.potencial-valor { 
    font-size: 4rem; 
    color: var(--gold); 
    margin: 10px 0; 
}

.resultado-subtext {
     font-size: 0.9rem; 
     opacity: 0.8; 
}

.resultado-detalhes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.resultado-detalhe i { 
    font-size: 2.5rem; 
    color: var(--gold); 
    margin-bottom: 10px; 
}
.resultado-detalhe h4 { 
    font-size: 1rem; 
    color: var(--text-primary); 
    margin-bottom: 5px; 
}
.resultado-detalhe span { 
    font-size: 1.5rem; 
    font-weight: 700; 
}

.btn-whatsapp {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark-blue);
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}
.btn-whatsapp:hover { 
    background-color: transparent; 
    border-color: var(--gold); 
    color: var(--text-color)
 }

.btn-whatsapp i { 
    font-size: 
    1.5rem; 
}

.form-group select{
    background-color: var(--dark-blue);
    color: var(--text-color);
}

.faq-section {
    padding: 80px 20px;
    font-family: sans-serif;
    background:rgba(0, 0, 0, 0.3);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header p {
    font-size: 0.8rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-header h2 {
    font-size: 3rem;
    color: var(--gold);
    font-family: serif;
    font-weight: normal;
    margin-top: 10px;
}


.faq-accordion {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px 40px;
}


.accordion-item {
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    background: none;
    border: none;
    padding: 20px 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--gold);
    text-align: left;
    cursor: pointer;
   
}

.accordion-header .chevron {
    width: 20px;
    height: 20px;
    color: var(--text-color);
    transition: transform 0.3s ease-in-out;
}


.accordion-content {
   
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}

.accordion-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 0.9em;
}


.accordion-item.active .accordion-header .chevron {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
   
    max-height: 500px;
    padding-bottom: 20px;
}

.vazia{
    padding: 40px;
}

label{
    padding-top: 10px;
}

textarea {
    width: 100%;
    background-color: var(--dark-blue);
    border-color: var(--glass-border);
    border-radius: 5px;
    color: var(--text-color)

}

textarea::placeholder{
    padding: 10px;
    font-size: 1.2em;
}

.benefits-grid {
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.btn-footer2 {
    display: flex;
    text-decoration: none; 
    padding: 12px 30px; 
    background-color: var(--gold);
    color: var(--dark-blue); 
    border-radius: 8px; font-weight: 700; 
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: 30px;
    font-size: 1em;
    cursor: pointer;
    align-items:center ;
    justify-content: center;
    width: 100%;
}

.btn-footer2:hover { 
    background-color: transparent; 
    color: var(--gold); 
    transform: scale(1.05); 
}

#contact-modal .modal-content {
    max-width: 700px;
}

.partner-block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 50px;
    padding: 50px;
}

.partner-logo-side {
    text-align: center;
}

.partner-logo-side img {
    max-width: 250px; 
    margin: 0 auto;
}


.partner-tagline {
    font-size: 0.9rem;
    color: var(--gold);
    margin-top: 5px;
    font-style: italic;
}

.partner-description-side h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.partner-description-side p {
    margin-bottom: 15px;
}

.partner-description-side p:last-child {
    margin-bottom: 0;
}





@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1; 
        text-align: center;
    }
    .footer-about p {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .project-filters{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

  

    .section-title, .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-header {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .nav-toggle {
        display: block;
        width: 30px;
        height: 24px;
        position: relative; 
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-bar,
    .hamburger-bar::before,
    .hamburger-bar::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px; 
        background-color: var(--gold);
        border-radius: 3px;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .hamburger-bar {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-bar::before {
        top: -10px;
    }

    .hamburger-bar::after {
        bottom: -10px;
    }
    
    .nav-toggle.is-active .hamburger-bar {
        background-color: transparent; 
    }
    .nav-toggle.is-active .hamburger-bar::before {
        top: 0;
        transform: rotate(45deg);
    }
    .nav-toggle.is-active .hamburger-bar::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 70%;
        height: 100vh;
        padding: 100px 30px;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-menu.show-menu {
        right: 0;
    }
    
    .calculadora-form { 
        flex-direction: column; 
    }
    .calculadora-form input, .calculadora-form button {
        width: 100%; 
    }

    .timeline::after { 
        left: 10px; 
    }
    .timeline-item {
         width: 100%; 
         padding-left: 50px; 
         padding-right: 10px; 
    }
    .timeline-item:nth-child(odd), 
    .timeline-item:nth-child(even) { 
        left: 0; 
        text-align: left; 
    }
    .timeline-item::after { 
        left: 0; 
    }

    .timeline-item:nth-child(even)::after{
        left: 0;
    }

    .depoimentos-grid,
    .about-section, 
    .contact-grid,
    .partner-block,
    .footer-main,
    .footer-title,
    .calculadora-form-grid,
    .pillars-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-title{
        text-align: center;
        display: flex;
        flex-direction: column;
    }

     .partner-description-side h3{
        font-size: 1.5em;
        text-align: center;
     }

    .partner-description-side p{
        text-align: justify;
    }
    
    .footer-main > div {
        text-align: center;
    }
    .footer-links ul {
        padding-left: 0;
    }

    .modal-body {
        grid-template-columns: 1fr;
        
    }
    .nav-toggle {
    display: flexbox;
    }
}

