:root {
    --primary-color: #1f2937;
    --accent-color: #c25b12;
    --accent-hover: #9e470d;
    --text-color: #2d3436;
    --bg-light: #f5f6fa;
    --white: #fdfdfd;
    --transition: all 0.3s ease;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
}

.font-regular {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font-bold {
    font-family: "Archivo Black", sans-serif;
    font-weight: 800;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    width: 100% !important;
}


body {
    max-width: 1920px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    /* background-color: #111827; */
    overflow-x: hidden;
    margin: 0 auto;
}

/* CONTAINER */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
header {
 /* background: rgba(231, 232, 233, 0.45); */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    height: 5rem;
    text-shadow: #e2e2e2 3px 2px;
  

}

header p {

    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1rem;
    color: var(--accent-color);
    line-height: 2rem;

}

header a {
    color: var(--bg-light);
    font-size: 1rem;
}

/* HERO */
#hero {

    background:
        url('img/cultura-portuguesa.png');
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5rem;
}

/* TITLE */
#hero h1 {

    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    line-height: 1.1;
    color: var(--primary-color);
    animation: fadeIn 1.2s ease;

}

#hero span {
    color: var(--accent-color);
}

#hero p {
    max-width: 500px;
    font-size: 1.15rem;
    color: var(--text-color);
    padding: 2rem 0;

}


.btn {
    display: inline-block;
    padding: 12px 28px;


    background: var(--accent-color);
    color: white;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 600;

    transition: .3s;
}

.btn:hover {
    transform: translateY(-4px) scale(1.03);

    background: linear-gradient(135deg,
            #9e470d,
            #d96c10);

    box-shadow:
        0 14px 35px rgba(194, 91, 18, 0.45);
}


.content-section {
    padding: 2rem 0;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* RESPONSIVE */
@media (max-width: 768px) {
    body {
        margin: 0 auto;
    }

    header {
        padding: 0;
        text-align: center;
    }

    header a {
        font-size: 1.2rem;
    }

    #hero {
        width: 100%;
        align-items: flex-start;
        background:
            url('img/cultura_portuguesa_mobile.png');
        background-size: cover;
        background-position: start top;
        background-repeat: no-repeat;
        min-height: 100vh;
        padding: 0 20px;
        box-sizing: border-box;

    }

    #hero h1 {
        font-size: 2rem;
        letter-spacing: 0.3rem;
        line-height: 1.2;
        margin-top: 10rem;
        text-shadow: 1px 5px var(--bg-light);
    }

    #hero p {
        color: var(--bg-light);
        font-weight: 500;
        background-color: rgbA(31, 41, 55, 0.7);
        padding: 0.5rem;
        margin: 2rem 0;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    nav {
        padding: 15px 7%;
    }

    .container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

.content-section {
    padding: 3rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: start;
    border-left: #9e470d solid 5px;
    padding-left: 0.5rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
padding: 1rem 0;
}

.goal-card {
    background: var(--white);
    padding: 2rem;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* TEAM SECTION */

.event-list {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 30px;

    list-style: none;

    margin-top: 50px;
}

.event-list li {

    background: white;

    border-radius: 24px;

    padding: 35px 25px;

    text-align: center;

    transition: var(--transition);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    border: 1px solid rgba(0, 0, 0, 0.04);
}

.event-list li:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12);
}

.event-list img {

    width: 120px;
    height: 120px;

    object-fit: cover;

    border-radius: 50%;

    margin-bottom: 20px;

    border: 5px solid #f3f4f6;

    box-shadow:
        0 8px 20px rgba(194, 91, 18, 0.15);
}

.event-list h4 {

    font-size: 1.2rem;

    margin-bottom: 8px;

    color: #1f2937;
}

.event-list p {

    font-size: 0.95rem;

    color: #6b7280;
}


.form-card {
    background: var(--white);
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.progress-container {
    margin: 1rem 0;
    background-color: rgba(158, 71, 13, 0.7);
    padding: 0.5rem 1rem;
    
}

.progress-bar {
    height: 5px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}
@media (max-width: 768px) {

    .event-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-list li {
        padding: 28px 20px;
    }

    .event-list img {
        width: 100px;
        height: 100px;
    }
    .form-card {
    padding: 0;}

}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-light);
}

.step {
    display: none;
    animation: slideIn 0.4s ease-out;
}

.step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-hover);
    text-transform: uppercase;

}

label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
}

input[type="text"],
select,
textarea {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    border: 2px solid #eee;
    border-radius: 2px;
    font-size: .8rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #f9f9f9;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.radio-group {
    display: grid;
    gap: 1rem;
    margin-bottom: .2rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 2px solid #eee;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    background: #f8f9fa;
}

.radio-option input {
    margin-right: 15px;
    width: 10px;
    height: 10px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    background-color: var(--accent-color);
    margin: 0 auto;
}

button {
    padding: 0.5rem 1rem;
    border: none;

    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-next {
    background: var(--primary);
    color: white;
    flex: 2;

}

.btn-next:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-prev {
    background: #eee;
    color: #636e72;
    flex: 1;
}

.btn-prev:hover {
    background: #e2e2e2;
}

.btn-submit {
    background: var(--success);
    color: white;
    flex: 2;
}

.agradecimento {
    text-align: center !important;
    font-size: 1rem;
    padding: 2rem 1rem;

}
#objetivos,#formulario-section {
    padding: 3rem 0;
}
footer {
    padding: 40px 0;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
}
footer ul{
    display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
}
footer a{
    color: var(--bg-light);
    font-size: 1rem;
}