        html{
            overflow-x: hidden;
            width: 100%;
        }
        :root {
            --primary-dark: #0A1A35;
            --primary-light: #1E3A8A;
            --secondary-color: #F5F3EF;
            --accent-color: #D4B483;
            --text-dark: #2D3748;
            --text-light: #F8FAFC;
            --off-white: #F9F9F7;
            --beige: #E8E3D9;
            --light-gray: #EDF2F7;
            --dark-gray: #4A5568;
        }
        
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--off-white);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(10, 26, 53, 0.08);
            padding: 20px 0;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 25px rgba(10, 26, 53, 0.12);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 1.8rem;
            letter-spacing: -0.5px;
        }
        
        .navbar-brand span {
            color: var(--accent-color);
        }
        
        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            padding: 8px 0;
            font-size: 0.95rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
        
        .hero-section {
            height: 100vh;
            min-height: 800px;
            background-color: #0A1A35;
            background-image: url("Design\ sem\ nome\ \(17\).webp");
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }


        /* Centraliza os botões */
        .hero-content .d-flex {
            justify-content: center;
        }
        .hero-content {
            max-width: 750px;
            position: relative;
            z-index: 2;
            text-align: center; /* Centraliza o texto */
            margin: 0 auto; /* Centraliza horizontalmente */
        }
        
        .hero-title {
            font-size: 3.8rem;
            margin-bottom: 1.8rem;
            line-height: 1.15;
            color: #E8E3D9;
            text-shadow: 0 2px 4px rgba(83, 83, 83, 0.1);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .btn-primary-custom {
            background-color: var(--accent-color);
            color: var(--primary-dark);
            border: none;
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 2px;
            transition: all 0.4s ease;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            color: var(--text-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(212, 180, 131, 0.3);
        }
        
        .btn-primary-custom:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-primary-custom:hover:after {
            left: 100%;
        }
        
        .btn-outline-light, .btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

        .section-title {
            position: relative;
            margin-bottom: 3.5rem;
            color: var(--primary-dark);
            font-size: 2.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -18px;
            left: 0;
        }
        
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-padding {
            padding: 120px 0;
        }
        
        .about-section {
            background-color: white;
            position: relative;
        }
        
        .about-img-container {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(10, 26, 53, 0.1);
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }
        
        .about-img-container:hover {
            transform: rotate(0deg);
        }
        
        .about-img-container:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(to bottom, rgba(10, 26, 53, 0.1) 0%, rgba(10, 26, 53, 0.3) 100%);
            z-index: 1;
        }
        
        .about-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .about-img-container:hover .about-img {
            transform: scale(1.05);
        }
        
        .feature-box {
            padding: 40px 30px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(10, 26, 53, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            border-top: 4px solid transparent;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(10, 26, 53, 0.1);
            border-top-color: var(--accent-color);
        }
        
        .feature-icon {
            font-size: 2.8rem;
            color: var(--accent-color);
            margin-bottom: 1.8rem;
        }
        
        .services-section {
            background-color: var(--secondary-color);
            position: relative;
        }
        
        .service-card {
            background-color: white;
            border-radius: 5px;
            border: none;
            box-shadow: 0 8px 25px rgba(10, 26, 53, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--accent-color);
            z-index: 2;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(10, 26, 53, 0.15);
        }
        
        .service-card:hover:before {
            transform: scaleX(1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-light);
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon {
            color: var(--accent-color);
            transform: scale(1.1);
        }
        
        .portfolio-section {
            background-color: white;
            position: relative;
        }
        
        .portfolio-filter {
            margin-bottom: 50px;
        }
        
        .filter-btn {
            background: none;
            border: none;
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 15px;
            padding: 8px 0;
            position: relative;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .filter-btn:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .filter-btn.active,
        .filter-btn:hover {
            color: var(--primary-dark);
        }
        
        .filter-btn.active:after,
        .filter-btn:hover:after {
            width: 100%;
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .portfolio-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 26, 53, 0.6) 0%, rgba(10, 26, 53, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.4s ease;
            color: white;
            padding: 25px;
            text-align: left;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-category {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-color);
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .testimonials-section {
            background-color: var(--secondary-color);
            position: relative;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 5px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(10, 26, 53, 0.05);
            height: 100%;
            position: relative;
            border-top: 4px solid var(--accent-color);
        }
        
        .testimonial-card:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            color: rgba(10, 26, 53, 0.05);
            font-family: 'Playfair Display', serif;
            line-height: 1;
            z-index: 0;
        }
        
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid var(--accent-color);
            position: relative;
            z-index: 1;
        }
        
        .quote-icon {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .stats-section {
            background-color: var(--primary-dark);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .stat-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        
/* Contact Section Styles */
.contact-section {
    background-color: var(--beige);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(212, 180, 131, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(10, 26, 53, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.contact-info-box {
    background-color: var(--primary-dark);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(10, 26, 53, 0.08);
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--accent-color);
}

.contact-message-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-info-box h3 {
    color: var(--off-white);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-intro {
    margin-bottom: 30px;
    color: var(--off-white);
    font-size: 0.95rem;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 180, 131, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.method-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--off-white);
}

.method-content p {
    font-size: 0.9rem;
    color: #f3e8db;
    margin-bottom: 0;
}

.social-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(10, 26, 53, 0.08);
    height: 100%;
    position: relative;
    z-index: 1;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h4 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-floating label {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: var(--accent-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 180, 131, 0.25);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.btn-primary-custom {
    position: relative;
    overflow: hidden;
}

.btn-primary-custom .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-info-box,
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-method {
        flex-direction: column;
    }
    
    .method-icon {
        margin-bottom: 10px;
    }
    
    .contact-info-box,
    .contact-form-wrapper {
        padding: 25px;
    }
}
        
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            display: inline-block;
            color: white;
            letter-spacing: -0.5px;
        }
        
        .footer-logo span {
            color: var(--accent-color);
        }
        
        .footer-about p {
            opacity: 0.7;
            margin-bottom: 25px;
        }
        
        .footer-links h5 {
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: white;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.7;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            opacity: 1;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border-radius: 50%;
            text-align: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--accent-color);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(10, 26, 53, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-dark);
            color: var(--text-light);
            transform: translateY(-5px);
        }
        
        /* Shapes and Decorations */
        .shape-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        
        .shape-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }
        
        .shape-divider .shape-fill {
            fill: var(--secondary-color);
        }
        
        .bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: radial-gradient(var(--primary-dark) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 3.2rem;
            }
            
            .section-padding {
                padding: 100px 0;
            }
        }
        
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .about-img-container {
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2.4rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 70px 0;
            }
            
            .filter-btn {
                margin: 0 10px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .btn-primary-custom {
                padding: 12px 25px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .footer-links {
                margin-bottom: 30px;
            }
        }

        /* Custom Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Process Steps */
        .process-steps {
            position: relative;
            padding-top: 50px;
        }
        
        .process-step {
            position: relative;
            padding-left: 90px;
            margin-bottom: 50px;
        }
        
        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .step-connector {
            position: absolute;
            left: 30px;
            top: 60px;
            bottom: -50px;
            width: 2px;
            background-color: var(--accent-color);
            opacity: 0.3;
        }
        
        .process-step:last-child .step-connector {
            display: none;
        }

        .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* ou qualquer outra cor */
  opacity: 0.5; /* controla o nível de opacidade */
}

.is-invalid {
    border-color: #dc3545 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-control.is-invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

/* Prepara os itens de estatísticas para a animação (começam invisíveis) */
.stats-section .stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* Quando a seção se torna visível, aplica a animação nos itens */
.stats-section.is-visible .stat-item {
  opacity: 1;
  transform: translateY(0);
}

/* Adiciona um pequeno atraso para cada item, criando o efeito escalonado */
.stats-section.is-visible .stat-item:nth-child(2) {
  transition-delay: 0.1s;
}
.stats-section.is-visible .stat-item:nth-child(3) {
  transition-delay: 0.2s;
}
.stats-section.is-visible .stat-item:nth-child(4) {
  transition-delay: 0.3s;
}

