:root {
            --primary-dark: #00A9D8;
            --primary-light: #00A9D8;
            --accent-gold: #FFC107;
            --accent-green: #046307;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --bg-white: #FFFFFF;
            --bg-offwhite: #F7F9FA;
            --border-light: #E0E0E0;
            --shadow: rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-white);
            color: var(--text-dark);
            overflow-x: hidden;
            position: relative;
        }

        /* Estilo para redução de movimento */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }

        /* Header Modernizado */
        header {
            position: fixed;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 70px;
            padding: 1.2rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.85);
            transition: all 0.4s ease;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            top: 10px;
            padding: 1rem 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        a{
            text-decoration: none;
            color: inherit;
        }

        .logo {
            display: flex;
            align-items: center;
        }

       .logo img {
            width: 90px;
            height: 60px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav ul li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        nav ul li a:hover {
            color: var(--primary-light);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .contact-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.8rem;
            background: var(--primary-dark);
            color: var(--text-light);
            font-weight: 500;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(0, 91, 154, 0.2);
        }

        .contact-button:hover {
            background: #004a80;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 91, 154, 0.3);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary-dark);
        }

        /* Seção Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg-offwhite) 0%, var(--bg-white) 100%);
            padding: 0 5%;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 900px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--primary-dark);
        }

        .hero h1 span {
            color: var(--primary-light);
            position: relative;
            display: inline-block;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text-dark);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-dark);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary-light);
            transform: translateY(-5px);
        }

        .social-icon img{
           filter: brightness(0) invert(1);
           height: 30px;
           width: 45px; 
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary-dark);
            color: var(--text-light);
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(0, 91, 154, 0.2);
        }

        .cta-button:hover {
            background: #004a80;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(0, 91, 154, 0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* Seções Gerais */
        section {
            padding: 8rem 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-dark);
            max-width: 700px;
            margin: 1.5rem auto 0;
        }

        /* Seção Sobre */
        .about {
            background-color: var(--bg-offwhite);
            
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 5rem;
            
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-weight: 600;
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-illustration {
            flex: 1;
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .timeline {
            margin-top: 1rem;
        }

        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 1rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-light);
            border: 3px solid var(--primary-dark);
        }

        .timeline-item h4 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 0.3rem;
        }

        .timeline-item .date {
            display: inline-block;
            background: var(--primary-light);
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .timeline-item p {
            color: var(--text-dark);
        }

        /* Seção Serviços */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: var(--bg-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            height: 350px;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 91, 154, 0.15);
        }

        .service-animation {
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
        }

        .service-content {
            padding: 2rem;
            text-align: center;
        }

        .service-content h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-content p {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-link {
            display: inline-block;
            color: var(--primary-light);
            text-decoration: none;
            font-weight: 600;
            position: relative;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-light);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .service-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Modal de Serviços */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: white;
            width: 90%;
            max-width: 700px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transform: translateY(50px);
            transition: transform 0.5s ease;
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .modal-header {
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
            padding: 1.5rem;
            color: white;
            position: relative;
        }

        .modal-header h3 {
            font-size: 1.8rem;
        }

        .close-modal {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2.5rem;
            display: flex;
            gap: 2rem;
        }

        .modal-animation {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }

        .modal-text {
            flex: 2;
        }

        .modal-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .modal-features {
            margin-top: 1.5rem;
        }

        .modal-features li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .modal-features i {
            color: var(--primary-light);
            margin-top: 0.2rem;
        }

        .modal-footer {
            padding: 1.5rem 2.5rem;
            background: var(--bg-offwhite);
            text-align: center;
        }

        /* Seção Projetos */
        .projects {
            background-color: var(--bg-offwhite);
        }

        .projects-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1.5rem;
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--primary-dark);
            color: white;
            border-color: var(--primary-dark);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 5px;
        }

        .project-card {
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            height: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .project-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.8s ease;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 89, 154, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.5s ease;
            text-align: center;
            color: white;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card:hover .project-image {
            transform: scale(1.1);
        }

        .project-overlay h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            transform: translateY(20px);
            transition: transform 0.5s ease;
        }

        .project-overlay p {
            margin-bottom: 1.5rem;
            transform: translateY(30px);
            transition: transform 0.5s ease 0.1s;
        }

        .project-card:hover .project-overlay h3,
        .project-card:hover .project-overlay p {
            transform: translateY(0);
        }

        .project-links {
            display: flex;
            gap: 1rem;
            transform: translateY(40px);
            transition: transform 0.5s ease 0.2s;
        }

        .project-card:hover .project-links {
            transform: translateY(0);
        }

        .project-link {
            color: white;
            text-decoration: none;
            border: 2px solid white;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .project-share {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .project-link:hover, .project-share:hover {
            background: white;
            color: var(--primary-dark);
        }

        /* Seção Contato */
        .contact-container {
            display: flex;
            gap: 3rem;
        }

        .contact-form {
            flex: 1;
            background: white;
            height: 700px;
            padding: 1rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .contact-map {
            flex: 1;
            height: 700px;
            margin-top: -11px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 91, 154, 0.15);
        }

        .contact-card i {
            font-size: 2.5rem;
            color: var(--primary-light);
            margin-bottom: 1.5rem;
        }

        .contact-card h4 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .contact-card p, .contact-card a {
            color: var(--text-dark);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .contact-card a:hover {
            color: var(--primary-light);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 040;
            color: var(--primary-dark);
        }

        .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-light);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 169, 216, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary-dark);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .submit-btn:hover {
            background: #004a80;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 91, 154, 0.2);
        }

        /* Footer */
        footer {
            background: linear-gradient(to bottom, var(--bg-white), var(--bg-offwhite));
            padding: 5rem 5% 2rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-light);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        /* Menu Mobile */
        .mobile-menu {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            background: white;
            z-index: 1001;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
            transition: bottom 0.4s ease;
            padding: 1.5rem;
        }

        .mobile-menu.active {
            bottom: 0;
        }

        .mobile-menu ul {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            list-style: none;
        }

        .mobile-menu li {
            text-align: center;
        }

        .mobile-menu a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.9rem;
            padding: 0.8rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .mobile-menu a i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
        }

        .mobile-menu a:hover {
            background: var(--bg-offwhite);
        }

        .mobile-menu a.active {
            background: var(--primary-dark);
            color: white;
        }

        .mobile-menu a.active i {
            color: white;
        }

        .close-mobile-menu {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 1.5rem;
            color: var(--primary-dark);
            cursor: pointer;
        }

        /* Animações */
        .animated-element {
            opacity: 0;
            transform: translateY(30px);
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .about-content, .contact-container {
                flex-direction: column;
            }
            
            .about-illustration {
                margin-top: 3rem;
                height: 400px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            nav ul {
                display: none;
            }
            
            .contact-button {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-body {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            header {
                top: 10px;
                left: 10px;
                right: 10px;
                padding: 1rem 1.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .service-card {
                height: auto;
            }
            
            .mobile-menu ul {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .mobile-menu ul {
                grid-template-columns: repeat(2, 1fr);
            }
        }

 
  .service-animation svg {
    width: 64px;
    height: 64px;
  }
  .service-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1F3251; /* Azul-marinho institucional */
  }
  
  
  
  
  
  

.cookie-banner {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1100px;
  background-color: white;
  color: #1a2a6c;
  padding: 22px 32px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  animation: slideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid #e8f0fe;
}

.cookie-banner p {
  margin: 0;
  padding-right: 30px;
  flex: 1;
  line-height: 1.7;
  font-weight: 500;
}

.cookie-banner p a {
  color: #6CABDD;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-banner p a:hover {
  text-decoration: underline;
  color: #1a2a6c;
}

.cookie-button {
  background: linear-gradient(135deg, #6CABDD, #4A8EC9);
  color: white;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(108, 171, 221, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cookie-button:hover {
  background: linear-gradient(135deg, #5c9bcd, #3a7db9);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(108, 171, 221, 0.5);
}

.cookie-button:active {
  transform: translateY(0);
}

@keyframes slideIn {
  from { transform: translateX(-50%) translateY(100px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Botão de fechar opcional */
.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button:hover {
  color: #6CABDD;
  background: rgba(108, 171, 221, 0.1);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .cookie-banner p {
    padding-right: 0;
    padding-bottom: 20px;
  }
  
  .cookie-button {
    width: 100%;
    justify-content: center;
  }
}