
/* CSS Profissional para Moura Prime - Pintura */

:root {
    --primary: #1a56db;
    --primary-dark: #1e429f;
    --secondary: #f59e0b;
    --accent: #3b82f6;
    --light: #f3f4f6;
    --dark: #1f2937;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gray: #6b7280;
    --gray-light: #9ca3af;
}

/* Estilos Gerais */
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

/* Header e Navegação */
.header {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Menu Mobile */
.mobile-menu {
    background: white;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 90vw;
    max-width: 400px;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-3d {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-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 ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

.cta-button-secondary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    background: var(--primary-dark);
}

/* Seções */
.diferenciais-section,
.servicos-section,
.sobre-section,
.portfolio-section,
.feedbacks-section,
.contato-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Diferenciais */
.diferencial-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.diferencial-item:hover .diferencial-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.diferencial-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.diferencial-item:hover .diferencial-icon i {
    color: white;
}

.diferencial-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.diferencial-text {
    color: var(--gray);
    line-height: 1.6;
}

/* Serviços */
.servico-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.servico-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.servico-card:hover::before {
    opacity: 0.05;
}

.servico-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.servico-icon i {
    font-size: 2.5rem;
    color: white;
}

.servico-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.servico-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.servico-list {
    text-align: left;
    list-style: none;
    position: relative;
    z-index: 1;
}

.servico-list li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.servico-list i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* Sobre */
.sobre-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.sobre-image {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.sobre-image:hover {
    transform: scale(1.02);
}

/* Portfolio */
.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-image-container {
    height: 250px;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.15);
}

.portfolio-content {
    padding: 1.5rem;
    position: relative;
    z-index: 3;
}

.portfolio-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.portfolio-item-text {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Feedbacks */
.feedback-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feedback-card:hover::before {
    opacity: 1;
}

.feedback-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feedback-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid #e5e7eb;
    transition: all 0.4s ease;
}

.feedback-card:hover .feedback-avatar {
    border-color: var(--primary);
    transform: scale(1.1);
}

.feedback-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.feedback-stars {
    color: #fbbf24;
}

.feedback-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

/* Contato */
.form-container {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.form-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.form-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 ease;
}

.form-button:hover::before {
    left: 100%;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--primary);
    font-size: 1.25rem;
}

.info-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.info-item-text {
    color: var(--gray);
}

.schedule-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.schedule-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.schedule-text {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.schedule-text:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 0.75rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-text {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-input::placeholder {
    color: #9ca3af;
}

.footer-button {
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 99;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Animações */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Efeitos de Reveal ao Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .diferencial-item,
    .servico-card {
        margin-bottom: 2rem;
    }
    
    .servico-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .portfolio-item:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Utilitários */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.box-shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Efeito de tinta respingada */
.paint-splash {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    background: var(--primary);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos adicionais para a seção Sobre Nós */

/* Valores da empresa */
.sobre-section ul li {
    margin-bottom: 0.75rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.sobre-section ul li:hover {
    color: var(--primary);
}

.sobre-section ul li i {
    transition: transform 0.3s ease;
}

.sobre-section ul li:hover i {
    transform: scale(1.2);
}

/* Badge de experiência */
.sobre-section .relative {
    position: relative;
}

.sobre-section .absolute {
    position: absolute;
}

.sobre-section .bg-blue-600 {
    background-color: var(--primary);
}

.sobre-section .-bottom-4 {
    bottom: -1rem;
}

.sobre-section .-right-4 {
    right: -1rem;
}

.sobre-section .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.sobre-section .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.sobre-section .rounded-lg {
    border-radius: 0.5rem;
}

.sobre-section .shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Diferenciais técnicos */
.sobre-section .bg-blue-100 {
    background-color: rgba(59, 130, 246, 0.1);
}

.sobre-section .rounded-full {
    border-radius: 9999px;
}

.sobre-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.sobre-section .p-6 {
    padding: 1.5rem;
}

.sobre-section .shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animações para os novos elementos */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

/* Efeito de flutuação para a badge */
@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

/* Responsividade para os novos elementos */
@media (max-width: 768px) {
    .sobre-section .grid.grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sobre-section .-right-4 {
        right: 0.5rem;
    }
    
    .sobre-section .-bottom-4 {
        bottom: -0.5rem;
    }
    
    .sobre-section .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 640px) {
    .sobre-section .grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sobre-section .absolute {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1.5rem;
    }
}

/* Efeitos de hover para os diferenciais técnicos */
.sobre-section .bg-white {
    transition: all 0.3s ease;
}

.sobre-section .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sobre-section .bg-white:hover .bg-blue-100 {
    background-color: var(--primary);
}

.sobre-section .bg-white:hover .text-blue-600 {
    color: white;
}

/* ===== TELA DE CARREGAMENTO COM ANIMAÇÃO DE PINTURA E FUNDO DESFOCADO ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px); /* FUNDO DESFOCADO AQUI */
    background-color: rgba(248, 250, 252, 0); /* Fundo claro semi-transparente */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paint-animation {
    position: relative;
    width: 300px;
    height: 200px;
    margin-bottom: 2rem;
}

.paint-roller {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 2.5rem;
    color: var(--primary);
    animation: paintRolling 2.5s ease-in-out infinite;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.paint-wall {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.paint-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
    animation: painting 3s ease-in-out infinite;
    border-radius: 8px;
}

.loading-content {
    text-align: center;
    color: var(--dark);
}

.loading-logo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.loading-logo span {
    color: var(--primary);
}

.loading-logo p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Animações de pintura */
@keyframes paintRolling {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(70px) rotate(15deg);
    }
    50% {
        transform: translateX(150px) rotate(0deg);
    }
    75% {
        transform: translateX(230px) rotate(-15deg);
    }
    100% {
        transform: translateX(300px) rotate(0deg);
    }
}

@keyframes painting {
    0% {
        width: 0%;
        opacity: 0.8;
    }
    70% {
        width: 100%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Efeito de saída da tela de loading */
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

/* Responsividade */
@media (max-width: 640px) {
    .paint-animation {
        width: 250px;
        height: 180px;
    }
    
    .paint-wall {
        height: 100px;
    }
    
    .loading-logo h2 {
        font-size: 2rem;
    }
}

/* ===== ESTILOS COMPLEMENTARES PARA NOVAS FUNCIONALIDADES ===== */

/* Lightbox do Portfólio */
.moura-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 2rem; /* Menos padding no topo */
    box-sizing: border-box;
}

.moura-lightbox.moura-visible {
    opacity: 1;
    visibility: visible;
}

.moura-lightbox-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    max-width: 90vw;
    max-height: 90vh; /* Limite máximo da tela */
    width: 800px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto; /* Permite rolar se passar do limite */
}

.moura-lightbox.moura-visible .moura-lightbox-content {
    transform: scale(1);
}

.moura-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 10;
    font-size: 1.2rem;
}

.moura-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg) scale(1.1);
}

.moura-lightbox-img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    margin-top: 2rem;
}

.moura-lightbox-info {
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.moura-lightbox-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.moura-lightbox-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Navegação do Carrossel de Depoimentos */
.moura-testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    gap: 1rem;
}

.moura-testimonial-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.35);
    font-size: 1.1rem;
}

.moura-testimonial-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.45);
}

/* Tooltips */
[data-moura-tooltip] {
    position: relative;
    cursor: pointer;
}

.moura-tooltip {
    position: absolute;
    background: #1f2937;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.2s ease;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
}

.moura-tooltip.moura-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

.moura-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

/* Notificações */
.moura-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1.2rem 1.8rem;
    border-radius: 14px;
    color: white;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.moura-notification.moura-success {
    background: var(--success);
}

.moura-notification.moura-error {
    background: var(--error);
}

.moura-notification.moura-info {
    background: var(--primary);
}

.moura-notification.moura-visible {
    transform: translateX(0);
    opacity: 1;
}

.moura-notification-icon {
    font-size: 1.3rem;
}

/* Botão Voltar ao Topo */
.moura-back-to-top {
    position: fixed;
    bottom: 6.5rem; /* Fica acima do WhatsApp */
    right: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999; /* Pode aumentar para garantir que fique acima */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.moura-back-to-top.moura-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.moura-back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Animações para contadores */
@keyframes moura-countUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.moura-stat-animated {
    animation: moura-countUp 0.7s ease forwards;
}

/* Validação de formulário */
.moura-input-error {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2) !important;
}

/* Estados de loading */
.moura-loading {
    position: relative;
    overflow: hidden;
}

.moura-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: moura-shimmer 1.5s infinite;
}

@keyframes moura-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Efeitos 3D melhorados */
.moura-3d-hover {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.moura-3d-hover:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Animações de entrada especiais */
@keyframes moura-slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes moura-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.moura-slide-in-right {
    animation: moura-slideInRight 0.6s ease-out;
}

.moura-slide-in-left {
    animation: moura-slideInLeft 0.6s ease-out;
}

/* Melhorias de acessibilidade */
.moura-focus-visible:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Efeitos de confirmação */
@keyframes moura-checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.moura-checkmark {
    animation: moura-checkmark 0.6s ease-in-out;
}

/* Responsividade para novos componentes */
@media (max-width: 968px) {
    .moura-lightbox-content {
        width: 90vw;
        margin: 1.5rem;
    }
    
    .moura-lightbox-img {
        height: 300px;
    }
    
    .moura-testimonial-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 640px) {
    .moura-lightbox-content {
        border-radius: 16px;
    }
    
    .moura-lightbox-info {
        padding: 1.5rem;
    }
    
    .moura-lightbox-title {
        font-size: 1.3rem;
    }
    
    .moura-lightbox-img {
        height: 250px;
    }
    
    .moura-notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .moura-back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .moura-testimonial-nav {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .moura-lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .moura-lightbox-img {
        height: 200px;
    }
    
    .moura-testimonial-btn {
        width: 45px;
        height: 45px;
    }
}

/* Modo de redução de movimento */
@media (prefers-reduced-motion: reduce) {
    .moura-lightbox,
    .moura-lightbox-content,
    .moura-notification,
    .moura-back-to-top,
    .moura-tooltip,
    .moura-3d-hover,
    .moura-stat-animated,
    .moura-slide-in-right,
    .moura-slide-in-left,
    .moura-checkmark {
        transition: none !important;
        animation: none !important;
    }
    
    .moura-lightbox.moura-visible {
        transform: none;
    }
    
    .moura-back-to-top.moura-visible {
        transform: none;
    }
}

/* Utilitários específicos */
.moura-text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.moura-shadow-deep {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.moura-border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) border-box;
}

/* Estados de desabilitado */
.moura-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.moura-button:disabled:hover {
    transform: none !important;
}