/* ARQUIVO: components.css */

/*--------------------------------------------------------------
# ANIMAÇÕES DE SCROLL PARA SEÇÕES
--------------------------------------------------------------*/

/* Elementos que terão animação ao scroll */
.section-title,
.section-badge,
.project-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quando o elemento entra na viewport */
.section-title.animate-in,
.section-badge.animate-in,
.project-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animação de pulso para o badge */
@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-badge {
    animation: subtle-pulse 4s ease-in-out infinite;
}

/* Delays progressivos para cards */
.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.2s; }
.project-card:nth-child(3) { transition-delay: 0.3s; }

/*--------------------------------------------------------------
# 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); }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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); }
}

  /*--------------------------------------------------------------
# SHOWCASE PREMIUM DE MÓVEIS - CSS CORRIGIDO
--------------------------------------------------------------*/

.moveis-showcase-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1f3c 50%, #1e3a5f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.moveis-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(231, 76, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header do Showcase */
.showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.showcase-badge {
    background: linear-gradient(45deg, #1e3a5f, #3498db);
    color: #e0f0ff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.showcase-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: premiumShine 3s infinite;
}

@keyframes premiumShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.showcase-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.5);
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container Premium do Carrossel */
.premium-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.premium-carousel-track {
    display: flex;
    /* ANIMAÇÃO REMOVIDA DO CSS - CONTROLADA APENAS PELO JAVASCRIPT */
    width: max-content;
    will-change: transform;
    transition: animation-play-state 0.3s ease;
}

.premium-carousel-track.paused {
    animation-play-state: paused;
}

/* Keyframe - Mesma duração para todos os dispositivos */
@keyframes premiumSlideFlow {
    0% { 
        transform: translateX(0) translateZ(0);
    }
    100% { 
        transform: translateX(-33.333%) translateZ(0); /* Loop em 1/3 para 3 conjuntos */
    }
}

/* Slides do Portfolio */
.portfolio-slide {
    flex: 0 0 350px;
    margin: 0 25px;
    position: relative;
}

.portfolio-furniture-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(45, 45, 45, 0.9));
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    position: relative;
    border: 1px solid rgba(52, 152, 219, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.portfolio-furniture-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(52, 152, 219, 0.8), 
        rgba(231, 76, 60, 0.6), 
        rgba(52, 152, 219, 0.8)
    );
    z-index: -1;
    border-radius: 22px;
    background-size: 300% 300%;
    animation: premiumBorderGlow 8s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes premiumBorderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Tag Premium */
.premium-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #e74c3c, #ff6b6b);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 25px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: premiumPulse 3s ease-in-out infinite;
}

@keyframes premiumPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4); }
}

/* Container da Imagem */
.furniture-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.furniture-premium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

/* Overlay com informações */
.furniture-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.furniture-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.furniture-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Controles do Carrossel */
.carousel-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
}

.carousel-control {
    background: rgba(10, 31, 60, 0.8);
    border: 1px solid rgba(52, 152, 219, 0.5);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control:hover {
    background: rgba(52, 152, 219, 0.3);
    border-color: rgba(52, 152, 219, 0.8);
    transform: scale(1.1);
}

.carousel-pause.active {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.8);
}

/* Indicador de Velocidade */
.speed-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.speed-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

#speedValue {
    color: #3498db;
    font-weight: 600;
}

/* Efeitos especiais */
.portfolio-furniture-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

/* Responsividade - SEM ALTERAÇÃO DE ANIMATION-DURATION */
@media (max-width: 1200px) {
    .portfolio-slide {
        flex: 0 0 320px;
        margin: 0 20px;
    }
    
    .portfolio-furniture-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .moveis-showcase-section {
        padding: 60px 0;
    }
    
    .showcase-header {
        margin-bottom: 40px;
    }
    
    .portfolio-slide {
        flex: 0 0 280px;
        margin: 0 15px;
    }
    
    .portfolio-furniture-card {
        height: 300px;
    }
    
    /* ❌ REMOVIDO: animation-duration: 30s; */
    /* A animação é controlada 100% pelo JavaScript agora */
    
    .carousel-controls {
        top: 10px;
        right: 10px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .speed-indicator {
        bottom: 10px;
        left: 10px;
        padding: 6px 12px;
    }
    
    .speed-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .portfolio-slide {
        flex: 0 0 250px;
        margin: 0 12px;
    }
    
    .portfolio-furniture-card {
        height: 280px;
    }
    
    .premium-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}
/*--------------------------------------------------------------
# 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;
}

.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;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.6);
    animation: subtle-pulse 4s ease-in-out infinite;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
}

@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 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;
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# 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 */
.pulse-effect {
    animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# 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(37, 211, 102, 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(37, 211, 102, 0.6));
}

/* Cor do ícone do WhatsApp */
.whatsapp-icon path {
    fill: #25D366 !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 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));
    }
}

/* 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: glowGreen 2s infinite;
}

/*--------------------------------------------------------------
# Correções Mobile Side Menu
--------------------------------------------------------------*/

/* 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);
    }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Correções Finais
--------------------------------------------------------------*/

/* Correções para botões flutuantes e 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);
    }
}

/* 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 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);
}

/* Remover botão de avaliação do navbar secundário */
.secondary-navbar .avaliacao-btn {
    display: none !important;
}

/* Correção do hamburger menu */
.navbar-toggler {
    border: none !important;
    background: transparent !important;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.navbar-toggler[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.1) !important;
}

.hamburger {
    background: transparent !important;
}

.hamburger span {
    background: white !important;
}

/* Animação de pulso personalizada */
.pulse-animation {
    animation: customPulse 1s ease-in-out;
}

@keyframes customPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/*--------------------------------------------------------------
# MODAL TELA CHEIA PREMIUM
--------------------------------------------------------------*/
.project-fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-fullscreen-modal.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.fullscreen-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1;
    animation: modalZoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalZoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fullscreen-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    z-index: 2;
}

.fullscreen-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
}

.fullscreen-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(52, 152, 219, 0.3);
}

.fullscreen-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.fullscreen-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.fullscreen-navigation {
    display: flex;
    gap: 20px;
}

.fullscreen-nav-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.fullscreen-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.6);
}

/*--------------------------------------------------------------
# CARROSSEL DE PROJETOS ALTERNATIVOS
--------------------------------------------------------------*/
.alternative-projects-carousel {
    margin-top: 40px;
    position: relative;
}

.carousel-project-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
    perspective: 1000px;
}

.carousel-project-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(52, 152, 219, 0.3);
}

.carousel-project-card.transitioning {
    transform: rotateY(90deg);
    opacity: 0;
}

.carousel-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-project-card:hover img {
    transform: scale(1.05);
}

.carousel-project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-project-info h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(52, 152, 219, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: linear-gradient(45deg, #3498db, #2980b9);
    width: 35px;
    border-radius: 10px;
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 3px 15px rgba(52, 152, 219, 0.5);
}

/* Responsivo */
@media (max-width: 768px) {
    .fullscreen-content {
        max-width: 95vw;
    }
    
    .fullscreen-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .fullscreen-title {
        font-size: 1.2rem;
    }
    
    .carousel-project-wrapper {
        height: 300px;
    }
}