/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f1ed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.25rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(7px);
    background: rgb(243 240 238 / 70%);
    box-shadow: 1px 1px 20px #00000021;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 0;
}

.nav-link {
    color: #2c3e50;
    transition: color 0.3s;
    font-size: 1rem;
    padding: 24px 16px;
    transition: all ease .5s;
}

.nav-link.active,
.nav-link:hover {
    /* color: #ff8c42; */
    font-weight: 700;
    background: white;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    padding: 9rem 0 0;
    position: relative;
    height: 580px;

}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    height: 100%;
}

.hero-number {
    flex: 1;
    text-align: center;
    max-width: 380px;
}

/* curvas linhas */
.curvas-linhas{
    position: absolute;
    width: 300px;
}
.curvas-linhas .c1{
    fill: none;
    stroke: #ff8c42;
    stroke-width: 2px;
}
.curvas-linhas .c2{
    fill: none;
    stroke: rgba(255, 138, 66, 0.3);
}

.hero .curvas-linhas {
    right: 30px;
    bottom: -300px;
    transform: rotate(90deg);
}
.section-vozes-do-design .curvas-linhas {
    left: 30px;
    top: 30px;
    transform: rotate(90);
}
.section-impacto-do-design .curvas-linhas {
    right: 30px;
    top: 30px;
    transform: rotate(-90deg);
}
.section-design-no-mundo .curvas-linhas {
    left: 30px;
    top: 30px;
    transform: rotate(0);
}
.section-futuro-design .curvas-linhas {
    right: 30px;
    top: 30px;
    transform: rotate(-90deg);
}
footer .curvas-linhas {
    left: 30px;
    top: -100px;
    transform: rotate(90deg);
    z-index: 2;
}
@media (max-width: 768px) {
    .curvas-linhas{
        display: none;
    }
}

.number-large {
    font-size: 8rem;
    font-weight: 700;
    color: #ff8c42;
    line-height: 1;
}

.number-subtitle {
    font-size: 2.5rem;
    color: #ff8c42;
    margin-top: 0.5rem;
}

.hero-text {
    flex: 1;
    max-width: 390px;
}

.hero-description {
    color: #555;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-primary {
    background-color: #ff8c42;
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e67a35;
}

.decorative-circle {
    position: absolute;
    left: 0;
    top: -100px;
    width: 100vw;
    height: 200vh;
    opacity: 1;
    z-index: -1;
    overflow: hidden;
}

.decorative-circle::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    background: linear-gradient(0deg,
            rgba(233, 230, 224, 1) 0%,
            rgba(233, 230, 224, 1) 40%,
            rgba(245, 241, 237, 0) 90%,
            rgba(255, 255, 255, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.underline {
    width: 6rem;
    height: 0.25rem;
    background-color: #ff8c42;
    margin: 0 auto 1rem;
}

.section-description {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Timeline Section */
.timeline {
    padding: 4rem 0;
    /* background-color: #fff; */
}

.timeline-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

.timeline-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-carousel::-webkit-scrollbar {
    display: none;
}

.timeline-card {
    background-color: #fdfcfb;
    border: 1px solid #e8e3dd;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    min-width: 300px;
    max-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.timeline-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.timeline-year {
    color: #ff8c42;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-card h3 {
    margin-bottom: 0.75rem;
}

.timeline-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #ff8c42;
    font-size: 0.95rem;
    transition: text-decoration 0.3s;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ff8c42;
    color: #ff8c42;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: #ff8c42;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn i {
    font-size: 1rem;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator.active {
    background-color: #ff8c42;
    width: 2rem;
    border-radius: 0.5rem;
}

.indicator:hover {
    background-color: #ffb380;
}

/* Visions Section */
.visions {
    padding: 4rem 0;
    /* background-color: #f5f1ed; */
}

.visions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vision-card {
    background-color: #fff;
    border: 1px solid #e8e3dd;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

.vision-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vision-icon i {
    font-size: 1.5rem;
    color: #ff8c42;
}

.vision-card h3 {
    margin-bottom: 0.75rem;
}

.vision-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Impacts Section */
.impacts {
    padding: 4rem 0;
    background-color: #fff;
}

.impacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-item {
    text-align: center;
}

.impact-icon {
    width: 4rem;
    height: 4rem;
    background-color: #ff8c42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.impact-icon i {
    font-size: 2rem;
    color: #fff;
}

.impact-item h3 {
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: #666;
    font-size: 0.95rem;
}

/* World Map Section */
.world-map {
    padding: 4rem 0;
    background-color: #f5f1ed;
}

/* World Statistics */
.world-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.stat-card {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff8c42;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

/* Map Container */
.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 0.5rem;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Interactive Map Pins */
.map-pin {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10;
}

.map-pin i {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}

.map-pin:hover {
    transform: scale(1.3);
    z-index: 20;
}

.map-pin:hover i {
    animation: bounce 0.6s;
}

/* Pin Positions */
.pin-1 {
    top: 62%;
    left: 32%;
    color: #ff8c42;
}

.pin-2 {
    top: 65%;
    left: 34%;
    color: #e67a35;
}

.pin-3 {
    top: 38%;
    left: 22%;
    color: #ef5350;
}

.pin-4 {
    top: 35%;
    left: 46%;
    color: #42a5f5;
}

.pin-5 {
    top: 32%;
    left: 47%;
    color: #ab47bc;
}

.pin-6 {
    top: 30%;
    left: 50%;
    color: #66bb6a;
}

.pin-7 {
    top: 75%;
    left: 82%;
    color: #ffa726;
}

.pin-8 {
    top: 35%;
    left: 18%;
    color: #26c6da;
}

/* Pin Tooltip */
.pin-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.5rem;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
    z-index: 100;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

.map-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip-city {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.tooltip-country {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.tooltip-count {
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tooltip-count i {
    font-size: 0.625rem;
    animation: none !important;
    filter: none;
}

/* Mobile Locations List */
.mobile-locations {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

.location-item {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}

.location-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.location-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-info {
    flex: 1;
}

.location-city {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.location-count {
    font-size: 0.875rem;
    color: #666;
}

/* Location Modal */
.location-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.location-modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.modal-icon {
    font-size: 1.5rem;
    color: #ff8c42;
}

.modal-city {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
}

.modal-country {
    color: #666;
    margin-bottom: 1rem;
}

.modal-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-stat {
    background-color: #f5f1ed;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.modal-stat i {
    font-size: 1.25rem;
    color: #ff8c42;
    margin-bottom: 0.5rem;
}

.modal-stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.modal-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Projects Section */
.projects {
    padding: 4rem 0;
    background-color: #fff;
}

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

.project-card {
    background-color: #fdfcfb;
    border: 1px solid #e8e3dd;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.project-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-badge {
    display: inline-block;
    background-color: #ffd700;
    color: #2c3e50;
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.project-card h3 {
    margin-bottom: 0.75rem;
}

.project-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.project-date i {
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #2c3e50;
}

.services .section-header h2,
.services .section-header .section-description {
    color: #fff;
}

.services .section-description {
    color: #d1d5db;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Time Capsule Section */
.time-capsule {
    padding: 4rem 0;
    background-color: #2c3e50;
}

.time-capsule .section-header h2 {
    color: #fff;
}

.time-capsule .section-description {
    color: #d1d5db;
}

.capsule-form {
    margin-top: 2rem;
}

.section-header__capsula-do-tempo{
    width: 100%;
    max-width: 900px;
    height: auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
}

.btn-submit {
    background-color: #ff8c42;
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif
}

.btn-submit:hover {
    background-color: #e67a35;
}

.btn-submit i {
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: #f5f1ed;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #e8e3dd;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: #ff8c42;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #e8e3dd;
    padding-top: 1rem;
}

.author-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background-color: #ff8c42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #e67a35;
}

.social-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ff8c42;
    line-height: 1;
}

.footer-subtitle {
    font-size: 1.5rem;
    color: #ff8c42;
    margin-top: 0.5rem;
}

.footer-years {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #e8e3dd;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-small {
    color: #888;
    font-size: 0.85rem;
}

/* Responsive Utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero {
        padding-top: 200px;
    }
    .hero-number{
        max-width: 240px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .hero-text {
        max-width: 100%;
    }

    .number-large {
        font-size: 5rem;
    }

    .number-subtitle {
        font-size: 1.75rem;
    }

    .visions-grid,
    .impacts-grid,
    .projects-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }



    h2 {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Timeline carousel mobile adjustments */
    .timeline-carousel-wrapper {
        padding: 0 2rem;
    }

    .timeline-card {
        min-width: 280px;
        max-width: 280px;
    }

    .carousel-btn {
        width: 2rem;
        height: 2rem;
    }

    .carousel-btn i {
        font-size: 0.875rem;
    }

    /* World Map Mobile */
    .world-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .pin-tooltip {
        display: none !important;
    }

    .mobile-locations {
        display: grid;
    }

    .map-pin {
        width: 2rem;
        height: 2rem;
    }

    .map-pin i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    .number-large {
        font-size: 4rem;
    }

    .number-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 18px;
        max-width: 290px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .footer-number {
        font-size: 3rem;
    }

    .footer-subtitle {
        font-size: 1.25rem;
    }

    /* Timeline carousel small mobile */
    .timeline-carousel-wrapper {
        padding: 0 1rem;
    }

    .timeline-card {
        min-width: 260px;
        max-width: 260px;
    }

    .carousel-btn-prev {
        left: -0.5rem;
    }

    .carousel-btn-next {
        right: -0.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

canvas {
    display: block;
    width: 100vw;
    height: 200vh;
    position: relative;
    /* top: -30vh; */
}


.circle {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: box-shadow 0.4s ease;
    margin-top: -300px;
    margin-left: -200px;
    /* background:white; */
    /* box-shadow: rgba(0, 0, 0, 0.475) 0px 10px 40px inset, rgba(0, 0, 0, 0.01) 0px -10px 40px inset;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)); */
}


#obj1,
#obj2 {
    transition: all ease-out 1s;
}

.mask {
    fill: white;
}


/* --- Modal (mesmo estilo do anterior) --- */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal__content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal__content img {
    width: 100%;
    margin-top: 1rem;
    border-radius: 6px;
}

.modal__close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
}


/* formularios */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: white;
}

/* Accordion */
:root {
    --bg: #f5f2ee;
    --card: #ffffff;
    --accent: #e76216;
    --text: #111;
    --muted: #6d6b66;
    --radius: 10px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body {
    margin: 0;
    padding: 32px;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    margin: 0 0 18px 0;
    font-size: 20px;
    letter-spacing: 0.2px;
}

p.lead {
    margin: 0 0 20px 0;
    color: var(--muted);
}

.accordion {
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.06);
    width: 100%;
    max-width: 600px;
}
.accordion *{
    font-family: "Poppins", sans-serif;
}

.item+.item {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: var(--card);
    cursor: pointer;
    border: 0;
    width: 100%;
    text-align: left;
}

.item-header:hover {
    background: linear-gradient(90deg, rgba(231, 98, 22, 0.04), rgba(0, 0, 0, 0));
}

.title-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.badge {
    background: rgba(231, 98, 22, 0.08);
    color: var(--accent);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
}

.item-title {
    font-weight: 700;
    font-size: 15px;
    margin: 0;
    color: #24293d;
}

.item-sub {
    font-size: 13px;
    color: var(--muted);
}

.chev {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: transparent;
    transition: transform .25s ease;
}

.chev svg {
    display: block;
}

.panel {
    padding: 14px 18px 20px 18px;
    background: var(--card);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeIn .5s ease;
    transition: all ease .4s;
}

ul.egressos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    gap: 10px 18px;
}

li.egresso {
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01));
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

li .name {
    font-weight: 600;
}

li .country {
    font-size: 13px;
    color: var(--muted);
    text-align: right;
    white-space: nowrap;
    margin-left: 8px;
}

/* expanded state */
.item-header[aria-expanded="true"] .chev {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* responsive */
@media (max-width:520px) {
    body {
        padding: 18px
    }

    .item-header {
        padding: 12px
    }

    .panel {
        padding: 12px
    }

    ul.egressos {
        grid-template-columns: 1fr
    }
}



/*  */
/* ===== BASE ===== */
.header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container .logo {
    width: 80px;
    display: block;
}

.nav-links {
    display: flex;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color .3s;
}


/* ===== MOBILE MENU ===== */
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1101;
}

.logo img {
    /* display: none; */
}

@media (max-width: 992px) {
    .nav-container{
        justify-content: space-between;
        padding: 16px 20px;
    }
    .logo img {
        display: block;
        width: 80px;
    }

    .mobile-only {
        display: block;
    }

    /* Overlay fechado por padrão */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(6px);
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 1100;
    }

    /* Overlay aberto */
    .nav-links.open {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.5rem;
        color: #222;
        padding: 0.8rem 0;
    }

    /* Ícone “X” quando o menu estiver aberto */
    .menu-toggle.active i::before {
        content: "\f00d";
        /* ícone de “times” do Font Awesome */
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
    .mobile-only {
        /* display: none; */
    }



    .nav-link {
        font-size: 1rem;
    }

    .nav-link:hover {
        text-decoration: none;
    }
}
.organizadora-intro{
    padding: 0 0 64px 0 ;
}

.integrantes{
    display: flex;
}
.integrantes > div{
    width: 100%;
}
.integrantes > div li{
    width: 100%;
    margin-left: 40px;
}
@media (max-width: 768px) {
    .integrantes{
       flex-direction: column;

    }
    .integrantes > div{
        padding-bottom: 40px;
    }
}