/********** Template CSS **********/
:root {
    --primary: #e54b46;
    --secondary: #1f1f1f;
    --light: #f4f6f8;
    --dark: #0f172b;
    --accent: #00c853;
    --bg-dark: #333333;
    --text-light: #ffffff;
    --radius: 12px;
}

.btn-link{
    color: var(--secondary);
}
.btn-link:hover{
    color: var(--primary);
}

.btn-default {
    background: rgb(229 75 70 / 73%);
    color: #fff;
}

.btn-default:hover{
    background: var(--primary);
    color: #FFFFFF;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .55);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

.bg-primary-soft {
    background: linear-gradient(135deg, rgba(229, 75, 70, 0.92), rgba(229, 75, 70, 0.8));
}

.bg-secondary-soft {
    background: #f7f8fa;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 75, 70, 0.12);
    color: var(--primary);
    font-size: 24px;
}

/* Ícones circulares */
/* .icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    font-size: 1.2rem;
} */

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.text-secondary-dark {
    color: var(--secondary);
}

.card-shadow {
    box-shadow: 0 24px 48px rgba(15, 23, 43, 0.08);
    border: none;
}

.card-shadow:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 52px rgba(15, 23, 43, 0.12);
}

.case-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(229, 75, 70, 0.12);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--secondary);
}

.list-check li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
}

.card.flex-md-row .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .card.flex-md-row .card-img-top {
        max-width: 260px;
        border-top-left-radius: var(--radius);
        border-bottom-left-radius: var(--radius);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.top-bar {
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 14px;
}

.top-bar a {
    color: var(--text-light);
}

.footer-logo {
    max-width: 160px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5px;
    top: 0;
    bottom: 0;
    background: var(--primary);
    width: 5px;
    border-radius: 999px;
    opacity: 0.2;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* BEGIN custom */

.radius {
    border-radius: var(--radius);
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--bg-dark);
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.header.scrolled {
    background: rgba(51, 51, 51, .9);
    backdrop-filter: saturate(180%) blur(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.header .navbar {
    background: transparent;
}

.header .container-fluid {
    background: var(--bg-dark);
}

.header .navbar-collapse {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 1rem;
}

@media (min-width: 992px) {
    .header .navbar-collapse {
        background: transparent;
        padding: 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform .12s ease, opacity .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    box-shadow: 0 10px 26px rgba(0, 200, 83, .25);
}

.btn-outline {
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
    background: transparent;
}

.nav-cta {
    display: inline-flex;
}

@media (max-width: 991.98px) {
    .navbar .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

.rounded,
.rounded-3,
.rounded-4 {
    border-radius: var(--radius) !important;
}

.card {
    border-radius: var(--radius);
    overflow: hidden;
}

.card .card-img-top {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.card.flex-md-row .card-img-left {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.hero {
    position: relative;
    min-height: 80vh;
}

.hero-slider {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .6s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .35));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: grid;
    place-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 1rem;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(17, 17, 17, .6);
    border: none;
    color: #fff;
    display: grid;
    place-content: center;
    z-index: 3;
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 3;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    padding: 0;
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--primary);
}

.video-section .video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-section .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section .video-play {
    position: absolute;
    inset: auto auto 1rem 1rem;
    border-radius: 999px;
    background: #fff;
    padding: .5rem .75rem;
    color: #111;
}

.cases-section .case-card {
    background: #fff;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.case-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.case-body {
    padding: 1rem;
}

.cases-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: .5rem;
}

.cases-carousel > * {
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .cases-carousel {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 640px) {
    .cases-carousel {
        grid-auto-columns: 100%;
    }
    .hero-prev,
    .hero-next {
        display: none;
    }
}

.cta-bg {
    position: relative;
    background: url('../img/about-3.jpg') center/cover no-repeat;
    padding: 64px 0;
}

.cta-bg__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.cta-bg__content {
    position: relative;
    color: #fff;
    text-align: center;
}

.fab-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
    z-index: 1000;
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, .45); }
    70% { box-shadow: 0 0 0 18px rgba(0, 200, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 88px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 1000;
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.loader {
  position: fixed;
  inset: 0;
  background: #111;
  display: grid;
  place-content: center;
  z-index: 2000;
}

.loader-logo-mask {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.loader-logo-mask img {
  width: 200px;
  mask-image: linear-gradient(90deg, transparent 0%, white 40%, white 60%, transparent 100%);
  mask-size: 300%;
  animation: maskMove 1.5s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, white 40%, white 60%, transparent 100%);
  -webkit-mask-size: 300%;
}

@keyframes maskMove {
  0% { mask-position: 150%; -webkit-mask-position: 150%; }
  100% { mask-position: -150%; -webkit-mask-position: -150%; }
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 24px 0;
}

/* BEGIN custom: header refinements */
.header {
    background: transparent;
}

.header .top-bar {
    background: linear-gradient(90deg, rgba(18, 20, 22, 0.9), rgba(34, 36, 40, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
    color: rgba(255, 255, 255, 0.72);
    transition: max-height .35s ease, opacity .2s ease, padding .35s ease, border-color .35s ease;
    max-height: 120px;
}

.header .top-bar i {
    color: var(--primary) !important;
}

.header .top-bar a {
    color: #fff;
    font-weight: 500;
}

.header .navbar {
    background: rgba(28, 30, 33, 0.94);
    backdrop-filter: saturate(180%) blur(16px);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header .navbar-nav .nav-link {
    padding: 0.65rem 0.9rem;
    margin-right: 0;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.72);
    transition: color .2s ease;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link:focus,
.header .navbar-nav .nav-link.active {
    color: #fff;
}

.header .navbar .nav-cta {
    margin-left: 1.5rem;
}

.header .navbar-brand img {
    transition: height .3s ease;
    height: 80px;
}

.header.scrolled .navbar {
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
    background: rgba(18, 20, 22, 0.96);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.header.scrolled .navbar-brand img {
    height: 46px;
}

.header.scrolled .top-bar {
    max-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    overflow: hidden;
    border-bottom-color: transparent;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .header .navbar {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .header .navbar .nav-cta {
        margin-left: 0;
    }
}

/* Hero enhancements */
.hero {
    background-color: #05070b;
}

.hero-slider {
    isolation: isolate;
    position: relative;
    min-height: 80vh;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 25%, rgba(0, 200, 83, 0.22), transparent 55%),
                radial-gradient(circle at 82% 75%, rgba(229, 75, 70, 0.28), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.85;
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(130deg, rgba(5, 7, 12, 0.9) 0%, rgba(5, 7, 12, 0.72) 52%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-content {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-copy {
    /* max-width: 700px;
    background: linear-gradient(135deg, rgba(12, 16, 24, 0.78), rgba(12, 16, 24, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 36px 64px rgba(0, 0, 0, 0.4); */
    padding: clamp(1.75rem, 3vw, 2.75rem);
    border-radius: var(--radius);
    /* backdrop-filter: blur(2px); */
}

.hero-copy .section-eyebrow {
    color: var(--primary);
    letter-spacing: 0.3em;
}

.hero-copy h1,
.hero-copy h2 {
    color: #fff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.88);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: #fff;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translate3d(0, -52%, 0);
}

.hero-prev {
    left: clamp(1rem, 4vw, 2.5rem);
}

.hero-next {
    right: clamp(1rem, 4vw, 2.5rem);
}

.hero-dots {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 3rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-dots button {
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.36);
    opacity: 0.9;
    transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-dots button.is-active {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.08);
}

.hero-dots button:focus-visible,
.hero-prev:focus-visible,
.hero-next:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (min-width: 992px) {
    .hero-content {
        justify-items: start;
        text-align: left;
    }

    .hero-copy {
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .header .navbar-nav .nav-link {
        letter-spacing: 0.05em;
    }

    .hero-prev,
    .hero-next {
        width: 44px;
        height: 44px;
    }

    .hero-dots {
        gap: 0.5rem;
        bottom: 1.25rem;
    }

    .hero-copy {
        padding: 1.5rem;
    }
}

.card-img, .card-img-top, .card-img-bottom
 {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.bg-blur {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Imagem de fundo */
.bg-blur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg-10.jpg'); /* substitua pela sua imagem */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(1px) brightness(0.8); /* embaçamento e leve escurecimento */
  transform: scale(1.1); /* evita bordas visíveis do blur */
  z-index: -2;
}

/* Camada escura transparente para contraste de texto */
.bg-blur::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* tom claro translúcido, pode ajustar */
  z-index: -1;
  backdrop-filter: blur(5px);
}

.parallax-blur {
  position: relative;
  z-index: 1;
  overflow: hidden;
  perspective: 1px; /* cria profundidade */
  transform-style: preserve-3d;
}

/* Imagem de fundo */
.parallax-blur::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg-7.jpg'); /* substitua pela sua imagem */
  background-size: cover;
  background-position: top;
  filter: blur(1px) brightness(0.8); /* embaçamento e leve escurecimento */
  transform: translateZ(-1px) scale(2); /* cria o efeito parallax */
  z-index: -2;
}

/* Camada escura transparente para contraste de texto */
.parallax-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5); /* tom claro translúcido, pode ajustar */
  z-index: -1;
  backdrop-filter: blur(5px);
}

.text-primary{
    color: var(--text-light) !important;
}

.border-primary{
    border-color: var(--primary) !important;
}
.text-default{
    color: var(--primary);
}
/* aparência padrão do dropdown (fecha por padrão) */
.navbar .dropdown-menu{
  background:#1c1c1c; /* mantenha a cor do seu header */
  border:none;
  min-width:220px;
  opacity:0; visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;
}

/* quando o Bootstrap abrir no mobile (classe .show), exibe */
.navbar .dropdown-menu.show{
  opacity:1; visibility:visible; transform:translateY(0);
}

/* desktop: abre no hover */
@media (min-width: 992px){
  .navbar .dropdown:hover > .dropdown-menu{
    display:block;          /* garante render */
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
}

/* itens */
.navbar .dropdown-item{
  color:#fff;
  border-radius:.375rem;
  padding:.45rem .75rem;
}
.navbar .dropdown-item:hover{
  background:rgba(255,255,255,.1);
}


/* END custom: header refinements */
/* END custom */
