/* Adicione no início do arquivo styles.css */
:root {
  --color-primary: #1a56db;
  --color-secondary: #0e2b5c;
  --color-accent: #3b82f6;
}

/* Classes para background */
.bg-primary {
  background-color: var(--color-primary);
}
.bg-secondary {
  background-color: var(--color-secondary);
}
.bg-accent {
  background-color: var(--color-accent);
}

/* Classes para texto */
.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}
.text-accent {
  color: var(--color-accent);
}

/* Classes para borda */
.border-primary {
  border-color: var(--color-primary);
}
.border-secondary {
  border-color: var(--color-secondary);
}
.border-accent {
  border-color: var(--color-accent);
}

.payment-footer {
        color: #fff;            
        padding: 20px;
        text-align: center;  /* Garante centralização do texto */
        }

        .payment-title {
        margin-bottom: 15px;  /* Espaço entre título e ícones */
        }

        .payment-methods {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        }

        .payment-methods img {
        width: 60px;  
        height: auto;
        background-color: #fff;
        padding: 5px;
        border-radius: 8px;
        }

        .portfolio-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .accordion.active .accordion-content {
            max-height: 1000px;
        }
        .accordion.active .accordion-icon {
            transform: rotate(180deg);
        }
        .hero-bg {
            background: linear-gradient(rgba(14, 43, 92, 0.85), rgba(14, 43, 92, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a56db" opacity="0.1"/><path d="M0 0L100 100M100 0L0 100" stroke="%23ffffff" stroke-width="0.5" opacity="0.2"/></svg>');
            background-size: cover;
        }
        .service-card {
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        .service-card:hover {
            border-bottom-color: #3b82f6;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .contact-form input, .contact-form textarea {
            transition: all 0.3s ease;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        .floating-button {
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-in-out;
        }
        
        .modal-overlay.active {
            display: flex;
        }
        
        .modal-container {
            position: relative;
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            overflow-y: auto;
            animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .modal-content {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .modal-header {
            position: relative;
            padding: 25px;
            background: linear-gradient(135deg, #1a56db, #0e2b5c);
            color: white;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
            transition: all 0.3s;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-modal:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }
        
        .modal-tag {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 12px;
            background: rgba(255,255,255,0.2);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .modal-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin-bottom: 25px;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        
        .modal-text {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .modal-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 25px 0;
        }
        
        .detail-item {
            padding: 15px;
            background-color: #f9fafb;
            border-radius: 8px;
            border-left: 3px solid #3b82f6;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .modal-details {
                grid-template-columns: 1fr;
            }
            
            .modal-body {
                padding: 20px;
            }
            
            .modal-header {
                padding: 15px;
            }
        }
        
        .project-navigation {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .nav-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #0e2b5c;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .nav-arrow:hover {
            background: rgba(255,255,255,0.8);
            transform: scale(1.1);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50%;
            height: 3px;
            background: #3b82f6;
            transform: translateX(50%);
        }
        
        .testimonial-card {
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form input, 
        .contact-form textarea {
            transition: all 0.3s ease;
        }
        
        .contact-form input:focus, 
        .contact-form textarea:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }    

        #zoomed-image {
    transition: transform 0.2s;
    }

    #zoomed-image:hover {
        transform: translate(-50%, -50%) scale(1.02);
    }

    img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: auto; /* Mantém clicável se necessário */
    }

    .sec {
    display: flex;
    gap: 10px; /* espaço entre as imagens (opcional) */
    align-items: center; /* alinha verticalmente, se necessário */
}
