 /* --- CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
 :root {
     /* Paleta: Azul Turquesa Profundo e Laranja Suave (Acolhedor + Moderno) */
     --primary-color: #006d77;
     /* Azul Petróleo */
     --primary-dark: #004d55;
     --accent-color: #e29578;
     /* Terracota Suave/Laranja */
     --accent-light: #ffddd2;
     --text-dark: #2d3436;
     --text-light: #f4f4f4;
     --bg-light: #ffffff;
     --bg-gray: #edf6f9;

     --transition: all 0.4s ease;
     --shadow: 0 10px 40px rgba(0, 109, 119, 0.15);
     --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
 }

 * {
     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;
     color: var(--text-dark);
     background-color: var(--bg-light);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     color: var(--primary-color);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* --- UTILITÁRIOS --- */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .section-padding {
     padding: 100px 0;
 }

 .btn {
     display: inline-block;
     padding: 16px 40px;
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.9rem;
     transition: var(--transition);
     cursor: pointer;
     border-radius: 50px;
     /* Bordas arredondadas para um visual mais amigável */
     border: 2px solid var(--accent-color);
 }

 .btn-primary {
     background-color: var(--accent-color);
     color: #fff;
     border-color: var(--accent-color);
 }

 .btn-primary:hover {
     background-color: transparent;
     color: var(--accent-color);
     transform: translateY(-3px);
 }

 .btn-outline {
     background: transparent;
     color: #fff;
     border-color: #fff;
 }

 .btn-outline:hover {
     background: #fff;
     color: var(--primary-color);
 }

 .section-title {
     text-align: center;
     margin-bottom: 70px;
     position: relative;
 }

 .section-title h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     background: -webkit-linear-gradient(var(--primary-color), var(--accent-color));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .section-title::after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background: var(--accent-color);
     margin: 0 auto;
     border-radius: 2px;
 }

 /* --- HEADER --- */
 header {
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     padding: 15px 0;
     transition: var(--transition);
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.8rem;
     font-weight: 800;
     color: var(--primary-color);
     display: flex;
     align-items: center;
     line-height: 1;
 }

 .logo span {
     color: var(--accent-color);
 }

 .logo i {
     margin-right: 10px;
     font-size: 2rem;
     color: var(--accent-color);
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     color: var(--text-dark);
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
     transition: var(--transition);
     position: relative;
     padding-bottom: 5px;
 }

 .nav-links a::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--accent-color);
     transition: var(--transition);
 }

 .nav-links a:hover {
     color: var(--accent-color);
 }

 .nav-links a:hover::before {
     width: 100%;
 }

 .menu-toggle {
     display: none;
     color: var(--primary-color);
     font-size: 1.8rem;
     cursor: pointer;
 }

 /* --- HERO SECTION --- */
 .hero {
     height: 100vh;
     background: linear-gradient(rgba(0, 109, 119, 0.85), rgba(0, 77, 85, 0.8)), url('https://images.unsplash.com/photo-1588776814546-1ffcf4722e12?q=80&w=2070&auto=format&fit=crop');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--text-light);
     padding-top: 80px;
     position: relative;
 }

 .hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100px;
     background: linear-gradient(to top, var(--bg-light), transparent);
 }

 .hero-content {
     max-width: 900px;
     padding: 0 20px;
     animation: fadeIn 1.5s ease;
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 3.8rem;
     margin-bottom: 20px;
     line-height: 1.1;
     color: #fff;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .hero h1 span {
     color: var(--accent-color);
 }

 .hero p {
     font-size: 1.3rem;
     margin-bottom: 40px;
     font-weight: 300;
     letter-spacing: 0.5px;
     color: #eee;
 }

 /* --- SOBRE NÓS --- */
 .about {
     background-color: var(--bg-light);
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .about-image {
     position: relative;
 }

 .about-image img {
     width: 100%;
     border-radius: 20px;
     display: block;
     box-shadow: 20px 20px 0 var(--accent-light);
 }

 .about-text h3 {
     color: var(--accent-color);
     font-size: 1rem;
     margin-bottom: 10px;
 }

 .about-text h2 {
     font-size: 2.5rem;
     margin-bottom: 25px;
     color: var(--primary-color);
 }

 .about-text p {
     margin-bottom: 20px;
     color: #555;
     text-align: justify;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 40px;
     border-top: 1px solid #eee;
     padding-top: 30px;
 }

 .stat-item h4 {
     font-size: 2rem;
     color: var(--primary-color);
 }

 .stat-item p {
     font-size: 0.8rem;
     text-transform: uppercase;
     font-weight: 700;
     color: #888;
     margin: 0;
 }

 /* --- SERVIÇOS (Cards Claros com Borda) --- */
 .services {
     background-color: var(--bg-gray);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: var(--bg-light);
     padding: 40px;
     border-radius: 20px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     border-bottom: 5px solid transparent;
     text-align: center;
 }

 .service-card:hover {
     transform: translateY(-10px);
     border-bottom: 5px solid var(--accent-color);
 }

 .service-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 80px;
     height: 80px;
     background: var(--bg-gray);
     border-radius: 50%;
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 25px;
     transition: var(--transition);
 }

 .service-card:hover .service-icon {
     background: var(--primary-color);
     color: #fff;
 }

 .service-card h3 {
     color: var(--primary-dark);
     margin-bottom: 15px;
     font-size: 1.4rem;
 }

 .service-card p {
     color: #666;
     font-weight: 400;
 }

 /* --- CONTACT & INFO --- */
 .contact {
     background: var(--bg-light);
     padding-bottom: 0;
 }

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     box-shadow: var(--shadow);
     border-radius: 20px;
     overflow: hidden;
     margin-bottom: -50px;
     /* Sobrepor ao footer levemente */
     position: relative;
     z-index: 10;
     background: #fff;
 }

 .contact-info {
     padding: 60px;
     background: var(--primary-color);
     color: #fff;
 }

 .contact-info h3 {
     color: #fff;
     margin-bottom: 30px;
     border-bottom: 2px solid var(--accent-color);
     display: inline-block;
     padding-bottom: 10px;
 }

 .info-group {
     margin-bottom: 30px;
     display: flex;
     align-items: flex-start;
 }

 .info-group i {
     font-size: 1.5rem;
     color: var(--accent-color);
     margin-right: 20px;
     margin-top: 5px;
 }

 .info-group h4 {
     font-size: 0.8rem;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 5px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .info-group p {
     font-size: 1.1rem;
     font-weight: 600;
     color: #fff;
 }

 .map-area {
     position: relative;
     height: 100%;
     min-height: 400px;
 }

 .map-area iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 /* --- FOOTER --- */
 footer {
     background: #2d3436;
     color: #aaa;
     padding: 100px 0 20px;
     /* Padding top maior por causa do contact-container */
     text-align: center;
 }

 .footer-logo {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.5rem;
     color: #fff;
     margin-bottom: 20px;
     display: inline-block;
     font-weight: 800;
 }

 .footer-logo span {
     color: var(--accent-color);
 }

 .footer-social {
     margin-bottom: 30px;
 }

 .footer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     margin: 0 10px;
     transition: var(--transition);
 }

 .footer-social a:hover {
     background: var(--accent-color);
     transform: translateY(-3px);
 }

 .copyright {
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.8rem;
 }

 /* --- SCROLL ANIMATIONS --- */
 .reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: all 1s ease;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* --- RESPONSIVE --- */
 @media (max-width: 992px) {
     .hero h1 {
         font-size: 2.8rem;
     }

     .about-grid {
         grid-template-columns: 1fr;
     }

     .about-image {
         margin-bottom: 40px;
         order: -1;
     }

     .contact-container {
         grid-template-columns: 1fr;
     }

     .map-area {
         height: 350px;
     }

     .footer {
         padding-top: 60px;
     }
 }

 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }

     .nav-links {
         position: fixed;
         top: 70px;
         right: -100%;
         width: 70%;
         height: 100vh;
         background: #fff;
         flex-direction: column;
         padding: 50px 30px;
         transition: 0.4s ease;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         right: 0;
     }

     .nav-links a {
         color: var(--primary-color);
     }

     .hero {
         padding-top: 100px;
     }

     .section-padding {
         padding: 60px 0;
     }
 }