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

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #fdfaf6;
    color: #555;
}

.body-flex {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-flex {
    flex-grow: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #F28E1A;
    background-color: #f7f0e8;
}

.nav-links a.selected {
    background-color: #1C1C1C;
    color: #F28E1A;
}

.nav-links a.selected:hover {
    background-color: #1C1C1C;
    color: #F28E1A;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #333;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    gap: 40px;
    background: #F28E1A26;
}

.hero .content {
    flex: 2;
    min-width: 0;
}

.hero .image-placeholder {
    flex: 1;
    min-width: 0;
}

.content p + p {
    margin-top: 1em;
}

.titulo-de-impacto {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.laranja {
    color: #F28E1A;
}

.subtitulo {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-laranja {
    background-color: #1C1C1C;
    color: #F28E1A;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-laranja:hover {
    background-color: #333;
}

.btn-apoio {
    background-color: #1C1C1C;
    color: #F28E1A;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-apoio:hover {
    background-color: #333;
}

.hero .image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.about {
    display: flex;
    padding: 60px 40px;
    gap: 40px;
    align-items: center;
    background-color: #F7F7F7;
}

.about .image-placeholder{
    flex:1;
}
.about .content {
    flex: 2;
    min-width: 0;
}

.about .image-placeholder img {
     display: block;
     width: 100%;
     height: auto;
     border-radius: 10px;
}

.about .content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about .content p {
    font-size: 16px;
    line-height: 1.6;
}

.cards-container {
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    padding: 60px 40px;
    gap: 30px;
    flex-wrap: nowrap;
}

.cronograma-container {
    padding-top: 20;
}

.hero-cronograma {
    padding-bottom: 0;
    background: #F28E1A26;
}

.apoio-container {
    padding-top: 0;
}

.card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    max-width: 300px;
    flex: 1 1 300px;
}

.card .card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #F28E1A54;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card .card-icon img {
    width: 50px;
    height: 50px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
}

.card-date {
    font-size: 16px;
    font-weight: bold;
    color: #F28E1A;
    margin-bottom: 10px;
}


.support-hero {
    text-align: center;
    padding: 60px 40px;
    background: #F28E1A26;
}

.support-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    padding-top: 0;
    flex-wrap: wrap;
    background: #F28E1A26;
}

.support-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
    max-width: 400px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.support-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.support-card .price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.support-card .month {
    font-size: 16px;
    font-weight: normal;
}

.support-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.support-card li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.team-section {
    padding: 60px 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.team-cards-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.impact-section {
    padding: 60px 40px;
    padding-top: 20px;
    text-align: center;
    background-color: #f7f7f7;
}

.impact-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.impact-section p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.impact-section-left {
    text-align: left;
}

.impact-section-left p {
    margin: 0;
}

.footer {
    background-color: #1C1C1C;
    color: #ccc;
    font-size: 14px;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-row-1 {
    width: 100%;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-row-1 a {
    color: #ccc;
    text-decoration: none;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #444;
    width: 100%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col-1 {
    flex: 2;
}

.footer-col-2, .footer-col-3 {
    flex: 1;
}

.footer-col-2 h3, .footer-col-3 h3 {
    margin-bottom: 20px;
}

.footer-col-2 ul, .footer-col-3 ul {
    list-style: none;
    padding: 0;
}

.footer-col-2 ul li, .footer-col-3 ul li {
    margin-bottom: 10px;
}

.footer-col-2 ul li a, .footer-col-3 ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-summary {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-row-4 {
    text-align: center;
    width: 100%;
    font-size: 12px;
    color: #aaa;
}

@media (max-width: 1024px) {
    .hero {
       flex-direction: column;
    } 

    .hero > div:nth-child(2) {
        display: none;
    }
    
    .about {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
    }

    .cards-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .support-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .support-card {
        max-width: 100%;
    }

    .team-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        z-index: 10;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 20px 0;
        display: block;
        width: 100%;
        border-radius: 0;
    }

    .nav-links a.selected {
        color: #F28E1A;
        background-color: transparent;
    }

    .nav-links a:hover {
        color: white;
        background-color: #F28E1A;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-main {
        flex-direction: column;
    }
}
