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

body {
    font-family: 'Barlow', sans-serif;
    background: #F4E4C3;
    color: #222;
}

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

.hero img {
    width: 100%;
    display: block;
}

/* =========================
   SOCIAL
========================= */

.social-section {
    padding: 80px 0;
    text-align: center;
}

.small-title {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E85D24;
}

.social-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 25px;
    color: #E85D24;
}

.social-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-card {
    width: 220px;
    background: white;
    border-radius: 18px;
    padding: 35px 20px;
    text-decoration: none;
    color: #222;
    transition: 0.25s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.social-card:hover {
    transform: translateY(-4px);
}

.social-card i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #E85D24;
}

.social-card span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

/* =========================
   LISTAS
========================= */

.lista-section {
    padding: 40px 0 90px;
}

.lista-section h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 45px;
    color: #E85D24;
}

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

.lista-item {
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    padding: 30px;
}

.lista-item h3 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #E85D24;
}

.lista-item p {
    color: #555;
    line-height: 1.6;
}

/* =========================
   APOIO
========================= */

.apoio-section {
    background: white;
    padding: 40px 0;
}

.apoio-section img {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .social-section {
        padding: 60px 0;
    }

    .social-section h1 {
        font-size: 2rem;
    }

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

    .social-card {
        width: 100%;
        max-width: 320px;
    }

    .social-card i {
        font-size: 3rem;
    }

    .lista-section h2 {
        font-size: 2rem;
    }

    .lista-item h3 {
        font-size: 1.5rem;
    }

}