:root {
    --blue: #c8f0f1;
    --dark-blue: #a3d8df;
    --light-blue: #e8f9fa;
    --black: #232323;
    --dark-gray: #424242;
    --graphite: #424242;
    --light-gray: #b8b6b7;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --transition: all 0.3s ease;

    --hero-height-desktop: 36rem;
    --hero-height-mobile: 47rem;
    --hero-height-small: 35rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--graphite);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cambria', serif;
}


/* ============================================================
   LGPD Cookie Banner
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    color: var(--graphite);
    padding: 1.5rem;
    box-shadow: 0 -0.125rem 0.9375rem rgba(184, 182, 183, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 0.0625rem solid rgba(200, 240, 241, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 15.625rem;
}

.cookie-banner-text h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
}

.cookie-banner-text h5 i {
    font-size: 1.3rem;
    color: var(--blue);
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.cookie-banner-text a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    color: var(--black);
    opacity: 0.9;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 3.125rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner .btn-light {
    background: var(--blue);
    color: var(--black);
    border: 0.125rem solid var(--blue);
}

.cookie-banner .btn-light:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(200, 240, 241, 0.4);
}

.cookie-banner .btn-outline-light {
    border: 0.125rem solid var(--dark-gray);
    color: var(--dark-gray);
    background-color: transparent;
}

.cookie-banner .btn-outline-light:hover {
    background-color: var(--off-white);
    border-color: var(--black);
    color: var(--black);
    transform: translateY(-0.125rem);
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 0.125rem 0.9375rem rgba(184, 182, 183, 0.1);
    --bs-navbar-padding-y: 1rem;
    transition: var(--transition);
}

.navbar-brand {
    font-family: 'Cambria', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black) !important;
    letter-spacing: 0.0625rem;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 4.375rem;
    width: auto;
    filter: none;
}

.navbar-toggler {
    border: 0.125rem solid var(--dark-gray);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23424242' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0.125rem;
    background: var(--blue);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--black) !important;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-0.3125rem) scale(1.1);
    box-shadow: 0 0.5rem 1.25rem rgba(35, 35, 35, 0.3);
    background: var(--black);
    color: var(--white);
}


/* ============================================================
   HERO CARROSSEL
   ============================================================ */
.hero-carousel-section {
    position: relative;
    padding-top: 0;
}

#heroCarousel {
    width: 100%;
    height: var(--hero-height-desktop);
    overflow: hidden;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide--1 {
    background-image: url('../images/banner-desktop-1.webp');
}

.hero-slide--2 {
    background-image: url('../images/banner-desktop-2.webp');
}

.hero-slide--3 {
    background-image: url('../images/banner-desktop-3.webp');
}

.hero-slide__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
    z-index: 1;
}

.hero-slide .container {
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-slide__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    transform: translateX(-2rem);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.carousel-item.active .hero-slide__content {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide__tag {
    display: inline-block;
    background: var(--blue);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    padding: 0.35rem 1rem;
    border-radius: 3rem;
    margin-bottom: 1.25rem;
}

.hero-slide__title {
    font-family: 'Cambria', serif;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1.25rem;
    text-shadow: 0 0.125rem 0.5rem rgba(255, 255, 255, 0.6);
    text-align: left;
}

.hero-slide__title em {
    font-style: normal;
    color: var(--black);
}

.hero-slide__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--dark-gray);
    max-width: 34rem;
    margin-bottom: 2rem;
    text-align: left;
}

.hero-slide__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 3.125rem;
    border: 0.125rem solid var(--black);
    transition: all 0.3s ease;
    letter-spacing: 0.02rem;
}

.hero-slide__cta i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.hero-slide__cta:hover {
    background: transparent;
    color: var(--black);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 2rem rgba(35, 35, 35, 0.2);
}

.hero-slide__cta:hover i {
    transform: translateX(0.3rem);
}

.hero-carousel__indicators {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    gap: 0.625rem;
    z-index: 10;
    margin: 0 !important;
    padding: 0;
    list-style: none;
    right: auto !important;
    justify-content: center;
}

.carousel-indicators.hero-carousel__indicators button,
.carousel-indicators.hero-carousel__indicators button.hero-carousel__dot {
    width: 0.5rem !important;
    height: 0.5rem !important;
    min-width: unset !important;
    border-radius: 50% !important;
    background-color: rgba(35, 35, 35, 0.25) !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    cursor: pointer;
    transition: all 0.4s ease !important;
    outline: none;
    box-sizing: border-box !important;
    flex: unset !important;
    opacity: 1 !important;
    text-indent: 0 !important;
    margin: 0 !important;
}

.carousel-indicators.hero-carousel__indicators button.active,
.carousel-indicators.hero-carousel__indicators button:hover {
    background-color: var(--black) !important;
    width: 1.75rem !important;
    border-radius: 0.25rem !important;
    opacity: 1 !important;
}

.hero-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: none;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
}

.hero-carousel__arrow--prev {
    left: 1.5rem;
}

.hero-carousel__arrow--next {
    right: 1.5rem;
}

.hero-carousel__arrow:hover {
    background: transparent;
    color: var(--blue);
    border-color: transparent;
    box-shadow: none;
    transform: translateY(-50%) scale(1.2);
}

.hero-carousel__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1875rem;
    background: rgba(200, 240, 241, 0.35);
    z-index: 10;
    overflow: hidden;
}

.hero-carousel__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--dark-blue);
    transition: width 0.1s linear;
}

#heroCarousel .carousel-item:not(.active) {
    pointer-events: none;
}


/* ============================================================
   ANIMAÇÕES GERAIS
   ============================================================ */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-left {
    opacity: 0;
    transform: translateX(-6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-top {
    opacity: 0;
    transform: translateY(-6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left-up {
    opacity: 0;
    transform: translateX(-6.25rem) translateY(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-bottom {
    opacity: 0;
    transform: translateY(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right-up {
    opacity: 0;
    transform: translateX(6.25rem) translateY(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.visible,
.animate-top.visible,
.animate-right.visible,
.animate-left-up.visible,
.animate-bottom.visible,
.animate-right-up.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.animate-testimonial-left {
    opacity: 0;
    transform: translateX(-6.25rem) translateY(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-testimonial-bottom {
    opacity: 0;
    transform: translateY(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-testimonial-right {
    opacity: 0;
    transform: translateX(6.25rem) translateY(6.25rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-testimonial-left.visible,
.animate-testimonial-bottom.visible,
.animate-testimonial-right.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}


/* ============================================================
   SECTIONS
   ============================================================ */
section {
    padding: 5rem 0;
}

.bg-light-section {
    background: #c8f0f1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 0;
    width: 3.75rem;
    height: 0.1875rem;
    background: var(--blue);
}

#sobre .section-title::after,
#contato .section-title::after {
    background: #424242;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--graphite);
    opacity: 0.9;
}


/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
    border: 0.0625rem solid rgba(200, 240, 241, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 240, 241, 0.05) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.25rem 3.125rem rgba(184, 182, 183, 0.25);
    border-color: var(--blue);
}

.service-card.highlight {
    background: linear-gradient(135deg, rgba(200, 240, 241, 0.05) 0%, var(--white) 100%);
    border-color: var(--blue);
}

.service-icon {
    width: 4.0625rem;
    height: 4.0625rem;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--black);
    transition: var(--transition);
}

.service-icon svg {
    display: block;
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.service-card p {
    color: var(--graphite);
    margin-bottom: 0;
    flex-grow: 1;
}

.service-type {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    color: var(--dark-blue);
    margin-bottom: 0.9rem;
    margin-top: 0;
}

.service-price {
    font-family: 'Cambria', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 0.125rem solid rgba(200, 240, 241, 0.6);
}

.service-note {
    display: inline-block;
    background: var(--blue);
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 3rem;
    margin-top: 1rem;
}

.service-note i {
    margin-right: 0.5rem;
    opacity: 0.75;
}

.service-link {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    margin-top: 1rem;
}

.service-link:hover {
    color: var(--blue);
    gap: 0.625rem;
}

.service-link i {
    margin-left: 0.3125rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(0.3125rem);
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-image img {
    border-radius: 1.25rem;
    box-shadow: 0 0.625rem 2.5rem rgba(184, 182, 183, 0.15);
    width: 100%;
    height: auto;
    max-width: 26rem;
    display: block;
    margin: 0 auto;
}

.rounded-custom {
    border-radius: 1.25rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.9375rem;
    box-shadow: 0 0.5rem 1.5625rem rgba(66, 66, 66, 0.15);
    min-height: 8.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #424242;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--graphite);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.9375rem 3.75rem rgba(184, 182, 183, 0.35);
    transition: var(--transition);
    height: 100%;
    border-left: 0.25rem solid var(--blue);
}

.testimonial-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 1.25rem 3.125rem rgba(184, 182, 183, 0.25);
}

.stars {
    color: var(--blue);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--graphite);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--black);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #424242;
    font-size: 0.9rem;
    opacity: 1;
    font-weight: 500;
}


/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(184, 182, 183, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 0.125rem solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1875rem;
    background: #b8b6b7;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(200, 240, 241, 0.3);
    border-color: #b8b6b7;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 4.0625rem;
    height: 4.0625rem;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--black);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0.625rem 1.5625rem rgba(200, 240, 241, 0.4);
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: 'Cambria', serif;
}

.contact-card-text {
    color: var(--graphite);
    margin: 0;
    font-weight: 500;
}

.contact-card-link {
    color: var(--graphite);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-weight: 600;
}

.contact-card-link:hover {
    color: #424242;
    transform: translateX(0.3125rem);
}

.social-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    font-family: 'Cambria', serif;
}

.social-links-center {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    background: #424242;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(66, 66, 66, 0.3);
}

.social-btn-large:hover {
    transform: translateY(-0.5rem) scale(1.15);
    box-shadow: 0 0.9375rem 2.1875rem rgba(66, 66, 66, 0.5);
    color: var(--white);
    background: #5a5a5a;
}

.animate-contact-1,
.animate-contact-2,
.animate-contact-3,
.animate-contact-4 {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-contact-1 {
    transform: translateX(-6.25rem) translateY(3.125rem);
}

.animate-contact-2 {
    transform: translateY(-6.25rem);
}

.animate-contact-3 {
    transform: translateY(6.25rem);
}

.animate-contact-4 {
    transform: translateX(6.25rem) translateY(3.125rem);
}

.animate-contact-1.visible,
.animate-contact-2.visible,
.animate-contact-3.visible,
.animate-contact-4.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand {
    font-family: 'Cambria', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 4.375rem;
    width: auto;
    filter: none;
}

.footer-text {
    opacity: 0.95;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8125rem;
    height: 2.8125rem;
    background: rgba(200, 240, 241, 0.2);
    border-radius: 50%;
    color: var(--blue);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--blue);
    color: var(--black);
    transform: translateY(-0.3125rem) scale(1.1);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--blue);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.95;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--blue);
    padding-left: 0.3125rem;
}

.footer-info {
    list-style: none;
    padding: 0;
}

.footer-info li {
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.footer-info i {
    margin-right: 0.5rem;
    width: 1.25rem;
    color: var(--blue);
}

.footer-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--blue);
}

.footer-bottom {
    border-top: 0.0625rem solid rgba(200, 240, 241, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

.privacy-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-weight: 400;
}

.privacy-link:hover {
    opacity: 1;
    color: var(--blue);
}


/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
    background: var(--blue);
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    min-width: 100%;
    animation: scroll 40s linear infinite;
    color: var(--black);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.1875rem;
    white-space: nowrap;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ============================================================
   GALERIA
   ============================================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 0.625rem 1.875rem rgba(184, 182, 183, 0.2);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(184, 182, 183, 0.35);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    filter: drop-shadow(0 0.125rem 0.375rem rgba(0, 0, 0, 0.4));
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.gallery-caption-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #424242;
    font-family: 'Cambria', serif;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 1.875rem;
    right: 3.125rem;
    color: var(--white);
    font-size: 3.125rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--blue);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(200, 240, 241, 0.2);
    color: var(--white);
    border: 0.125rem solid var(--white);
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--blue);
    color: var(--black);
    border-color: var(--blue);
}

.lightbox-prev {
    left: 1.875rem;
}

.lightbox-next {
    right: 1.875rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 0.625rem;
}


/* ============================================================
   SEÇÃO CURSO
   ============================================================ */
.curso-section {
    background: var(--off-white);
    position: relative;
}

#cursos .section-title::after {
    background: var(--dark-blue);
}

.curso-tag {
    display: inline-block;
    background: var(--blue);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    padding: 0.4rem 1.2rem;
    border-radius: 3rem;
}

.curso-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
}

.curso-body {
    font-size: 1rem;
    color: var(--graphite);
    text-align: left;
}

.curso-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curso-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.6rem 0;
    font-size: 0.98rem;
    color: var(--graphite);
    font-weight: 500;
    line-height: 1.6;
}

.curso-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--blue);
    border-radius: 50%;
    font-size: 0.7rem;
    color: var(--black);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.curso-cta-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
    text-align: left;
}

.btn-curso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    border: 0.125rem solid var(--black);
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 3.125rem;
    transition: var(--transition);
    font-size: 1.05rem;
    text-decoration: none;
    letter-spacing: 0.02rem;
    position: relative;
    animation: pulse-curso 2s ease-in-out infinite;
}

.btn-curso::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3.125rem;
    background: transparent;
    animation: wave-curso 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-curso {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes wave-curso {
    0% {
        box-shadow: 0 0 0 0 rgba(35, 35, 35, 0.5);
    }

    100% {
        box-shadow: 0 0 0 1rem rgba(35, 35, 35, 0);
    }
}

.btn-curso:hover {
    background: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--white);
    transform: translateY(-0.1875rem) scale(1.05);
    box-shadow: 0 0.75rem 2rem rgba(35, 35, 35, 0.25);
    animation: none;
}

.btn-curso:hover::after {
    animation: none;
    opacity: 0;
}

.curso-image {
    position: relative;
}

.curso-image img {
    border-radius: 1.25rem;
    box-shadow: 0 0.625rem 2.5rem rgba(184, 182, 183, 0.25);
    width: 100%;
    height: auto;
    max-width: 28rem;
    display: block;
    margin: 0 auto;
}


/* ============================================================
   BOTÃO VOLTAR AO TOPO
   ============================================================ */
.back-to-top {
    position: fixed;
    width: 3.125rem;
    height: 3.125rem;
    bottom: 9.375rem;
    right: 2.5rem;
    background: var(--blue);
    color: var(--black);
    border: 0.0625rem solid #b8b6b7;
    border-radius: 50%;
    text-align: center;
    font-size: 1.3rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(200, 240, 241, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--light-blue);
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(200, 240, 241, 0.6);
}


/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
    position: fixed;
    width: 3.75rem;
    height: 3.75rem;
    bottom: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 0.5rem 1.875rem rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    animation: pulse-whatsapp 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 0 0 1rem rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.whatsapp-float:hover::after {
    animation: none;
    opacity: 0;
}

.whatsapp-float::before {
    content: "Fale conosco!";
    position: absolute;
    right: 4.375rem;
    background: var(--white);
    color: var(--graphite);
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
}


/* ============================================================
   OFFCANVAS MOBILE MENU
   ============================================================ */
.offcanvas-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    background: transparent;
    border: 0.125rem solid rgba(66, 66, 66, 0.3);
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offcanvas-toggler:focus,
.offcanvas-toggler:focus-visible {
    box-shadow: none;
    outline: none;
}

.offcanvas-toggler:hover {
    background: rgba(200, 240, 241, 0.15);
    border-color: var(--blue);
}

.hamburger-line {
    display: block;
    width: 1.375rem;
    height: 0.125rem;
    background: var(--black);
    border-radius: 0.125rem;
}

.mobile-menu.offcanvas {
    width: 85% !important;
    max-width: 25rem;
    background: #ffffff;
    border-left: 0.0625rem solid rgba(200, 240, 241, 0.5);
    box-shadow: -1.25rem 0 3.75rem rgba(35, 35, 35, 0.12);
    overflow: hidden;
}

.offcanvas-backdrop.show {
    background-color: rgba(35, 35, 35, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.5rem 1.2rem;
    border-bottom: 0.0625rem solid rgba(200, 240, 241, 0.6);
    background: #ffffff;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1875rem;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--blue) 20%,
            var(--dark-blue) 50%,
            var(--blue) 80%,
            transparent 100%);
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-menu__logo-img {
    height: 3rem;
    width: auto;
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(200, 240, 241, 0.15);
    border: 0.0938rem solid rgba(200, 240, 241, 0.6);
    border-radius: 50%;
    color: var(--dark-gray);
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu__body {
    display: flex;
    flex-direction: column;
    padding: 0 0 2rem;
    overflow-y: auto;
    height: 100%;
    background: #ffffff;
}

.mobile-menu__body::-webkit-scrollbar {
    width: 0.25rem;
}

.mobile-menu__body::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu__body::-webkit-scrollbar-thumb {
    background: rgba(200, 240, 241, 0.5);
    border-radius: 0.25rem;
}

.mobile-menu__nav {
    padding: 0.5rem 0;
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__item {
    border-bottom: none;
}

.mobile-menu__item--last {
    border-bottom: none;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    color: var(--dark-gray);
    text-decoration: none;
    font-family: 'Cambria', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.0187rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 0.0625rem solid rgba(200, 240, 241, 0.45);
    margin: 0 1.8rem;
}

.mobile-menu__item--last .mobile-menu__link {
    border-bottom: none;
}

.mobile-menu__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.1875rem;
    background: var(--blue);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    border-radius: 0 0.125rem 0.125rem 0;
}

.mobile-menu__link:hover::before,
.mobile-menu__link:active::before {
    transform: scaleY(1);
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
    background: rgba(200, 240, 241, 0.12);
    color: var(--black);
}

.mobile-menu__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(200, 240, 241, 0.3);
    border-radius: 0.625rem;
    font-size: 0.85rem;
    color: var(--dark-gray);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mobile-menu__link:hover .mobile-menu__link-icon {
    background: var(--blue);
    color: var(--black);
    transform: scale(1.05);
}

.mobile-menu__link span:not(.mobile-menu__link-icon) {
    flex: 1;
}

.mobile-menu__divider {
    height: 0.0625rem;
    background: rgba(200, 240, 241, 0.7);
    margin: 1.5rem 1.8rem;
}

.mobile-menu__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.2rem 1.8rem 1.5rem;
}

.mobile-menu__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(200, 240, 241, 0.2);
    border: 0.0938rem solid rgba(200, 240, 241, 0.6);
    border-radius: 50%;
    color: var(--dark-gray);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu__social:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    transform: translateY(-0.3125rem) scale(1.1);
    box-shadow: 0 0.5rem 1.25rem rgba(35, 35, 35, 0.3);
}


/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* --- min-width: 992px --- */
@media (min-width: 992px) {
    .nav-link.active {
        color: var(--black) !important;
    }

    .nav-link.active::after {
        width: 80%;
    }
}

/* --- max-width: 991px --- */
@media (max-width: 991px) {
    .navbar {
        --bs-navbar-padding-y: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar .social-icons {
        margin-top: 1rem;
        justify-content: center;
    }

    .marquee-content {
        font-size: 1rem;
        letter-spacing: 0.125rem;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .contact-card-icon {
        width: 4.375rem;
        height: 4.375rem;
        font-size: 1.8rem;
    }

    .social-btn-large {
        width: 3.4375rem;
        height: 3.4375rem;
        font-size: 1.4rem;
    }

    .offcanvas-toggler {
        display: flex;
    }
}

/* --- max-width: 768px --- */
@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    #heroCarousel {
        height: var(--hero-height-mobile);
    }

    .hero-slide--1 {
        background-image: url('../images/banner-mobile-1.webp');
    }

    .hero-slide--2 {
        background-image: url('../images/banner-mobile-2.webp');
    }

    .hero-slide--3 {
        background-image: url('../images/banner-mobile-3.webp');
    }

    .hero-slide__overlay {
        display: block;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.65) 0%,
                rgba(255, 255, 255, 0.60) 50%,
                transparent 75%);
    }

    .hero-slide__title {
        font-size: 2.6rem;
        text-align: center;
    }

    .hero-slide__subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-slide__content {
        align-items: center;
        text-align: center;
        padding-top: 5rem;
        width: 100%;
    }

    .hero-slide__tag {
        text-align: center;
    }

    .hero-slide__cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .hero-slide .container {
        align-items: flex-start;
    }

    .hero-slide .row {
        align-items: flex-start !important;
    }

    .hero-carousel__arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.8rem;
    }

    .hero-carousel__arrow--prev {
        left: 0.875rem;
    }

    .hero-carousel__arrow--next {
        right: 0.875rem;
    }

    .hero-carousel__arrow:hover {
        color: var(--white);
        transform: translateY(-50%);
    }

    .animate-left {
        transform: translateX(-1.875rem);
    }

    .animate-right {
        transform: translateX(1.875rem);
    }

    .animate-top {
        transform: translateY(-1.875rem);
    }

    .animate-bottom {
        transform: translateY(1.875rem);
    }

    .animate-left-up {
        transform: translateX(-1.875rem) translateY(1.875rem);
    }

    .animate-right-up {
        transform: translateX(1.875rem) translateY(1.875rem);
    }

    .animate-testimonial-left {
        transform: translateX(-1.875rem) translateY(1.875rem);
    }

    .animate-testimonial-bottom {
        transform: translateY(1.875rem);
    }

    .animate-testimonial-right {
        transform: translateX(1.875rem) translateY(1.875rem);
    }

    .lightbox-close {
        top: 1.25rem;
        right: 1.25rem;
        font-size: 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 3.125rem;
        height: 3.125rem;
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .lightbox-prev {
        left: 0.9375rem;
    }

    .lightbox-next {
        right: 0.9375rem;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        bottom: 1.25rem;
    }
}

/* --- max-width: 767px --- */
@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #sobre .section-title {
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero-slide__subtitle {
        max-width: 80%;
    }

    .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .marquee-content {
        font-size: 1.1rem;
        letter-spacing: 0.0938rem;
    }

    .marquee-section {
        padding: 2rem 0;
    }

    .back-to-top {
        width: 2.8125rem;
        height: 2.8125rem;
        bottom: 7.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
    }

    .whatsapp-float::before {
        right: 4rem;
        font-size: 0.8rem;
        padding: 0.5rem 0.8125rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom p {
        text-align: center;
    }

    .footer-logo {
        height: 3.4375rem;
    }

    .brand-logo {
        height: 3.4375rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card-icon {
        width: 4.0625rem;
        height: 4.0625rem;
        font-size: 1.6rem;
    }

    .contact-card-title {
        font-size: 1.2rem;
    }

    .social-btn-large {
        width: 3.125rem;
        height: 3.125rem;
        font-size: 1.3rem;
    }

    .social-links-center {
        gap: 1rem;
    }

    .animate-contact-1,
    .animate-contact-2,
    .animate-contact-3,
    .animate-contact-4 {
        transform: translateY(1.875rem);
    }

    .service-price {
        font-size: 1.5rem;
    }

    .about-image img,
    .curso-image img {
        max-width: 100%;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-text h5 {
        font-size: 1.2rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner .btn {
        flex: 1;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .btn-curso {
        width: 85%;
        max-width: 22rem;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        justify-content: center;
        white-space: nowrap;
    }

    .curso-lead,
    .curso-body,
    .curso-cta-text {
        text-align: left;
    }

    .curso-tag {
        display: block;
        text-align: center;
    }

    .curso-content-text {
        text-align: center;
    }

    .curso-content-text .curso-lead,
    .curso-content-text .curso-body,
    .curso-content-text .curso-cta-text,
    .curso-content-text .curso-list {
        text-align: left;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: rgba(200, 240, 241, 0.2);
        color: var(--white);
        border-color: var(--white);
    }
}

/* --- max-width: 390px --- */
@media (max-width: 390px) {
    .mobile-menu__link {
        font-size: 0.95rem;
        padding: 0.9rem 0;
    }

    .mobile-menu__link-icon {
        width: 1.875rem;
        height: 1.875rem;
        font-size: 0.75rem;
    }

    .mobile-menu__logo-img {
        height: 2.5rem;
    }
}

/* --- max-width: 376px --- */
@media (max-width: 376px) {
    #heroCarousel {
        height: var(--hero-height-small);
    }

    .hero-slide__title {
        font-size: 2rem;
    }

    .hero-slide__subtitle {
        font-size: 0.88rem;
    }

    .hero-slide__tag {
        font-size: 0.62rem;
        padding: 0.3rem 0.85rem;
    }

    .hero-slide__cta {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }

    .hero-slide__content {
        padding-top: 2rem;
    }
}