/* ===== PÁGINA DE CAUSAS ===== */
.cause-page {
    padding-top: 80px;
}

/* ===== BANNER DA CAUSA ===== */
.cause-hero {
    background: linear-gradient(rgba(45, 104, 159, 0.85), rgba(47, 73, 98, 0.9)), var(--hero-image, url(''));
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cause-title {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.cause-subtitle {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 30px auto;
    border-radius: 2px;
}

/* ===== SEÇÃO HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== SEÇÃO DE FATOS ===== */
.cause-facts {
    padding: 40px 0;
    background-color: var(--light);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fact-card {
    background-color: var(--surface);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    border-top: 4px solid var(--secondary);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.fact-card .fact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 84, 164, 0.1);
}

.fact-card .fact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(0, 84, 164, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
    transform: scale(1.1);
}

.fact-card .fact-label {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.fact-card .fact-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Notas de rodapé para fatos */
.facts-footnote {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footnote-text {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-style: italic;
}

/* ===== ÁREAS DE SERVIÇO ===== */
.service-areas {
    padding: 40px 0;
    background-color: var(--surface);
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-section {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.service-section:hover {
    box-shadow: 0 10px 25px var(--shadow);
    transform: translateX(5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-section-icon {
    font-size: 2.2rem;
    color: var(--primary);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 84, 164, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.service-section p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* ===== NOSSA ATIVIDADE ===== */
.story-highlight {
    padding: 40px 0;
    background-color: var(--light);
}

.activity-item {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.activity-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    min-height: 350px;
}

.activity-item:hover .activity-image img {
    transform: scale(1.05);
}

.activity-date-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--secondary);
    color: white;
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 3;
    min-width: 65px;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-date-badge {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.badge-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.badge-month {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.activity-content {
    flex: 0 0 60%;
    background-color: var(--surface);
    border-radius: 0 12px 12px 0;
    padding: 35px 40px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-left: -20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.activity-header {
    margin-bottom: 20px;
}

.activity-header h3 {
    color: var(--primary);
    font-size: 1.7rem;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.activity-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.activity-item:hover .activity-header h3::after {
    width: 80px;
}

.activity-datetime {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.activity-datetime i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

.date-text,
.location-text {
    margin-right: 10px;
}

.activity-description {
    margin-bottom: 25px;
    flex-grow: 1;
}

.activity-description p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.activity-description p:last-child {
    margin-bottom: 0;
}

/* ===== CARROSSEL ===== */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light);
}

.carousel-simple {
    height: 400px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: scale-down;
    display: block;
    margin: 0 auto;
}

/* Para imagens que são mais largas que altas */
.carousel-slide img.landscape {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

/* Para imagens que são mais altas que largas */
.carousel-slide img.portrait {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Badge Numérico */
.carousel-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.carousel-counter:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.carousel-counter span {
    font-weight: 400;
    opacity: 0.8;
}

.carousel-counter .current-slide {
    font-weight: 700;
    color: var(--secondary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 34px;
}

.carousel-slide img[src*="blogger.googleusercontent.com"] {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
}

.carousel-slide img {
    max-width: none !important;
    max-height: none !important;
    transform: none !important;
}

.carousel-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    flex-shrink: 0;
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
}

/* ===== BOTÃO SABER MAIS ===== */
.activity-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 84, 164, 0.2);
}

.btn-know-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 84, 164, 0.3);
    gap: 12px;
}

.btn-know-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-know-more:hover i {
    transform: translateX(5px);
}

/* ===== AÇÕES RELACIONADAS ===== */
.related-actions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.related-title {
    text-align: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-card {
    background-color: var(--surface);
    border-top: 4px solid var(--secondary);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.related-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 84, 164, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.related-card:hover .related-icon {
    transform: scale(1.1);
}

.related-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.related-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.related-card:hover h4::after {
    width: 50px;
}

.related-card p {
    color: var(--text);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 1rem;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 20px;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.related-link:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 84, 164, 0.2);
    gap: 12px;
}

.related-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.related-link:hover i {
    transform: translateX(5px);
}

/* ===== COMO AJUDAR ===== */
.how-help {
    padding: 40px 20px;
    background-color: var(--surface);
    position: relative;
}

.how-help .involved-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.how-help .option-card {
    background-color: var(--surface);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    border-top: 4px solid var(--secondary);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.how-help .option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.how-help .option-icon {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 84, 164, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.how-help .option-card:hover .option-icon {
    transform: scale(1.1);
}

.how-help .option-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.how-help .option-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.how-help .option-card:hover h3::after {
    width: 60px;
}

.how-help .option-card p {
    color: var(--text);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 1.05rem;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: left;
    padding: 5px 0;
}

.feature-item i {
    color: var(--secondary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.share-main-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .cause-title {
        font-size: 2.4rem;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .fact-card {
        padding: 35px 25px;
    }

    .fact-card .fact-number {
        font-size: 2.5rem;
    }

    .fact-card .fact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .activity-item {
        flex-direction: column;
    }

    .activity-image,
    .activity-content {
        flex: none;
        width: 100%;
        transform: none;
        margin: 0;
        border-radius: 12px;
        animation: none;
        opacity: 1;
    }

    .activity-image {
        margin-bottom: -20px;
        z-index: 2;
    }

    .activity-content {
        padding-top: 45px;
    }

    .activity-header h3 {
        font-size: 1.6rem;
    }

    .activity-image img {
        min-height: 300px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-card {
        padding: 25px;
    }

    .related-icon {
        font-size: 2.2rem;
        width: 60px;
        height: 60px;
    }

    .related-card h4 {
        font-size: 1.2rem;
    }

    .how-help .involved-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-help .option-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .how-help .option-icon {
        font-size: 2.8rem;
        width: 70px;
        height: 70px;
    }

    .service-section p {
        padding-left: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 12px;
    }

    .carousel-btn.next {
        right: 12px;
    }

    .carousel-counter {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .cause-page {
        padding-top: 60px;
    }

    .cause-title {
        font-size: 2rem;
    }

    .cause-subtitle {
        font-size: 1.1rem;
    }

    .section-header .section-subtitle {
        font-size: 1rem;
    }

    .cause-facts,
    .service-areas,
    .story-highlight,
    .how-help {
        padding: 60px 0;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .fact-card {
        padding: 30px 25px;
    }

    .fact-card .fact-number {
        font-size: 2.2rem;
    }

    .fact-card .fact-label {
        font-size: 1.1rem;
    }

    .fact-card .fact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .service-section {
        padding: 30px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .service-section h3 {
        font-size: 1.3rem;
    }

    .activity-content {
        padding: 35px 30px 30px;
    }

    .activity-header h3 {
        font-size: 1.5rem;
    }

    .activity-datetime {
        font-size: 0.95rem;
        gap: 12px;
    }

    .activity-description p {
        font-size: 1rem;
    }

    .activity-date-badge {
        top: 15px;
        right: 15px;
        padding: 7px 12px;
        min-width: 55px;
    }

    .badge-day {
        font-size: 1.5rem;
    }

    .badge-month {
        font-size: 0.9rem;
    }

    .related-actions {
        margin-top: 40px;
        padding-top: 30px;
    }

    .related-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .related-card {
        padding: 30px 25px;
    }

    .related-icon {
        font-size: 2rem;
        width: 55px;
        height: 55px;
    }

    .related-card h4 {
        font-size: 1.2rem;
    }

    .related-card p {
        font-size: 0.95rem;
    }

    .related-link {
        padding: 7px 18px;
        font-size: 0.9rem;
    }

    .how-help .involved-options {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .how-help .option-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }

    .how-help .option-card {
        padding: 35px 25px;
    }

    .how-help .option-card h3 {
        font-size: 1.4rem;
    }

    .how-help .option-card p {
        font-size: 1rem;
    }

    .option-features {
        gap: 8px;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .carousel-simple {
        height: 300px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .carousel-btn:hover {
        opacity: 1;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-counter {
        bottom: 12px;
        right: 12px;
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .breadcrumb-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-know-more {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cause-title {
        font-size: 1.8rem;
    }

    .cause-subtitle {
        font-size: 1rem;
    }

    .fact-card {
        padding: 25px 20px;
    }

    .fact-card .fact-number {
        font-size: 2rem;
    }

    .service-section {
        padding: 25px 20px;
    }

    .activity-content {
        padding: 30px 25px 25px;
    }

    .activity-image img {
        min-height: 250px;
    }

    .activity-header h3 {
        font-size: 1.4rem;
    }

    .activity-datetime {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .related-card {
        padding: 25px 20px;
    }

    .related-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }

    .related-card h4 {
        font-size: 1.1rem;
    }

    .related-card p {
        font-size: 0.9rem;
    }

    .related-link {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .how-help .option-card {
        padding: 30px 20px;
    }

    .how-help .option-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .carousel-simple {
        height: 250px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .carousel-counter {
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 5px;
    }

    .breadcrumb-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .breadcrumb-current {
        padding: 6px 12px;
        font-size: 0.95rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 3px;
    }

    .btn-know-more {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }

    .carousel-counter {
        background-color: rgba(0, 0, 0, 0.8);
    }
}