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

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #1f2937;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none;
}

.menu {
    background: linear-gradient(135deg, #FF5A1F, #F76301);
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    height: 175px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-link {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 250px;
    height: auto;
    float: left;
}

.logo {
    color: white;
    font-size: 35px;
    font-weight: bold;
    margin: 0;
}

.pesquisa {
    flex: 1;
    min-width: 240px;
    max-width: 520px;
    height: 50px;
    background-color: white;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0 10px 0 18px;
    box-shadow: #C83E0E;
}

.pesquisa input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.pesquisa-bola {
    width: 45px;
    height: 45px;
    background-color: #f55d01;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
   
}

.pesquisa-bola:hover {
    background-color: #C94700;
    cursor: pointer;
}

.lupa-icone {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.Entrar-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 110px;
    padding: 12px 20px;
    background-color: #FFFFFF;
    color: #F4511E;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: #C83E0E;
}

.Entrar-container:hover {
    background-color: #FFE5D9;
    color: #F4511E;
    cursor: pointer;
}

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

.menu-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.menu-links a:hover {
    color: #FFFFFF;
}

.carousel {
    width: min(1200px, 92%);
    margin: 30px auto 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-item {
    height: 340px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.secoes {
    padding-bottom: 40px;
}

.texto-wrapper {
    width: min(1200px, 90%);
    margin: 0 auto 20px;
}

.texto {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.linha-horizontal {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #C94700, #F76301);
    border-radius: 999px;
    margin-bottom: 25px;
}

.box-card {
    width: min(1200px, 90%);
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    flex: 1 1 220px;
    max-width: 270px;
    border-radius: 18px;
    background-color: #ffffff;
    transition: 0.3s;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

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

.topo-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.texto-card {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px;
}

.card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.quadrado-card {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C94700, #F76301);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quadrado-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.container-caixa {
    width: min(1200px, 92%);
    margin: 0 auto 70px;
    padding: 28px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.container-caixa h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.container-caixa>p {
    color: #6b7280;
    margin-bottom: 24px;
}

.caixa-txt {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.caixa-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.caixa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.caixa-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.caixa-card-content {
    padding: 16px;
}

.caixa-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.caixa-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff3e8;
    color: #C94700;
    font-size: 13px;
    font-weight: 600;
}

.avali {
    width: 100%;
    background: #ece8e8;
    padding: 40px;
    margin-bottom: 65px;
}

.avali-box {
    max-width: 1200px;
    margin: 0 auto;
}

.avali-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #d34a00;
    text-align: center;
    margin: 0 0 30px;
}

.avali-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 20px;
}

.avali-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avali-card-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.avali-card-row img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    margin: 0;
}

.avali-texto {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.avali-autor {
    font-size: 13px;
    color: #555;
    font-weight: 700;
}

    /* Fim da parte das avaliações */



@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: stretch;
    }

    .pesquisa {
        width: 100%;
        max-width: none;
    }

    .menu-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .Entrar-container {
        width: 100%;
    }

    .carousel-item {
        height: 260px;
    }

    .caixa-txt {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .caixa-card img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }

    .box-card {
        flex-direction: column;
        align-items: stretch;
    }

    .card {
        max-width: none;
    }

    .caixa-txt {
        grid-template-columns: 1fr;
    }

    .container-caixa {
        padding: 18px;
    }

    .container-caixa h2 {
        font-size: 22px;
    }

    .carousel-item {
        height: 180px;
    }
}

.site-footer {
    width: 100%;
    min-height: 329px;
    background: linear-gradient(115deg,
            #ff5b00 0%,
            #f45100 50%,
            #ff6200 100%);

    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.footer-container {
    width: 100%;
    max-width: 1184px;
    min-height: 329px;

    margin: 0 auto;
    padding: 28px 22px 25px;

    display: grid;
    grid-template-columns:
        1.05fr 1.08fr 1.08fr 0.95fr;
}


.footer-column {
    min-width: 0;
    padding: 0 38px;

    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-column:first-child {
    padding-left: 0;
}

.footer-column:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-title {
    display: flex;
    align-items: center;

    gap: 15px;
    margin-bottom: 25px;
}

.footer-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}


.footer-bolota {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}

.footer-bolota img{
     width: 32px;
    height: 32px;
    object-fit: contain;
}


.footer-about p {
    margin: 0;

    color: rgba(255, 255, 255, 0.95);

    font-size: 16px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 24px;
}

.social-icons a {
    width: 43px;
    height: 43px;

    border: 1.5px solid rgba(255, 255, 255, 0.9);

    border-radius: 50%;

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

    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    transition: all 0.2s ease;
}

.social-icons a:hover {
    background: #ffffff;
    color: #f45100;

    transform: translateY(-2px);
}

.footer-links {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    line-height: 1.2;

    transition: all 0.2s ease;
}

.footer-links a i {
    font-size: 12px;
}

.footer-links a:hover {
    transform: translateX(3px);
    opacity: 0.8;
}



.contact-item {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 23px;

    color: #ffffff;

    font-size: 16px;
}

.contact-item i {
    width: 18px;

    text-align: center;

    font-size: 17px;
}

.contact-item span {
    white-space: nowrap;
}

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        row-gap: 35px;
    }

    .footer-column:nth-child(2) {
        border-right: none;
    }

    .footer-column:nth-child(3) {
        padding-left: 0;
    }

    .footer-column:nth-child(4) {
        padding-right: 38px;
    }
}


@media (max-width: 600px) {

    .site-footer {
        min-height: auto;
    }

    .footer-container {
        display: block;

        padding: 35px 25px;
    }

    .footer-column,
    .footer-column:first-child,
    .footer-column:last-child {

        padding: 0 0 30px;

        margin-bottom: 30px;

        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .footer-column:last-child {
        border-bottom: none;

        margin-bottom: 0;
    }

    .footer-title h2 {
        font-size: 21px;
    }

    .contact-item span {
        white-space: normal;
    }
}