

/*--------------------------------------------------------------
# Bloco 1 - Variáveis e Reset
--------------------------------------------------------------*/

:root {
    /* Primeiro conjunto de variáveis - Azul Escuro */
    --dark-blue: #0a1f3c;
    --medium-blue: #1e3a5f;
    --light-blue: #2e5984;
    --transparent-dark: rgba(10, 31, 60, 0.95);
    --transparent-medium: rgba(30, 58, 95, 0.9);

    /* Segundo conjunto de variáveis - Azul com detalhes Vermelhos */
    --blue-light: #3498db;
    --blue-medium: #2980b9;
    --blue-dark: #1e3a5f;
    --red-accent: #e74c3c;
    --red-dark: #c0392b;
    --red-light: #ff6b6b;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
}
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
body {
  background: #0a1f3c; /* ou outro degradê, cor sólida, imagem etc */
}

/*--------------------------------------------------------------
# Bloco 2 - Bottom Navigation Bar
--------------------------------------------------------------*/

.bottom-nav {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0a1f3c 0%, #1e3a5f 100%);
    color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease-in-out;
    z-index: 999;
    opacity: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}

.bottom-nav.visible {
    bottom: 0;
    opacity: 1;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 20px;
}

.highlight-text {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    animation: pulse 2s infinite;
}

.main-text {
    font-size: 16px;
    opacity: 0.9;
}

.nav-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    background-color: #c0392b;
    color: white;
}

.arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    margin-left: 8px;
    animation: bounce 1.5s infinite;
}

/* Animação de ondas */
.wave-animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.wave {
    background: rgba(231, 76, 60, 0.1);
    width: 200%;
    height: 200px;
    position: absolute;
    left: -50%;
    top: -120px;
    border-radius: 43%;
    animation: wave 12s linear infinite;
}

.wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.3;
    top: -140px;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(3px); }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }
    
    .nav-text {
        margin-bottom: 15px;
        padding: 0;
    }
    
    .highlight-text {
        font-size: 20px;
    }
    
    .main-text {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Bloco 3 - Login / Área Restrita
--------------------------------------------------------------*/

.navbar-nav .login-link, 
.navbar-nav .area-restrita-link {
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-left: 10px !important;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

.navbar-nav .login-link i, 
.navbar-nav .area-restrita-link i {
    margin-right: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-nav .login-link:hover, 
.navbar-nav .area-restrita-link:hover {
    background: rgba(231, 76, 60, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.navbar-nav .login-link:hover i, 
.navbar-nav .area-restrita-link:hover i {
    transform: scale(1.1);
}

/* Estilos específicos para desktop */
@media (min-width: 992px) {
    .auth-buttons {
        margin-left: 30px !important;
    }
    
    .navbar-nav:not(.auth-buttons) {
        max-width: calc(100% - 250px);
    }
    
    .area-restrita-link {
        margin-left: 5px !important;
    }
    
    .navbar-collapse .nav-item.auth-item {
        display: none !important;
    }
}

/* Ajustes para o Mobile Menu */
@media (max-width: 991px) {
    .offcanvas-body {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .offcanvas-body .navbar-nav {
        flex: 1;
    }
    
    .auth-buttons-mobile {
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
        width: 100%;
    }
    
    .auth-buttons-mobile .login-link,
    .auth-buttons-mobile .area-restrita-link {
        width: 100%;
        text-align: left;
        margin: 8px 0 !important;
        border-radius: 8px;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff !important;
        display: flex;
        justify-content: flex-start;
        transition: all 0.3s ease;
    }
    
    .auth-buttons-mobile .login-link:hover,
    .auth-buttons-mobile .area-restrita-link:hover {
        background: rgba(231, 76, 60, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    }
    
    .auth-buttons-mobile i {
        width: 24px;
        text-align: center;
        margin-right: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .auth-buttons-mobile .login-link:hover i,
    .auth-buttons-mobile .area-restrita-link:hover i {
        transform: scale(1.1);
    }
    
    .offcanvas-body .nav-item.auth-item {
        display: none;
    }
}

/* Atualizações para o menu secundário */
.secondary-navbar .login-link, 
.secondary-navbar .area-restrita-link {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.secondary-navbar .auth-buttons {
    margin-left: 30px !important;
}

/*--------------------------------------------------------------
# Bloco 4 - Barra de Navegação
--------------------------------------------------------------*/

/* Principal Navbar */
.main-navbar {
    background: linear-gradient(90deg, var(--dark-blue), var(--medium-blue), var(--light-blue));
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s ease-in-out;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--red-accent);
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-link:hover:before {
    visibility: visible;
    width: 100%;
}

.dropdown-menu {
    background: linear-gradient(135deg, var(--transparent-dark), var(--transparent-medium));
    border: none;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s;
}

.dropdown-item {
    color: white;
    font-weight: 500;
    padding: 10px 25px;
    position: relative;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.dropdown-item:hover {
    background: rgba(231, 76, 60, 0.2);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--red-accent);
}

.dropdown-item:hover i {
    opacity: 1;
}

/* Secondary Navbar (transparent) */
.secondary-navbar {
    background: rgba(10, 31, 60, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: -100px;
    z-index: 999;
    transition: top 0.4s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.secondary-navbar.visible {
    top: 0;
}

.secondary-navbar .navbar-brand img {
    height: 40px;
}

.secondary-navbar .nav-link {
    font-size: 0.85rem;
}

/* Hamburger Menu for Mobile */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
    top: 10px;
}

.hamburger span:nth-child(4) {
    top: 20px;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/* Mobile Side Menu */
@media (max-width: 991px) {
    .offcanvas {
        background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
        max-width: 300px;
    }
    
    .offcanvas-header {
        background: rgba(231, 76, 60, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }
    
    .offcanvas-title {
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .offcanvas-body {
        padding: 20px;
    }
    
    .offcanvas .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .offcanvas .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding: 10px 20px;
        border-radius: 0;
    }
    
    .offcanvas .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .offcanvas .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .btn-close-white {
        filter: brightness(0) invert(1);
    }
}

/*--------------------------------------------------------------
# Bloco 5 - Carousel Principal
--------------------------------------------------------------*/

/* Hero Carousel */
.hero-carousel {
    margin-top: 60px;
    position: relative;
    height: calc(100vh - 60px);
    overflow: hidden;
}

.carousel-item {
    height: 100%;
}

.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.carousel-background::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.carousel-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    padding-left: 10%;
    will-change: opacity, transform;
}

.content-wrapper {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    animation: fade-up 1s forwards;
    will-change: opacity, transform;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    line-height: 1.1;
}

.slide-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #e74c3c, #ff6b6b);
    margin-top: 10px;
    transform: scaleX(0) translateZ(0);
    transform-origin: left;
    animation: expand 1.2s forwards 0.5s ease;
    will-change: transform;
}

@keyframes expand {
    to {
        transform: scaleX(1) translateZ(0);
    }
}

.slide-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 90%;
    transform: translateX(-20px) translateZ(0);
    opacity: 0;
    animation: slide-in 0.8s forwards 0.8s;
    will-change: opacity, transform;
}

@keyframes slide-in {
    to {
        transform: translateX(0) translateZ(0);
        opacity: 1;
    }
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: rgba(231, 76, 60, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transform: translateY(20px) translateZ(0);
    opacity: 0;
    animation: btn-appear 1s forwards 1s;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
    will-change: opacity, transform, box-shadow;
}

@keyframes btn-appear {
    to {
        transform: translateY(0) translateZ(0);
        opacity: 1;
    }
}

.discover-btn:hover {
    background: rgba(231, 76, 60, 0.3);
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: #fff;
}

.discover-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.discover-btn:hover i {
    transform: translateX(5px) translateZ(0);
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Customizações para cada slide */
.carousel-item:nth-child(1) .slide-title::after {
    background: linear-gradient(to right, #e74c3c, #ff6b6b); /* Cozinhas */
}

.carousel-item:nth-child(2) .slide-title::after {
    background: linear-gradient(to right, #3498db, #5dade2); /* Salas */
}

.carousel-item:nth-child(3) .slide-title::after {
    background: linear-gradient(to right, #e74c3c, #c0392b); /* Quartos */
}

.carousel-item:nth-child(4) .slide-title::after {
    background: linear-gradient(to right, #e74c3c, #ff6b6b); /* Banheiros */
}

.carousel-item:nth-child(5) .slide-title::after {
    background: linear-gradient(to right, #3498db, #85c1e9); /* Lavação */
}

.carousel-item:nth-child(6) .slide-title::after {
    background: linear-gradient(to right, #e74c3c, #ff6b6b); /* Diversos */
}

/* Decorative Elements */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    opacity: 0.7;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 10%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-icon {
    display: inline-block;
    margin-right: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-content {
        padding-left: 8%;
    }
}

@media (max-width: 768px) {
    .carousel-content {
        padding-left: 6%;
        align-items: center;
    }
    
    .content-wrapper {
        max-width: 90%;
    }
    
    .hero-carousel {
        margin-top: 50px;
        height: calc(100vh - 50px);
    }
    
    .circle-decoration {
        opacity: 0.4;
    }
    
    /* Diminuir duração das animações em dispositivos móveis */
    .content-wrapper,
    .slide-title::after,
    .slide-subtitle,
    .discover-btn {
        animation-duration: 0.7s;
    }
}

@media (max-width: 576px) {
    .carousel-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .discover-btn {
        padding: 8px 18px;
        font-size: 0.95rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .main-navbar {
        padding: 10px 0;
    }
    
    .hero-carousel {
        margin-top: 45px;
        height: calc(100vh - 45px);
    }
}

/*--------------------------------------------------------------
# Bloco 6 - Botão Next e Controles do Carousel
--------------------------------------------------------------*/

/* Estilo para o botão de próximo slide */
.next-slide-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(231, 76, 60, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 50px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.next-slide-btn:hover {
    background-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
}

.next-text {
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.arrow-line {
    width: 20px;
    height: 2px;
    background-color: white;
    position: relative;
    transition: all 0.3s ease;
}

.arrow-line::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -1px;
    width: 10px;
    height: 2px;
    background-color: white;
    transform: rotate(45deg);
    transform-origin: right;
    transition: all 0.3s ease;
}

.arrow-line::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -1px;
    width: 10px;
    height: 2px;
    background-color: white;
    transform: rotate(-45deg);
    transform-origin: right;
    transition: all 0.3s ease;
}

.next-slide-btn:hover .arrow-line {
    width: 24px;
}

.next-slide-btn:hover .arrow-line::after,
.next-slide-btn:hover .arrow-line::before {
    width: 12px;
}

/* Barra de progresso personalizada */
.carousel-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.2);
}

.carousel-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    transition: width 0.1s linear;
}

/* Esconder os controles padrão do Bootstrap */
.carousel-control-prev, 
.carousel-control-next {
    display: none;
}

/* Estilo para o contador de slides */
.slide-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    background-color: rgba(10, 31, 60, 0.6);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

/* Melhorando os indicadores do carousel */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    margin: 0 !important;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.carousel-indicators button.active {
    width: 12px !important;
    height: 12px !important;
    background-color: var(--red-accent) !important;
    opacity: 1;
}

/* Melhorar animações de transição entre slides */
.carousel-item {
    transition: transform 0.8s ease-in-out !important;
}

@media (max-width: 768px) {
    .slide-counter {
        bottom: 20px;
        left: 20px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .carousel-indicators button {
        width: 8px !important;
        height: 8px !important;
    }
    
    .carousel-indicators button.active {
        width: 10px !important;
        height: 10px !important;
    }
    
    .next-slide-btn {
        padding: 12px 15px;
        bottom: 20px;
        right: 20px;
    }
}

/*--------------------------------------------------------------
# Bloco 7 - Card de Avaliação
--------------------------------------------------------------*/

.rating-card-container {
    position: fixed;
    bottom: 30px;
    right: -350px;
    width: 300px;
    z-index: 9999;
    transition: right 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.rating-card {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f, #3498db);
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.4s ease;
}

.rating-card:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
}

.card-inner {
    padding: 25px 20px;
    color: white;
    position: relative;
    z-index: 2;
}

/* Decorações da carta */
.card-decoration {
    position: absolute;
    z-index: 1;
}

.card-decoration-1 {
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.15);
}

.card-decoration-2 {
    bottom: -30px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
}

.card-decoration-3 {
    top: 40%;
    left: 10%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.2);
    animation: float 4s ease-in-out infinite;
}

.card-decoration-4 {
    top: 20%;
    right: 15%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.2);
    animation: float 3s ease-in-out infinite;
}

/* Padrão de folhas no fundo */
.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cpath fill='%23ffffff' d='M20 20 L40 20 L40 40 Z M60 40 L60 60 L40 60 Z'%3E%3C/path%3E%3C/svg%3E");
}

/* Elementos de design da carta */
.card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(231, 76, 60, 0.8);
    border-radius: 3px;
}

.card-message {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.rating-btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #1e3a5f;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.rating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: #e74c3c;
    color: white;
}

.close-card {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    z-index: 3;
}

.close-card:hover {
    background: rgba(231, 76, 60, 0.5);
}

/* Estrelas decorativas */
.star-decoration {
    position: absolute;
    color: rgba(231, 76, 60, 0.5);
    font-size: 16px;
}

.star-1 {
    top: 15px;
    right: 40px;
    animation: float 3s ease-in-out infinite;
}

.star-2 {
    bottom: 20px;
    left: 30px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Envelope decoração */
.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(231, 76, 60, 0.2);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/*--------------------------------------------------------------
# Bloco 8 - Seção de Materiais (Carousel)
--------------------------------------------------------------*/

.carousel-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1f3c 50%, #0a1f3c 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    contain: content;
}

.section-title {
    text-align: center;
    margin: 2rem 0;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Carrossel Infinito */
.infinite-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    will-change: transform;
}

.infinite-carousel-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
    will-change: transform;
}

@keyframes scroll {
    0% { transform: translateX(0) translateZ(0); }
    100% { transform: translateX(-50%) translateZ(0); }
}

.carousel-slide {
    flex: 0 0 320px;
    margin: 0 20px;
    contain: content;
}

.equipamento-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 320px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #1e3a5f;
    background-clip: padding-box;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Efeito de borda brilhante animada */
.equipamento-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3498db, #2980b9, #0a1f3c, #3498db);
    z-index: -1;
    border-radius: 14px;
    background-size: 400% 400%;
    animation: glowingBorder 10s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity, background-position;
    pointer-events: none;
}

@keyframes glowingBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.equipamento-card:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.3);
}

.equipamento-card:hover::before {
    opacity: 1;
}

/* Efeito de brilho ao passar o mouse */
.equipamento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

.equipamento-card:hover::after {
    animation: shine 1.5s;
    will-change: left;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.equipamento-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #2980b9, #3498db);
    color: #fff;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    will-change: transform;
}

@keyframes pulse {
    0% { transform: scale(1) translateZ(0); }
    50% { transform: scale(1.05) translateZ(0); }
    100% { transform: scale(1) translateZ(0); }
}

.equipamento-img-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    position: relative;
    contain: strict;
}

.equipamento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    will-change: transform, filter;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.equipamento-card:hover .equipamento-img {
    transform: scale(1.05) translateZ(0);
    filter: brightness(1.1) contrast(1.1);
}

/*--------------------------------------------------------------
# Bloco 9 - Seção de Projetos
--------------------------------------------------------------*/

.planos-section {
    background: linear-gradient(135deg, #0a1f3c 0%, #051a2d 50%, #041221 100%);
    padding: 120px 0 100px;
    position: relative;
    color: #fff;
    overflow: hidden;
    contain: content;
}

/* Elementos decorativos curvos */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(30, 58, 95, 0.02) 70%);
    opacity: 0.5;
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.circle1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -50px;
    animation-delay: -5s;
}

.circle3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(0, 10px) rotate(0deg); }
    75% { transform: translate(-10px, -5px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.section-badge {
    background: linear-gradient(45deg, #1e3a5f, #2980b9);
    color: #e0f0ff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.6);
    animation: subtle-pulse 4s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(30, 58, 95, 0.6); }
    50% { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(52, 152, 219, 0.8); }
    100% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(30, 58, 95, 0.6); }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, rgba(231, 76, 60, 0.5));
    bottom: -10px;
    left: 15%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

/* Cards dos projetos */
.project-card {
    background: #0c1712;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateY(0);
    height: 400px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    color: #e0e0e0;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.25);
    border: 1px solid rgba(52, 152, 219, 0.5);
}

.project-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid rgba(52, 152, 219, 0.5);
    border-radius: 50px;
    background: rgba(52, 152, 219, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-link:hover {
    background: rgba(52, 152, 219, 0.3);
    transform: scale(1.05);
    color: white;
}

.project-link i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.project-link span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botão de contato */
.btn-contato {
    background: transparent;
    color: #3498db;
    border: 2px solid #2980b9;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: rgba(52, 152, 219, 0.1);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
    color: #3498db;
}

/* Media Queries */
@media (max-width: 991px) {
    .planos-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 767px) {
    .project-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        height: 300px;
    }
    
    .floating-circle {
        opacity: 0.3;
    }
}

/*--------------------------------------------------------------
# Bloco 10 - Loja de Móveis
--------------------------------------------------------------*/

/* Estilos para o componente de loja */
.shop-promo-container {
    width: 100%;
    padding: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-promo-wrapper {
    background: linear-gradient(135deg, #0a1f3c, #1e3a5f, #3498db);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    max-width: 1200px;
    margin: 0 auto;
}

.shop-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,31,60,0.9), rgba(30,58,95,0.8), rgba(52,152,219,0.7));
    z-index: -1;
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shop-promo-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.decoration-icon {
    position: absolute;
    color: rgba(231, 76, 60, 0.2);
    font-size: 4rem;
    filter: drop-shadow(0 0 8px rgba(231, 76, 60, 0.3));
}

.decoration-icon.icon-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
    animation: float 8s ease-in-out infinite;
}

.decoration-icon.icon-2 {
    bottom: 15%;
    left: 10%;
    transform: rotate(25deg);
    animation: float 7s ease-in-out infinite 1s;
}

.decoration-icon.icon-3 {
    top: 20%;
    right: 8%;
    transform: rotate(10deg);
    animation: float 9s ease-in-out infinite 0.5s;
}

.shop-promo-content {
    display: flex;
    position: relative;
    z-index: 2;
    padding: 40px;
    color: white;
}

.shop-content-left {
    flex: 1;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-badge {
    background-color: rgba(231, 76, 60, 0.3);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.shop-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: slideInLeft 0.8s forwards;
    opacity: 0;
    transform: translateX(-20px);
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.shop-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0;
    max-width: 90%;
    line-height: 1.6;
    animation: fadeIn 0.8s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}

.shop-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    gap: 15px;
}

.feature {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin-right: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.feature:nth-child(1) { animation-delay: 0.7s; }
.feature:nth-child(2) { animation-delay: 0.9s; }
.feature:nth-child(3) { animation-delay: 1.1s; }

.feature i {
    margin-right: 8px;
    color: #e74c3c;
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.shop-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: 1.3s;
    position: relative;
    overflow: hidden;
}

.shop-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
}

.shop-button:hover:before {
    left: 100%;
}

.shop-button:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.shop-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.shop-button:hover i {
    transform: translateX(5px);
}

.shop-content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInRight 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.shirt-display {
    display: flex;
    position: relative;
    perspective: 1000px;
}

.shirt {
    transform-style: preserve-3d;
    margin: 0 -30px;
    transition: all 0.5s ease;
    position: relative;
}

.shirt:hover {
    transform: translateY(-15px);
    z-index: 10;
}

.shirt img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    border: 4px solid white;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.3));
}

.shirt:hover img {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: #e74c3c;
}

.shirt-1 {
    transform: rotate(-5deg) translateX(20px);
    z-index: 3;
    animation: floatShirt 8s ease-in-out infinite;
}

.shirt-2 {
    z-index: 2;
    animation: floatShirt 8s ease-in-out infinite 0.5s;
}

.shirt-3 {
    transform: rotate(5deg) translateX(-20px);
    z-index: 1;
    animation: floatShirt 8s ease-in-out infinite 1s;
}

@keyframes floatShirt {
    0% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(-5deg); }
}

.shirt-label {
    background: rgba(255,255,255,0.9);
    color: #0a1f3c;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 0.8rem;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.shirt:hover .shirt-label {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    transform: translateX(-50%) translateY(-5px);
}

.shop-close-mobile {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.3);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    display: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.shop-close-mobile:hover {
    background: rgba(231, 76, 60, 0.5);
    transform: rotate(90deg);
}

/* Responsividade */
@media (max-width: 992px) {
    .shop-promo-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .shop-content-left {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
        align-items: center;
    }
    
    .shop-description {
        max-width: 100%;
    }
    
    .shop-features {
        justify-content: center;
    }
    
    .shirt-display {
        width: 100%;
        justify-content: center;
    }
    
    .shirt {
        transform: none !important;
        margin: 0 -20px;
    }
    
    .shirt img {
        width: 120px;
    }
    
    .shop-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .shop-promo-container {
        padding: 15px;
        margin: 30px 0;
    }
    
    .shop-close-mobile {
        display: flex;
    }
    
    .shop-title {
        font-size: 1.8rem;
    }
    
    .shop-description {
        font-size: 1rem;
    }
    
    .shirt img {
        width: 100px;
    }
    
    .shirt-label {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

@media (max-width: 576px) {
    .shop-promo-content {
        padding: 25px 20px 30px;
    }
    
    .shirt {
        margin: 0 -15px;
    }
    
    .shirt img {
        width: 85px;
        border-width: 3px;
    }
    
    .shop-title {
        font-size: 1.5rem;
    }
    
    .feature {
        font-size: 0.85rem;
        margin-right: 10px;
    }
    
    .shop-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Bloco 11 - Botão de Avaliação
--------------------------------------------------------------*/

/* Estilos para o botão de avaliação */
.avaliacao-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.avaliacao-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    transition: all 0.6s ease;
    z-index: -1;
}

.avaliacao-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(231, 76, 60, 0.4);
    color: white !important;
}

.avaliacao-btn:hover:before {
    left: 0;
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* Ajustes para mobile */
@media (max-width: 991px) {
    .avaliacao-btn {
        margin: 15px 0 5px 0;
        display: inline-flex;
        width: fit-content;
    }
    
    .auth-buttons-mobile .avaliacao-btn {
        margin-top: 15px;
        text-align: center;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Bloco 12 - Footer
--------------------------------------------------------------*/

:root {
    --primary-color: #1e3a5f; /* Azul escuro elegante */
    --secondary-color: #191919;
    --accent-color: #2980b9; /* Variação mais clara de azul */
    --red-accent: #e74c3c; /* Vermelho para detalhes */
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --footer-bg: #191919;
    --footer-bg-light: #252525;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-top {
    position: relative;
    z-index: 2;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--red-accent);
}

.footer-contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    margin-top: 3px;
}

.footer-links li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--red-accent);
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--footer-bg-light);
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--red-accent);
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--red-accent);
    text-decoration: none;
}

/* Decorative Elements */
.footer-decoration {
    position: absolute;
    opacity: 0.03;
    z-index: 1;
}

.footer-decoration-1 {
    top: 40px;
    left: 5%;
    font-size: 120px;
    font-family: 'Font Awesome 6 Free';
    content: '\f6e3'; /* Hammer icon */
}

.footer-decoration-2 {
    bottom: 60px;
    right: 5%;
    font-size: 150px;
    font-family: 'Font Awesome 6 Free';
    content: '\f6e3'; /* Hammer icon */
    transform: rotate(45deg);
}

/* Horário de Funcionamento */
.gym-hours {
    background-color: var(--footer-bg-light);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.gym-hours .day-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.gym-hours .day-time:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* CTA Button */
.footer-cta {
    background: linear-gradient(90deg, var(--red-accent), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--red-accent));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    color: white;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer-col {
        text-align: left !important;
        padding-left: 15px;
        padding-right: 15px; 
    }
    
    .footer-about {
        text-align: left;
    }
    
    .footer-about .social-icons {
        justify-content: flex-start;
    }
    
    .footer h5::after {
        left: 0;
        transform: none;
    }
    
    .footer h5 {
        text-align: left;
    }
    
    .footer-links a::before {
        display: block;
    }
    
    .footer-links {
        text-align: left;
        padding-left: 0;
    }
    
    .footer-links li {
        padding-left: 0;
    }
    
    .footer-contact-info {
        justify-content: flex-start;
        padding-left: 0;
    }
    
    .footer-contact-info li {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .footer-contact-info i {
        margin-right: 12px;
        margin-bottom: 0;
    }
    
    .footer-cta {
        display: inline-block;
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Hammer animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dumbell-icon {
    display: inline-block;
    animation: spin 15s linear infinite;
}

/*--------------------------------------------------------------
# Bloco 13 - Botões Flutuantes (WhatsApp e Voltar ao Topo)
--------------------------------------------------------------*/

/* Estilos base dos botões flutuantes */
.floating-btn {
    position: fixed;
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.3s ease;
}

/* Conteúdo interno dos botões */
.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Tooltips para os botões */
.btn-tooltip {
    position: absolute;
    right: 120%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Efeito de tooltip nos botões */
.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Efeito após click */
.floating-btn:active {
    transform: scale(0.95);
}

/* Botão WhatsApp */
#whatsapp-btn {
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    width: 60px;
    height: 60px;
    border: none;
    display: none;
    opacity: 0;
}

#whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(231, 76, 60, 0.5));
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

#whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(231, 76, 60, 0.6));
}

/* Alterando a cor do ícone do WhatsApp para vermelho */
.whatsapp-icon path {
    fill: #e74c3c !important;
}

/* Botão voltar ao topo */
#back-to-top {
    bottom: 110px;
    right: 30px;
    background: transparent;
    border: none;
    width: 56px;
    height: 56px;
    display: none;
    opacity: 0;
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 3px 6px rgba(30, 58, 95, 0.5));
}

#back-to-top:focus {
    outline: none;
}

.arrow-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

#back-to-top:hover .arrow-icon {
    transform: translateY(-3px);
    filter: drop-shadow(0 4px 8px rgba(30, 58, 95, 0.5));
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de brilho para o WhatsApp */
@keyframes glow {
    0% {
        filter: drop-shadow(0 0 2px rgba(231, 76, 60, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 2px rgba(231, 76, 60, 0.6));
    }
}

/* Animação de carregamento para a seta */
@keyframes arrowLoading {
    0% {
        opacity: 0.4;
        transform: translateY(5px);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        opacity: 0.4;
        transform: translateY(5px);
    }
}

/* Aplicar animação de brilho ao WhatsApp */
#whatsapp-btn .whatsapp-icon {
    animation: glow 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .floating-btn {
        transform: scale(0.9);
    }
    
    #whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    
    #back-to-top {
        bottom: 90px;
        right: 20px;
    }
    
    .btn-tooltip {
        display: none;
    }
}

/*--------------------------------------------------------------
# Bloco 14 - Estilos Globais e Utilidades
--------------------------------------------------------------*/

.navbar-brand-text {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar-brand-text .text-red {
    color: #e74c3c !important;
    transition: all 0.3s ease;
}

.navbar-brand-text:hover {
    transform: scale(1.05);
}

.navbar-brand-text:hover .text-red {
    color: #ff6b6b !important;
}

/* Para navbar secundária */
.secondary-navbar .navbar-brand-text {
    font-size: 1.3rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar-brand-text {
        font-size: 1.2rem;
    }
    
    .secondary-navbar .navbar-brand-text {
        font-size: 1.1rem;
    }
}

/* Animações globais */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Classes de utilidades */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-slide-down {
    animation: slideInDown 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Delays para animações */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Classes para otimização */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.gpu-acceleration {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--blue-medium), var(--red-accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--red-accent), var(--blue-medium));
}

/* Seleção de texto personalizada */
::selection {
    background-color: var(--red-accent);
    color: white;
}

::-moz-selection {
    background-color: var(--red-accent);
    color: white;
}




/* Adicionar estas regras CSS ao final do arquivo index.css */

/*--------------------------------------------------------------
# CORREÇÕES PARA BOTÕES FLUTUANTES E MENU MOBILE
--------------------------------------------------------------*/

/* Garantir que botões flutuantes fiquem abaixo do menu mobile */
.floating-btn {
    z-index: 1000 !important;
    transition: transform 0.3s ease, z-index 0s;
}

/* Quando offcanvas está ativo, ajustar z-index */
.offcanvas.show {
    z-index: 1045 !important;
}

.offcanvas-backdrop {
    z-index: 1040 !important;
}

/* Ajustar botões quando menu mobile está aberto */
@media (max-width: 991px) {
    body.modal-open .floating-btn,
    .offcanvas.show ~ .floating-btn {
        z-index: 1035 !important;
        transform: translateX(-10px);
    }
}

/*--------------------------------------------------------------
# REMOÇÃO DE SUBLINHADOS DOS BOTÕES DE AUTENTICAÇÃO
--------------------------------------------------------------*/

/* Remover todos os sublinhados dos links de autenticação */
.navbar-nav .login-link, 
.navbar-nav .area-restrita-link,
.auth-buttons-mobile .login-link,
.auth-buttons-mobile .area-restrita-link,
.secondary-navbar .login-link,
.secondary-navbar .area-restrita-link {
    text-decoration: none !important;
    border-bottom: none !important;
}

.navbar-nav .login-link:hover, 
.navbar-nav .area-restrita-link:hover,
.auth-buttons-mobile .login-link:hover,
.auth-buttons-mobile .area-restrita-link:hover,
.secondary-navbar .login-link:hover,
.secondary-navbar .area-restrita-link:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.navbar-nav .login-link:focus, 
.navbar-nav .area-restrita-link:focus,
.auth-buttons-mobile .login-link:focus,
.auth-buttons-mobile .area-restrita-link:focus,
.secondary-navbar .login-link:focus,
.secondary-navbar .area-restrita-link:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none;
    box-shadow: none;
}

.navbar-nav .login-link::before, 
.navbar-nav .area-restrita-link::before,
.secondary-navbar .login-link::before,
.secondary-navbar .area-restrita-link::before {
    display: none !important;
}

/*--------------------------------------------------------------
# ÍCONES FIXOS NO DROPDOWN
--------------------------------------------------------------*/

/* Ícones sempre visíveis no dropdown */
.dropdown-item i {
    opacity: 1 !important;
    margin-right: 10px;
    color: var(--red-accent);
    transition: transform 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# CORREÇÃO COR WHATSAPP VERDE
--------------------------------------------------------------*/

/* Correção da cor do WhatsApp para verde */
.whatsapp-icon path {
    fill: #25D366 !important;
}

#whatsapp-btn .whatsapp-icon {
    filter: drop-shadow(0 2px 5px rgba(37, 211, 102, 0.3));
}

#whatsapp-btn:hover .whatsapp-icon {
    filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.5));
}

/* Animação de brilho do WhatsApp em verde */
@keyframes glowGreen {
    0% {
        filter: drop-shadow(0 0 2px rgba(37, 211, 102, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 2px rgba(37, 211, 102, 0.6));
    }
}

#whatsapp-btn .whatsapp-icon {
    animation: glowGreen 2s infinite;
}

/*--------------------------------------------------------------
# BOTÃO FULLSCREEN PARA PROJETOS
--------------------------------------------------------------*/

.project-fullscreen-btn {
    background: rgba(231, 76, 60, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.project-fullscreen-btn:hover {
    background: rgba(231, 76, 60, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: #fff;
}

.project-fullscreen-btn i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.project-fullscreen-btn span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*--------------------------------------------------------------
# REMOVER AVALIAÇÃO DO NAVBAR SECUNDÁRIO
--------------------------------------------------------------*/

.secondary-navbar .avaliacao-btn {
    display: none !important;
}

/*--------------------------------------------------------------
# MELHORIAS PARA CAROUSEL EM MOBILE
--------------------------------------------------------------*/

/* Otimizações para mobile */
@media (max-width: 768px) {
    .hero-carousel {
        height: calc(100vh - 60px);
    }
    
    .carousel-content {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .content-wrapper {
        max-width: 95%;
    }
    
    /* Acelerar animações em mobile */
    .slide-title,
    .slide-subtitle,
    .discover-btn {
        animation-duration: 0.6s !important;
    }
    
    .slide-title::after {
        animation-duration: 0.8s !important;
    }
    
    /* Botão next menor em mobile */
    .next-slide-btn {
        padding: 10px 18px;
        bottom: 15px;
        right: 15px;
    }
    
    .next-text {
        font-size: 13px;
    }
    
    .arrow-icon {
        width: 25px;
        height: 25px;
    }
    
    /* Contador menor em mobile */
    .slide-counter {
        bottom: 15px;
        left: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Botão fullscreen responsivo em mobile */
    .project-fullscreen-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .project-fullscreen-btn i {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# CORREÇÕES PARA DROPDOWN DE USUÁRIO
--------------------------------------------------------------*/

.user-dropdown {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.user-dropdown:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: #fff !important;
    text-decoration: none !important;
}

.user-dropdown:focus {
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: none;
}

/* Melhorias para mobile */
.user-info-mobile {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.user-name {
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.dropdown-item-mobile {
    color: rgba(255,255,255,0.8);
    text-decoration: none !important;
    padding: 5px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
}

.dropdown-item-mobile:hover {
    color: #fff;
    text-decoration: none !important;
}

.dropdown-item-mobile:last-child {
    border-bottom: none;
}

/*--------------------------------------------------------------
# AJUSTES PARA PERFORMANCE EM MOBILE
--------------------------------------------------------------*/

/* Reduzir animações em dispositivos móveis para melhor performance */
@media (max-width: 768px) {
    .floating-circle {
        animation-duration: 20s;
        opacity: 0.3;
    }
    
    .carousel-item {
        transition: transform 0.6s ease-in-out !important;
    }
    
    /* Reduzir efeitos parallax em mobile */
    .circle-decoration {
        transform: none !important;
    }
    
    /* Simplificar animações do carrossel infinito */
    .infinite-carousel-track {
        animation-duration: 25s !important;
    }
}

/*--------------------------------------------------------------
# MELHORIAS VISUAIS GERAIS
--------------------------------------------------------------*/

/* Melhorar contraste dos badges */
.project-badge .badge {
    font-weight: 600;
    padding: 6px 12px;
    font-size: 0.8rem;
}

.project-badge .badge.bg-primary {
    background-color: #0d6efd !important;
}

.project-badge .badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

/* Melhorar responsividade dos botões de ação */
@media (max-width: 576px) {
    .project-action-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .project-actions {
        gap: 6px;
    }
}

/* Ajuste fino para evitar sobreposição */
.offcanvas.show ~ * {
    position: relative;
}

.offcanvas.show ~ .floating-btn {
    z-index: 1035 !important;
}

/* Correção: seletor item precisava de um prefixo ou contexto */
.item {
    transition: transform 0.6s ease-in-out !important;
}

/* Reduzir efeitos parallax em mobile */
@media (max-width: 768px) {
    .circle-decoration {
        transform: none !important;
    }
    
    /* Simplificar animações do carrossel infinito */
    .infinite-carousel-track {
        animation-duration: 25s !important;
    }
}

/*--------------------------------------------------------------
# MELHORIAS VISUAIS GERAIS
--------------------------------------------------------------*/

/* Melhorar contraste dos badges */
.project-badge .badge {
    font-weight: 600;
    padding: 6px 12px;
    font-size: 0.8rem;
}

.project-badge .badge.bg-primary {
    background-color: #0d6efd !important;
}

.project-badge .badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

/* Melhorar responsividade dos botões de ação */
@media (max-width: 576px) {
    .project-action-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .project-actions {
        gap: 6px;
    }
}

/* Ajuste fino para evitar sobreposição */
.offcanvas.show ~ * {
    position: relative;
}

.offcanvas.show ~ .floating-btn {
    z-index: 1035 !important;
}