 /* --- VARIÁVEIS E CONFIGURAÇÕES GERAIS --- */
 :root {
     /* Paleta: Azul Premium, Prata, Branco */
     --primary-blue: #004aad;
     /* Azul Vibrante */
     --dark-blue: #002a60;
     /* Azul Escuro Profundo */
     --silver: #e0e0e0;
     /* Prata para detalhes */
     --accent: #00c2cb;
     /* Ciano para destaque sutil */
     --bg-light: #f4f8fb;
     /* Fundo quase branco azulado */
     --white: #ffffff;
     --text-dark: #2c3e50;
     --text-gray: #666666;

     --shadow: 0 15px 35px rgba(0, 74, 173, 0.1);
     --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     --radius: 8px;
     --gradient: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     outline: none;
     text-decoration: none;
     list-style: none;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Lato', sans-serif;
     background-color: var(--white);
     color: var(--text-dark);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: 'Montserrat', sans-serif;
     color: var(--dark-blue);
     font-weight: 700;
 }

 /* --- UTILITÁRIOS --- */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .section-padding {
     padding: 90px 0;
 }

 .text-center {
     text-align: center;
 }

 /* Títulos de Seção */
 .section-header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
 }

 .section-header h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .section-header h2 span {
     color: var(--primary-blue);
 }

 .section-header::after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background: var(--primary-blue);
     margin: 20px auto 0;
     border-radius: 2px;
 }

 .section-header p {
     color: var(--text-gray);
     font-size: 1.1rem;
     max-width: 600px;
     margin: 15px auto 0;
 }

 /* Botões */
 .btn {
     display: inline-block;
     padding: 15px 40px;
     background: var(--gradient);
     color: var(--white);
     font-weight: 700;
     border-radius: 50px;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 1px;
 }

 .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0, 74, 173, 0.4);
     filter: brightness(1.1);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--white);
     color: var(--white);
     box-shadow: none;
 }

 .btn-outline:hover {
     background: var(--white);
     color: var(--primary-blue);
 }

 /* --- HEADER --- */
 header {
     background: var(--white);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     height: 90px;
     display: flex;
     align-items: center;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .logo {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--dark-blue);
     display: flex;
     align-items: center;
     gap: 10px;
     text-transform: uppercase;
 }

 .logo i {
     color: var(--primary-blue);
     font-size: 1.8rem;
 }

 .logo span {
     color: var(--primary-blue);
     font-weight: 400;
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     color: var(--text-dark);
     font-weight: 600;
     font-size: 0.9rem;
     text-transform: uppercase;
     transition: color 0.3s;
     position: relative;
 }

 .nav-links a:hover {
     color: var(--primary-blue);
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: var(--primary-blue);
     transition: width 0.3s;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .hamburger {
     display: none;
     cursor: pointer;
     font-size: 1.5rem;
     color: var(--primary-blue);
 }

 /* --- HERO SECTION --- */
 .hero {
     height: 100vh;
     background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('https://images.unsplash.com/photo-1609840114035-1c29046a8028?q=80&w=2070&auto=format&fit=crop');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     display: flex;
     align-items: center;
     position: relative;
     padding-top: 90px;
 }

 .hero-shape {
     position: absolute;
     top: 0;
     right: 0;
     width: 50%;
     height: 100%;
     background: var(--primary-blue);
     clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
     opacity: 0.9;
     z-index: 1;
 }

 .hero-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .hero-content {
     padding-right: 20px;
     animation: slideInLeft 1s ease-out;
 }

 .hero h1 {
     font-size: 3.8rem;
     line-height: 1.1;
     margin-bottom: 25px;
     color: var(--dark-blue);
 }

 .hero h1 span {
     color: var(--primary-blue);
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 35px;
     color: var(--text-gray);
     font-weight: 300;
 }

 .hero-img {
     position: relative;
     animation: slideInRight 1s ease-out;
     display: flex;
     justify-content: flex-end;
 }

 .hero-img img {
     width: 90%;
     border-radius: 20px;
     box-shadow: -30px 30px 0 rgba(255, 255, 255, 0.2);
     border: 5px solid var(--white);
 }

 /* --- INFO STRIP --- */
 .info-strip {
     background: var(--white);
     margin-top: -60px;
     position: relative;
     z-index: 10;
     box-shadow: var(--shadow);
     border-radius: var(--radius);
     padding: 40px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
 }

 .info-box {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .info-icon {
     width: 50px;
     height: 50px;
     background: var(--bg-light);
     color: var(--primary-blue);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     transition: all 0.3s;
 }

 .info-box:hover .info-icon {
     background: var(--primary-blue);
     color: var(--white);
 }

 .info-text h4 {
     font-size: 1.1rem;
     margin-bottom: 5px;
     color: var(--dark-blue);
 }

 .info-text p {
     margin: 0;
     font-size: 0.9rem;
     color: var(--text-gray);
 }

 /* --- SERVIÇOS --- */
 .services {
     background-color: var(--bg-light);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: var(--white);
     padding: 40px 30px;
     border-radius: var(--radius);
     box-shadow: var(--card-shadow);
     transition: all 0.4s ease;
     text-align: center;
     position: relative;
     overflow: hidden;
     border-bottom: 3px solid transparent;
 }

 .service-card:hover {
     transform: translateY(-10px);
     border-bottom-color: var(--primary-blue);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .service-icon {
     font-size: 3rem;
     color: var(--primary-blue);
     margin-bottom: 25px;
     transition: transform 0.3s;
 }

 .service-card:hover .service-icon {
     transform: scale(1.1);
 }

 .service-card h3 {
     font-size: 1.3rem;
     margin-bottom: 15px;
 }

 .service-card p {
     font-size: 0.95rem;
     color: var(--text-gray);
 }

 /* --- SOBRE (Institucional) --- */
 .about {
     background: var(--white);
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 70px;
     align-items: center;
 }

 .about-img {
     position: relative;
 }

 .about-img img {
     width: 100%;
     border-radius: var(--radius);
     box-shadow: var(--shadow);
 }

 /* Efeito de quadrado decorativo */
 .about-img::before {
     content: '';
     position: absolute;
     top: -20px;
     left: -20px;
     width: 100%;
     height: 100%;
     border: 3px solid var(--primary-blue);
     border-radius: var(--radius);
     z-index: -1;
 }

 .about-content h2 {
     font-size: 2.2rem;
     margin-bottom: 25px;
 }

 .about-content p {
     margin-bottom: 20px;
     font-size: 1.05rem;
     color: var(--text-gray);
 }

 .stats-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-top: 30px;
 }

 .stat-item h3 {
     font-size: 2rem;
     color: var(--primary-blue);
     margin-bottom: 5px;
 }

 .stat-item p {
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
 }

 /* --- CONTATO & LOCALIZAÇÃO --- */
 .contact {
     background-color: var(--dark-blue);
     color: var(--white);
     position: relative;
 }

 .contact h2 {
     color: var(--white);
 }

 .contact p {
     color: #cfd8e3;
 }

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 50px;
     align-items: center;
 }

 .contact-info {
     padding: 30px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: var(--radius);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .contact-row {
     display: flex;
     align-items: flex-start;
     margin-bottom: 30px;
 }

 .contact-row i {
     font-size: 1.5rem;
     color: var(--accent);
     margin-right: 20px;
     margin-top: 5px;
 }

 .contact-row h4 {
     font-size: 1.1rem;
     color: var(--white);
     margin-bottom: 5px;
 }

 .contact-row p {
     font-size: 0.95rem;
     margin: 0;
 }

 .map-box {
     height: 450px;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     border: 5px solid rgba(255, 255, 255, 0.1);
 }

 .map-box iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }

 /* --- FOOTER --- */
 footer {
     background: #001f4d;
     color: #8da2b5;
     padding: 50px 0 20px;
     font-size: 0.9rem;
     text-align: center;
 }

 .footer-logo {
     font-size: 1.5rem;
     color: var(--white);
     font-weight: 700;
     margin-bottom: 20px;
     display: block;
     font-family: 'Montserrat', sans-serif;
     text-transform: uppercase;
 }

 .footer-logo span {
     color: var(--primary-blue);
 }

 .footer-cnpj {
     font-family: monospace;
     background: rgba(255, 255, 255, 0.05);
     padding: 5px 15px;
     border-radius: 4px;
     display: inline-block;
     margin-bottom: 30px;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-bottom: 30px;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s;
 }

 .social-links a:hover {
     background: var(--primary-blue);
     transform: translateY(-3px);
 }

 .copyright {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     padding-top: 20px;
 }

 /* --- BOTÃO WHATSAPP --- */
 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: #25d366;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 30px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     z-index: 2000;
     transition: transform 0.3s;
 }

 .whatsapp-float:hover {
     transform: scale(1.1);
 }

 /* --- RESPONSIVIDADE --- */
 @media (max-width: 992px) {
     .hero-shape {
         width: 100%;
         height: 40%;
         top: auto;
         bottom: 0;
         clip-path: none;
         opacity: 0.1;
     }

     .hero-container {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero-content {
         padding-right: 0;
         margin-bottom: 50px;
     }

     .hero-img {
         display: none;
     }

     .info-strip {
         grid-template-columns: 1fr;
     }

     .about-grid {
         grid-template-columns: 1fr;
     }

     .contact-container {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .navbar .nav-links {
         position: absolute;
         top: 90px;
         left: 0;
         width: 100%;
         background: var(--white);
         flex-direction: column;
         align-items: center;
         padding: 30px 0;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
         transform: translateY(-150%);
         transition: transform 0.4s ease;
     }

     .navbar .nav-links.active {
         transform: translateY(0);
     }

     .hamburger {
         display: block;
     }

     .hero h1 {
         font-size: 2.5rem;
     }
 }

 /* Animações */
 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.8s ease;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }