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

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;
    background: #f6f7fb;
    color: #222;
    overflow-x: hidden;

}

a {
    text-decoration: none;
}

.container {

    width: min(1200px, 92%);
    margin: auto;

}

/**********************
HEADER
**********************/

header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, .88);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

}

.nav {

    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 100px;

}

.logo {

    font-size: 28px;
    font-weight: 800;
    color: #ac2a27;

}

.logo span {

    color: #111;

}

.menu {

    display: flex;
    gap: 35px;

}

.menu a {

    font-weight: 600;
    color: #444;
    transition: .3s;

}

.menu a:hover {

    color: #ac2a27;

}

.buttons {

    display: flex;
    gap: 12px;

}

.btn {

    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    transition: .35s;
    display: inline-flex;
    align-items: center;
    gap: 10px;

}

.btn-primary {

    background: #ac2a27;
    color: white;

}

.btn-primary:hover {

    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(172, 42, 39, .25);

}

.btn-outline {

    border: 2px solid #ac2a27;
    color: #ac2a27;

}

.btn-outline:hover {

    background: #ac2a27;
    color: white;

}

#contato form {
    max-width: 600px;
    margin: 0 auto;
  }

  .inputContato,
.mensagem {
    margin-top: 15px;
   
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: Arial, sans-serif;
  }

  .faq h2 {
    text-align: center;
    margin-bottom: 24px;
  }

  .faq-item {
    border-bottom: 1px solid #ddd;
  }

  .faq-question {
    width: 100%;
    background: #fff;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-question:hover {
    background-color: #f5f5f5;

  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
  }

  .faq-answer p {
    margin: 16px 0;
    color: #555;
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
  }

  .faq-item.active .icon {
    transform: rotate(45deg);
  }

  footer {
    flex-wrap: wrap;
    gap: 12px;
    display: flex;
    flex-direction: column;
    background: #484947;
    color: #fff;
    text-align: left;
    padding: 1rem;
    font-size: .85rem;
    padding-left: 24px 16px;
  }

  .link-footer {
    color:#fff;
    text-decoration: none;
  }
  
  .link-footer:hover {
    color: #ccc;
  }
/**********************
HERO
**********************/

.hero {

    padding-top: 150px;
    padding-bottom: 90px;

    background:

        radial-gradient(circle at top right, #ffdddd 0%, transparent 30%),

        radial-gradient(circle at bottom left, #ffd9d9 0%, transparent 35%),

        white;

}

.hero-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;

}

.hero small {

    display: inline-block;

    padding: 8px 18px;

    background: #ffe8e8;

    border-radius: 30px;

    color: #ac2a27;

    font-weight: 700;

    margin-bottom: 25px;

}

.hero h1 {

    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;

    color: #111;

}

.hero h1 span {

    color: #ac2a27;

}

.hero p {

    font-size: 20px;

    line-height: 1.8;

    color: #555;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;
    gap: 15px;
    margin-bottom: 35px;

}

.hero-list {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

}

.hero-list div {

    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;

}

.hero-list i {

    color: #1fb65c;

    font-size: 22px;

}

.hero-image {

    position: relative;

}

.hero-image img {

    width: 100%;

    border-radius: 30px;

    box-shadow: 0 40px 70px rgba(0, 0, 0, .12);

}

.floating {

    position: absolute;

    background: white;

    padding: 18px 22px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);

}

.float1 {

    left: -25px;
    top: 50px;

}

.float2 {

    right: -20px;
    bottom: 40px;

}

.floating strong {

    display: block;
    font-size: 28px;
    color: #ac2a27;

}

/**********************
PORQUÊ
**********************/

.why {

    padding: 110px 0;

}

.section-title {

    font-size: 46px;
    font-weight: 800;
    text-align: center;

    margin-bottom: 20px;

}

.section-title span {

    color: #ac2a27;

}

.section-text {

    max-width: 850px;

    margin: auto;

    text-align: center;

    font-size: 21px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 70px;

}

.cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.card {

    background: white;

    padding: 40px;

    border-radius: 28px;

    transition: .35s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}

.card:hover {

    transform: translateY(-10px);

}

.card i {

    font-size: 46px;

    color: #ac2a27;

    margin-bottom: 25px;

}

.card h3 {

    margin-bottom: 18px;

    font-size: 24px;

}

.card p {

    color: #666;

    line-height: 1.8;

}

/**********************
COMO FUNCIONA
**********************/

.steps {

    padding: 110px 0;

    background: white;

}

.timeline {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 60px;

}

.step {

    text-align: center;

}

.number {

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: #ac2a27;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    font-weight: 800;

    margin: auto;

    margin-bottom: 25px;

}

.step h4 {

    margin-bottom: 15px;

    font-size: 22px;

}

.step p {

    color: #666;

    line-height: 1.8;

}

.timeline {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 70px;
    position: relative;

}

.timeline::before {

    content: "";
    position: absolute;

    top: 40px;
    left: 12%;
    right: 12%;

    height: 3px;

    background: linear-gradient(90deg,
            #ac2a27,
            #d95c58);

    z-index: 0;

}

.step {

    position: relative;
    z-index: 2;

    background: white;

    padding: 35px;

    border-radius: 25px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);

    transition: .35s;

}

.step:hover {

    transform: translateY(-10px);

    box-shadow: 0 35px 70px rgba(0, 0, 0, .12);

}

.number {

    margin: auto;

    width: 70px;
    height: 70px;

    background: #ac2a27;

    color: white;

    font-size: 30px;

    font-weight: 800;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 25px;

    border: 6px solid white;

    box-shadow: 0 10px 30px rgba(172, 42, 39, .25);

}

.step-icon {

    font-size: 48px;

    color: #ac2a27;

    margin-bottom: 20px;

}

.step h4 {

    font-size: 24px;

    margin-bottom: 15px;

}

.step p {

    line-height: 1.8;
    color: #666;

}

.steps-footer {

    margin-top: 70px;

    text-align: center;

}

.steps-footer p {

    margin-top: 20px;

    font-weight: 600;

    color: #666;

}

/********************************
CTA INTERMEDIÁRIA
********************************/

.cta-middle {

    padding: 110px 0;

    background: linear-gradient(135deg,
            #991f1d,
            #ac2a27,
            #c53d39);

    overflow: hidden;

    position: relative;

}

.cta-middle::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(255, 255, 255, .06);

    border-radius: 50%;

    top: -180px;
    right: -150px;

}

.cta-middle::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(255, 255, 255, .05);

    border-radius: 50%;

    bottom: -150px;
    left: -120px;

}

.cta-box {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 60px;

    align-items: center;

    position: relative;
    z-index: 2;

}

.tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(255, 255, 255, .18);

    padding: 10px 18px;

    border-radius: 30px;

    color: white;

    font-weight: 700;

    margin-bottom: 30px;

    backdrop-filter: blur(12px);

}

.cta-left h2 {

    font-size: 52px;

    line-height: 1.15;

    color: white;

    margin-bottom: 25px;

}

.cta-left p {

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .9);

    margin-bottom: 35px;

}

.cta-benefits {

    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;

}

.cta-benefits div {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    font-size: 18px;

    font-weight: 600;

}

.cta-benefits i {

    font-size: 22px;

    color: #7CFF9A;

}

.cta-card {

    background: white;

    padding: 45px;

    border-radius: 30px;

    box-shadow: 0 35px 80px rgba(0, 0, 0, .18);

    text-align: center;

}

.cta-card i {

    font-size: 60px;

    color: #ac2a27;

    margin-bottom: 20px;

}

.cta-card h3 {

    font-size: 30px;

    margin-bottom: 18px;

    color: #111;

}

.cta-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 30px;

}

.cta-card .btn {

    width: 100%;

    justify-content: center;

    margin-bottom: 20px;

}

.cta-card small {

    display: block;

    color: #888;

    font-size: 14px;

}

.choice {

    padding: 110px 0;

    background: #fff;

}

.choice-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 60px;

}

.choice-card {

    padding: 35px;

    background: #fafafa;

    border-radius: 25px;

    text-align: center;

    transition: .35s;

}

.choice-card:hover {

    transform: translateY(-8px);

    background: white;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.choice-card i {

    font-size: 46px;

    color: #ac2a27;

    margin-bottom: 20px;

}

.choice-card h3 {

    font-size: 22px;

}

@media(max-width:900px) {

    .choice-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:900px) {

    .cta-box {

        grid-template-columns: 1fr;

    }

    .cta-left {

        text-align: center;

    }

    .cta-benefits {

        justify-items: center;

    }

    .cta-left h2 {

        font-size: 38px;

    }

}

@media(max-width:900px) {

    .timeline {

        grid-template-columns: 1fr;

    }

    .timeline::before {

        display: none;

    }

    .step {

        text-align: center;

    }

}

@media(max-width:900px) {

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .cards {

        grid-template-columns: 1fr;

    }

    .timeline {

        grid-template-columns: 1fr;

    }

    .hero h1 {

        font-size: 42px;

    }

    .menu {

        display: none;

    }

    .buttons {

        display: none;

    }

    .hero-list {

        grid-template-columns: 1fr;

    }

}