/* === Fonte principal: Poppins === */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* === Paleta baseada no laranja pastel === */
:root {
    --laranja-pastel: #f4a896;
    --laranja-queimado: #e57b5e;
    --fundo-suave: #fff8f3;
    --pessego-claro: #ffe5d0;
    --texto-marrom: #3b2f2a;
}

/* === Base === */
body {
    font-family: "Poppins", sans-serif;
    background-color: var(--fundo-suave);
    color: var(--texto-marrom);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* === Cabeçalho === */
.navbar {
    background-color: var(--laranja-pastel) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    z-index: 1030;
}

.navbar-brand img {
    height: 48px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    text-decoration: underline;
}

/* === Tipografia padronizada === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--texto-marrom);
    text-transform: none;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}

p,
.list-unstyled {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--texto-marrom);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* === Cards === */
.card,
.card-custom {
    border: none;
    border-radius: 20px;
    background-color: var(--pessego-claro);
    overflow: hidden;
    box-shadow: none;
}

.card-title {
    color: var(--texto-marrom);
    font-weight: 600;
}

.card-text {
    font-size: 0.95rem;
}

.card-custom {
    display: flex;
    flex-direction: column;
    max-height: 520px;
    height: 100%;
}

.card-custom img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-texto {
    text-align: center;
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-texto h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-texto p {
    font-size: 1rem;
    margin: 0;
    color: var(--texto-marrom);
}

/* === Blocos e seções === */
.bloco-coletivo {
    background-color: var(--pessego-claro);
    border-radius: 20px;
    color: var(--texto-marrom);
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.bloco-coletivo h2 {
    font-weight: 700;
}

.bloco-coletivo p {
    margin-bottom: 1.2rem;
}

.bg-light {
    background-color: var(--pessego-claro) !important;
}

.bg-footer {
    background-color: var(--laranja-pastel);
    color: var(--texto-marrom);
    border-top: 1px solid #ddd;
}

footer p {
    margin-bottom: 0.5rem;
    color: #fff;
}

/* === Botões === */
.btn-instagram {
    background-color: var(--laranja-queimado);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.btn-instagram:hover {
    background-color: #d16147;
    color: #fff;
}

/* === Carrosséis === */
.carousel-inner {
    margin: 0 auto;
}

.carousel-item img {
    border-radius: 12px;
    max-height: 400px;
    object-fit: cover;
}

#carouselInstagram .carousel-item .row {
    gap: 2rem;
    padding: 1rem 0;
}

.carousel-indicators {
    gap: 10px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--laranja-queimado);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    margin: 0 4px;
}

.carousel-indicators .active {
    opacity: 1;
}

.custom-carousel-btn {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 15px;
}

.carousel-control-next,
.carousel-control-prev {
    justify-content: space-around;
    width: auto;
}

/* === Bloco de mídia === */
.bloco-midia {
    background-color: var(--pessego-claro);
    border-radius: 24px;
    max-width: 79%;
    text-align: left;
}

.link-midia {
    color: var(--texto-marrom);
    font-weight: 500;
    text-decoration: underline;
    display: inline-block;
    margin-top: 0.5rem;
}

.link-midia:hover {
    text-decoration: underline;
}

#carouselInstagram .carousel-item .row {
    min-height: 350px;
}

/* === Citação === */
blockquote {
    border-left: 4px solid var(--laranja-queimado);
    padding-left: 1rem;
    font-size: 1.1rem;
    color: #555;
}

blockquote footer {
    font-size: 0.9rem;
    color: #999;
}

/* === Animações === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease forwards;
}

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

/* === Responsividade === */
@media (max-width: 768px) {
    .bloco-coletivo {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .card-text {
        font-size: 0.9rem;
    }

    .carousel-item img {
        max-height: 300px;
    }

    .carousel-indicators {
        gap: 6px;
    }
}

.mt-6 {
    margin-top: 4rem !important;
}
.mb-6 {
    margin-bottom: 4rem !important;
}

.mt-7 {
    margin-top: 5rem !important;
}
.mb-7 {
    margin-bottom: 5rem !important;
}

.mt-8 {
    margin-top: 6rem !important;
}
.mb-8 {
    margin-bottom: 6rem !important;
}
