 /* --- VARIÁVEIS & RESET --- */
 :root {
     /* Paleta Comfort: Azul Vibrante e Turquesa para destaque */
     --primary: #0056b3;
     /* Azul Royal */
     --secondary: #00c4cc;
     /* Turquesa Vibrante */
     --accent: #ff6b6b;
     /* Coral para Call-to-Actions (Chamativo) */

     --dark: #1a1a1a;
     --gray: #f0f2f5;
     --white: #ffffff;
     --text-color: #444;

     --gradient-hero: linear-gradient(135deg, #0056b3 0%, #00c4cc 100%);
     --shadow: 0 15px 30px rgba(0, 86, 179, 0.15);

     --border-radius: 12px;
     --transition: all 0.3s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     outline: none;
     text-decoration: none;
     list-style: none;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Open Sans', sans-serif;
     background-color: var(--white);
     color: var(--text-color);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: 'Poppins', sans-serif;
     color: var(--dark);
     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;
 }

 .btn {
     display: inline-block;
     padding: 15px 35px;
     border-radius: 50px;
     font-family: 'Poppins', sans-serif;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: var(--transition);
     cursor: pointer;
     border: none;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .btn-primary {
     background-color: var(--accent);
     color: var(--white);
 }

 .btn-primary:hover {
     background-color: #ff5252;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--white);
     color: var(--white);
 }

 .btn-outline:hover {
     background: var(--white);
     color: var(--primary);
 }

 /* --- HEADER --- */
 header {
     background: var(--white);
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     height: 80px;
     display: flex;
     align-items: center;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .logo {
     font-family: 'Poppins', sans-serif;
     font-size: 1.6rem;
     font-weight: 800;
     color: var(--primary);
     letter-spacing: -1px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .logo span {
     color: var(--secondary);
 }

 .logo i {
     font-size: 1.4rem;
     color: var(--secondary);
 }

 .nav-menu {
     display: flex;
     gap: 30px;
     align-items: center;
 }

 .nav-link {
     color: var(--dark);
     font-weight: 600;
     font-size: 0.95rem;
     transition: var(--transition);
     position: relative;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 3px;
     bottom: -5px;
     left: 0;
     background: var(--secondary);
     border-radius: 2px;
     transition: var(--transition);
 }

 .nav-link:hover {
     color: var(--primary);
 }

 .nav-link:hover::after {
     width: 100%;
 }

 .hamburger {
     display: none;
     cursor: pointer;
     font-size: 1.8rem;
     color: var(--primary);
 }

 /* --- HERO SECTION --- */
 .hero {
     position: relative;
     min-height: 100vh;
     background: var(--gradient-hero);
     display: flex;
     align-items: center;
     padding-top: 80px;
     overflow: hidden;
     color: var(--white);
 }

 /* Forma decorativa no fundo */
 .hero::before {
     content: '';
     position: absolute;
     bottom: -50px;
     left: 0;
     width: 100%;
     height: 150px;
     background: var(--white);
     transform: skewY(-3deg);
     transform-origin: bottom left;
 }

 .hero-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .hero-text h1 {
     font-size: 3.5rem;
     line-height: 1.2;
     margin-bottom: 20px;
     color: var(--white);
 }

 .hero-text h1 span {
     color: #ffeaa7;
     /* Amarelo suave para destaque no azul */
 }

 .hero-text p {
     font-size: 1.2rem;
     margin-bottom: 35px;
     opacity: 0.9;
     max-width: 500px;
 }

 .hero-img {
     position: relative;
     animation: float 6s ease-in-out infinite;
 }

 .hero-img img {
     width: 100%;
     border-radius: var(--border-radius);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
     border: 5px solid rgba(255, 255, 255, 0.2);
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 /* --- SERVIÇOS (Grid Estiloso) --- */
 .services {
     background-color: var(--white);
     margin-bottom: 50px;
     /* Espaço extra por causa do skew do hero */
 }

 .section-header h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: var(--primary);
 }

 .section-header .line {
     width: 80px;
     height: 5px;
     background: var(--secondary);
     margin: 0 auto 50px;
     border-radius: 10px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: var(--white);
     padding: 40px 30px;
     border-radius: var(--border-radius);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
     border: 1px solid #eee;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background: var(--gradient-hero);
     transition: var(--transition);
     z-index: -1;
     opacity: 0.1;
 }

 .service-card:hover {
     transform: translateY(-10px);
     border-color: transparent;
 }

 .service-card:hover::before {
     width: 100%;
 }

 .service-icon {
     font-size: 3rem;
     color: var(--secondary);
     margin-bottom: 25px;
     transition: var(--transition);
 }

 .service-card:hover .service-icon {
     transform: scale(1.1);
 }

 .service-card h3 {
     margin-bottom: 15px;
     font-size: 1.3rem;
 }

 /* --- SOBRE & DIFERENCIAIS --- */
 .about {
     background-color: var(--gray);
     position: relative;
     overflow: hidden;
 }

 /* Forma decorativa superior */
 .about::before {
     content: '';
     position: absolute;
     top: -50px;
     left: 0;
     width: 100%;
     height: 100px;
     background: var(--white);
     transform: skewY(-2deg);
     z-index: 1;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 .about-content h2 {
     font-size: 2.2rem;
     margin-bottom: 20px;
     color: var(--primary);
 }

 .feature-list {
     margin-top: 30px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
     font-weight: 600;
     color: var(--text-color);
 }

 .feature-item i {
     color: var(--accent);
     margin-right: 15px;
     background: rgba(255, 107, 107, 0.1);
     padding: 10px;
     border-radius: 50%;
 }

 .about-img img {
     width: 100%;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
 }

 /* --- CONTATO & LOCALIZAÇÃO --- */
 .contact {
     background: var(--white);
     position: relative;
     z-index: 2;
 }

 /* Forma decorativa superior */
 .contact::before {
     content: '';
     position: absolute;
     top: -50px;
     left: 0;
     width: 100%;
     height: 100px;
     background: var(--gray);
     transform: skewY(2deg);
 }

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 0;
     background: var(--white);
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
     overflow: hidden;
     margin-top: 30px;
 }

 .contact-info {
     background: var(--gradient-hero);
     padding: 50px;
     color: var(--white);
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .contact-info h3 {
     color: var(--white);
     margin-bottom: 30px;
     font-size: 1.8rem;
 }

 .info-box {
     margin-bottom: 25px;
 }

 .info-box span {
     display: block;
     font-size: 0.8rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     opacity: 0.8;
     margin-bottom: 5px;
 }

 .info-box p {
     font-size: 1.1rem;
     font-weight: 600;
 }

 .info-box i {
     margin-right: 10px;
 }

 .map-wrapper {
     height: 100%;
     min-height: 400px;
 }

 .map-wrapper iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 /* --- FOOTER --- */
 footer {
     background: var(--dark);
     color: #aaa;
     padding: 60px 0 20px;
     text-align: center;
 }

 .footer-logo {
     font-family: 'Poppins', sans-serif;
     font-size: 2rem;
     font-weight: 800;
     color: var(--white);
     margin-bottom: 20px;
     display: inline-block;
 }

 .footer-logo span {
     color: var(--secondary);
 }

 .footer-cnpj {
     margin-top: 10px;
     font-size: 0.9rem;
     color: #666;
     margin-bottom: 30px;
 }

 .social-links {
     margin-bottom: 30px;
 }

 .social-links a {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     color: var(--white);
     border-radius: 50%;
     margin: 0 5px;
     transition: var(--transition);
 }

 .social-links a:hover {
     background: var(--secondary);
     transform: translateY(-3px);
 }

 .copyright {
     border-top: 1px solid #333;
     padding-top: 20px;
     font-size: 0.85rem;
 }

 /* --- WHATSAPP FLUTUANTE --- */
 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background-color: #25D366;
     color: #FFF;
     width: 65px;
     height: 65px;
     border-radius: 50%;
     text-align: center;
     font-size: 35px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     z-index: 1000;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: var(--transition);
     animation: pulse 2s infinite;
 }

 .whatsapp-float:hover {
     background-color: #20b858;
     transform: scale(1.1);
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
 }

 /* --- RESPONSIVIDADE --- */
 @media (max-width: 992px) {
     .hero-text h1 {
         font-size: 2.8rem;
     }

     .about-grid {
         grid-template-columns: 1fr;
     }

     .contact-container {
         grid-template-columns: 1fr;
     }

     .map-wrapper {
         height: 350px;
     }
 }

 @media (max-width: 768px) {
     .nav-menu {
         position: absolute;
         top: 80px;
         left: -100%;
         width: 100%;
         background: var(--white);
         flex-direction: column;
         padding: 40px 0;
         box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
         transition: 0.4s ease;
     }

     .nav-menu.active {
         left: 0;
     }

     .hamburger {
         display: block;
     }

     .hero {
         padding-top: 120px;
         padding-bottom: 100px;
         text-align: center;
     }

     .hero-container {
         grid-template-columns: 1fr;
     }

     .hero-text p {
         margin: 0 auto 30px;
     }

     .section-padding {
         padding: 60px 0;
     }
 }