@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* FAQ */

.faq {
    font-family: "Raleway", sans-serif;
    padding: 64px 20px;
    background: #f9f9f9;
    text-align: center;
}

.faq h1 {
    margin-bottom: 40px;
    font-size: 36px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.faq-item p {
    color: #555;
}

/* FOOTER */

footer {
    background: #111;
    color: white;
    font-family: "Raleway", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 48px 20px;
    gap: 40px;
}

.footer-container div {
    max-width: 250px;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-contact i {
    margin-right: 6px;
}

.footer-bottom {
    text-align: center;
    padding: 16px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}

/* HERO */

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('../media/sala.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: "Raleway", sans-serif;
}

.hero h1 {
    font-size: 42px;
    max-width: 700px;
}

.hero p {
    margin: 16px 0;
    font-size: 18px;
}

.cta {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 28px;
    background: var(--color-1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: .2s;
}

.cta:hover {
    transform: scale(1.05);
}

.proof {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    opacity: .8;
}

/* BENEFÍCIOS */

.benefits {
    padding: 64px 20px;
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

.card i {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--color-1);
}

.card h3 {
    margin-bottom: 4px;
}

/* PROVA SOCIAL */

.social-proof {
    background: #f5f5f5;
    padding: 64px 20px;
    text-align: center;
     font-family: "Raleway", sans-serif;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.testimonial {
    max-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
}

/* URGÊNCIA */

.urgency {
    padding: 64px 20px;
    text-align: center;
    background: black;
    color: white;
     font-family: "Raleway", sans-serif;
}

.urgency h2 {
    font-size: 32px;
}

.urgency p {
    margin: 12px 0;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    padding: 0 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Raleway", sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    z-index: 999;
}

.logo h1 {
    font-size: 20px;
    color: var(--color-1);
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.nav a:hover {
    color: var(--color-1);
}

.header-cta {
    background: var(--color-1);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: .2s;
}

.header-cta:hover {
    transform: scale(1.05);
}