* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.web-body{
    background-color: #FFF5E1;
}

/* Navbar */
.navbar {
    padding: 10px 5%;
}

.navbar-brand img {
    height: 60px;
    max-width: 100%; 
}

.navbar-nav {
    gap: 20px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: #f23d6d;
}

/* Animação menu */
.navbar-nav .nav-link {
    position: relative;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f23d6d; 
    transition: width 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    outline: none;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(to right, #683df2, #ff9f1c);
    padding: 30px 10%;
    border-radius: 20px;
    margin: 10px auto;
    width: 80%;
    min-height: 80vh; 
    overflow: hidden; 
}


.hero h1 {
    font-size: 4rem;
    color: #fff;
    font-family: "Anton", sans-serif;
}

.hero p{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover; 
}

/* Botões */
.hero .btn-primary {
    background-color: #f23d6d;
    border: none;
    color: white;
}

.btn-primary:hover {
    background-color: #e62c5b;
    transform: scale(1.05);
}

.linkedin {
    background-color: #3d6df2;
    color: #fff;
}

.linkedin:hover {
    background-color: #2e5cb8;
}

.instagram {
    background-color: #f23d6d;
    color: #fff;
}

.instagram:hover {
    background-color: #e62c5b;
}

/* Sessão Sobre */
.sobre {
    padding: 65px 10% 30px 10%;
    margin-top: 5rem;
    padding: 70px 20px;
    border-radius: 20px;
    margin: 10px auto;
    width: 80%;
    min-height: auto;
}

.sobre img {
    border-radius: 25px;
    border: 4px solid #f8f9fa;
    max-width: 100%;
    height: auto;
}

.sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.sobre p {
    font-size: 1.1rem;
    color: #555;
}


/* Sessão Nossos Pilares */
.pilares {
    background: #8d61e6;
    color: white;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pilares-titulo {
    font-family: "Anton", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #f2f2f2;
    margin-bottom: 20px;
}

.pilares-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.pilar {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    min-height: 200px;
    text-align: center;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 10px rgba(20, 3, 3, 0.3);
}

.pilar-icone {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.pilar-icone i {
    color: #f23d6d;
    font-size: 2rem;
}

.pilar h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pilar p {
    font-size: 1rem;
}

/* Sessão Iniciativas */
#iniciativas{
    margin: 5rem auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.iniciativa-card {
    background: #f1f1f1; 
    border-radius: 15px;
    padding: 10px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.iniciativa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.iniciativa-logo {
    width: 200px; 
    height: auto; 
    border-radius: 10px;
}

.iniciativa-card {
    background-color: transparent;
    border: 2px solid #f2673d;
}

.iniciativa-card .btn {
    border-radius: 10px;
    font-size: 1rem;
    padding: 8px 15px;
    transition: 0.3s;
}

.iniciativa-card .btn-primary {
    background-color: #f23d6d;
    border: none;
}

.iniciativa-card .btn-primary:hover {
    background-color: #e62c5b;
}

.iniciativa-card .btn-secondary {
    background-color: #3d6df2;
    border: none;
}

.iniciativa-card .btn-secondary:hover {
    background-color: #2e5cb8;
}

/* Depoimentos */
.depoimentos-container {
    text-align: center;
    padding: 30px 10%;
}

.depoimentos-titulo {
    margin-bottom: 20px;
    font-size: 2.3rem;
}

.depoimentos-bg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* Garante mesma altura */
    gap: 20px;
    background-color: #8d61e6;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
}

.depoimento-card {
    background: transparent;
    color: #fff;
    padding: 20px;
    flex: 1 1 30%;
    min-width: 280px;
    max-width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px; /* Garante altura mínima igual */
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.depoimento-header h4 {
    font-size: 1rem;
    margin: 0;
}

.depoimento-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 1rem;
}

.foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.divider {
    display: none; /* Oculta, pois não é necessário com flexbox */
}

.divider-horizontal {
    display: none;
}


/*Sessão parceiros*/
#parceiros a{
    background-color: #e62c5b;
    border: none;
}

#parceiros a:hover {
    background-color: #ff0044;
    transform: scale(1.05);
}

/*Sessão PRODUTOS*/
#produtos a{
    background-color: #f2673d;
    border: none;
}

#produtos a:hover{
    background-color: rgb(238, 95, 6);
    border: none;
    transition: all 0.3s ease-in-out;
}

#produtos .preco {
    font-size: 20px; 
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

#produtos .carousel-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;

    .btn.control{
       padding: 0;
    }

    .btn.control:active {
        border-color: transparent;
        background-color: rgba(0, 0, 0, 0.65);
    }
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
}

.card-text {
    flex-grow: 1; 
    min-height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-body .btn {
    margin-top: 10px; 
}

/* Footer */
#contato {
    background-color: #683df2;
}

/* Efeito hover neon nos ícones das redes sociais */
#contato a i {
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

#contato a:hover i {
    color: #f7a0b2; 
}

.fw-bold{
    font-family: "Anton", sans-serif;
    color: #222;
    font-size: 2.3rem;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

/* Botão fixo para subir ao topo */
#btnTopo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff0044;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; 
}
#btnTopo:hover {
    background-color: #e62c5b;
}

@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #8d61e6;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav {
        align-items: flex-end;
        gap: 10px;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        font-weight: 500;
        padding: 12px 20px;
        border-radius: 5px;
        color: white !important;
        transition: all 0.3s ease-in-out;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }
    
    .hero-content {
        max-width: 50%;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .hero-image img {
        max-width: 100%;
    }
    .sobre {
        width: 95%;
        text-align: center;
    }

    .sobre .row {
        flex-direction: column-reverse;
    }

    .sobre img {
        margin-bottom: 20px;
    }

    .botoes {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .sobre .row {
        flex-direction: column; 
    }

    .pilares {
        padding: 50px 5%;
    }

    .pilares-titulo {
        font-size: 2rem;
    }

    .pilares-container {
        flex-direction: column;
        align-items: center;
    }

    .pilar {
        width: 90%;
        max-width: 100%;
    }

    .grid-item {
        margin-bottom: 20px; 
    }

    .iniciativas {
        width: 95%;
    }
    
    .iniciativa-card {
        padding: 20px;
    }

    .iniciativa-logo {
        max-width: 120px;
    }
    .depoimentos-bg {
        flex-direction: column;
        padding: 20px;
    }

    .depoimento-card {
        text-align: center;
        width: 100%;
    }

    .depoimento-header {
        justify-content: center;
    }

    .divider {
        display: none;
    }

    .divider-horizontal {
        width: 80%;
        height: 2px;
        background-color: #fff;
        margin: 10px auto;
    }
}


@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;  
        line-height: 1.2; 
        text-align: center; 
        word-break: break-word; 
        padding: 0 10px; 
    }
    .btn {
        font-size: 1.1rem;
        padding: 15px 20px; 
    }
}

@media (max-width: 470px) {
    .hero {
        text-align: center;
        padding: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn-primary {
        width: 100%;
        max-width: 200px;
        margin: 10px auto;
    }
}



