 :root {
     --primary: #FFA500;
     --dark: #333333;
     --secondary-dark: #444444;
     --light: #f8f8f8;
     --white: #ffffff;
     --transition: all 0.3s ease;
     --header-height: 80px;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {

     color: var(--dark);
     line-height: 1.6;
     overflow-x: hidden;
     background-image: url(images/Fundo.jpg);
 }

 header {
     background-color: var(--white);
     padding: 1rem 0;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 100;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 65px;
     max-width: 100%;
 }

 #logo-header,
 #logo-footer {
     object-fit: contain;
 }

 .nav-menu {
     display: flex;
     list-style: none;
 }

 .nav-item {
     margin-left: 2rem;
     position: relative;
 }

 .dropdown-toggle {
     position: relative;
     padding-right: 15px;
 }

 .dropdown-toggle::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     border-left: 5px solid transparent;
     border-right: 5px solid transparent;
     border-top: 5px solid var(--dark);
     transition: var(--transition);
 }

 .dropdown-toggle:hover::after {
     border-top-color: var(--primary);
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: -20px;
     background-color: var(--white);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     border-radius: 5px;
     padding: 1rem 0;
     min-width: 180px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
     z-index: 100;
 }

 .dropdown-menu li {
     list-style: none;
 }

 .dropdown-item {
     display: block;
     padding: 0.5rem 1.5rem;
     color: var(--dark);
     text-decoration: none;
     transition: all 0.3s ease;
     font-weight: 400;
 }

 .dropdown-item:hover {
     background-color: #f1f1f1;
     color: var(--primary);
     padding-left: 1.8rem;
 }

 .nav-link {
     text-decoration: none;
     color: var(--dark);
     font-weight: 500;
     transition: var(--transition);
     position: relative;
 }

 .nav-link:hover {
     color: var(--primary);
 }

 .nav-link.active-link {
     color: var(--primary);
 }

 .nav-link.active-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background-color: var(--primary);
 }

 html {
     scroll-behavior: smooth;
 }

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-image: url(images/foto.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 100vh;
    padding-top: 120px; /* FORÇA o espaçamento abaixo do header */
    box-sizing: border-box;
}

.hero-content img {
    max-width: 80%;
    height: auto;
    max-height: clamp(100px, 20vw, 200px); /* ADAPTA AO TAMANHO DA TELA */
}


 .hero-content h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
 }

 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 .btn {
     display: inline-block;
     padding: 0.8rem 2rem;
     background-color: var(--primary);
     color: white;
     text-decoration: none;
     border-radius: 5px;
     font-weight: 500;
     transition: var(--transition);
 }

 .btn:hover {
     background-color: #e69500;
     transform: translateY(-3px);
 }

 .section {
     padding: 2rem 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
     font-size: 2.5rem;
     color: var(--dark);
     position: relative;
     padding-bottom: 1rem;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background-color: var(--primary);
 }

 .about-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .about-text {
     flex: 1;
     min-width: 300px;
 }

 .about-text h3 {
     margin-bottom: 1rem;
     font-size: 1.8rem;
     color: var(--primary);
 }

 .about-text p {
     margin-bottom: 1rem;
 }

 .about-image {
     flex: 1;
     min-width: 300px;
     text-align: center;
 }

 .about-image img {
     max-width: 100%;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .mission-vision-values {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 2rem;
     margin-top: 2rem;
 }

 .mission-box,
 .vision-box,
 .values-box {
     flex: 1;
     min-width: 300px;
     padding: 2rem;
     background-color: var(--white);
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: var(--transition);
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .mission-box:hover,
 .vision-box:hover,
 .values-box:hover {
     transform: translateY(-10px);
 }

 .icon-container {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background-color: var(--primary);
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 1.5rem;
 }

 .icon {
     color: white;
     font-size: 2rem;
 }

 .box-title {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--primary);
 }

 .business-model {
     background-color: var(--dark);
     color: var(--white);
     padding: 5rem 0;
 }

 .business-model .section-title {
     color: var(--white);
 }

 .model-container {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 2rem;
     margin-top: 2rem;
 }

 .model-box {
     flex: 1;
     min-width: 250px;
     max-width: 300px;
     background-color: var(--secondary-dark);
     padding: 2rem;
     border-radius: 10px;
     text-align: center;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
 }

 .model-box::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 5px;
     height: 100%;
     background-color: var(--primary);
     transition: var(--transition);
 }

 .model-box:hover::before {
     width: 100%;
     opacity: 0.1;
 }

 .model-box h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--primary);
 }

 .model-box p {
     color: var(--light);
 }

 .structure {
     background-color: var(--light);
 }

 .structure-content {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .structure-image {
     flex: 1;
     min-width: 300px;
     text-align: center;
 }

 .structure-image img {
     max-width: 100%;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .offices-container {
     flex: 1;
     min-width: 300px;
 }

 .office-box {
     background-color: var(--white);
     padding: 1.5rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     margin-bottom: 1.5rem;
     transition: var(--transition);
 }

 .office-box:hover {
     transform: translateY(-5px);
 }

 .office-box h3 {
     color: var(--primary);
     margin-bottom: 0.5rem;
     font-size: 1.3rem;
 }

 .office-box p {
     margin-bottom: 0;
 }

 .partners {}

 .partners-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     gap: 2rem;
     margin-top: 2rem;
 }

 .partner-logo {
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 1rem;
     border-radius: 5px;
     transition: var(--transition);
 }

 .partner-logo:hover {
     transform: scale(1.05);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .partner-logo img {
     max-width: 100%;
     max-height: 80px;
     filter: grayscale(100%);
     transition: var(--transition);
 }

 .partner-logo:hover img {
     filter: grayscale(0%);
 }

 .digital-experience {
     background-color: var(--light);
 }

 .experience-container {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .experience-image {
     flex: 1;
     min-width: 300px;
     text-align: center;
 }

 .experience-image img {
     max-width: 100%;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .experience-content {
     flex: 1;
     min-width: 300px;
 }

 .experience-box {
     background-color: var(--white);
     padding: 1.5rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     margin-bottom: 1.5rem;
     transition: var(--transition);
 }

 .experience-box:hover {
     transform: translateY(-5px);
     border-left: 5px solid var(--primary);
 }

 .experience-box h3 {
     color: var(--primary);
     margin-bottom: 0.5rem;
     font-size: 1.3rem;
 }

 .contact {
     /*background-color: var(--white);*/
 }

 .contact-form {
     max-width: 600px;
     margin: 0 auto;
     background-color: var(--light);
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-control {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 1rem;
 }

 textarea.form-control {
     height: 150px;
     resize: vertical;
 }

 .submit-btn {
     background-color: var(--primary);
     color: white;
     border: none;
     padding: 0.8rem 2rem;
     border-radius: 5px;
     cursor: pointer;
     transition: var(--transition);
     font-size: 1rem;
     width: 100%;
 }

 .submit-btn:hover {
     background-color: #e69500;
 }

 footer {
     background-color: var(--dark);
     color: white;
     padding: 3rem 0 1rem;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .footer-logo img {
     height: 60px;
     margin-bottom: 1rem;
 }

 .footer-logo p {
     max-width: 300px;
 }

 .footer-links h3,
 .footer-contact h3 {
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.5rem;
 }

 .footer-links a {
     color: var(--light);
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: var(--primary);
 }

 .footer-contact p {
     margin-bottom: 0.5rem;
 }

 .social-icons {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     background-color: var(--secondary-dark);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--white);
     text-decoration: none;
     transition: var(--transition);
 }

 .social-icon:hover {
     background-color: var(--primary);
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid var(--secondary-dark);
     padding-top: 1rem;
     text-align: center;
 }

 .presentation-slides {
     background-color: #333;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     margin-top: 2rem;
     position: relative;
     overflow: hidden;
     opacity: 0.5;
 }

 .slide {
     display: none;
     text-align: center;
     padding: 2rem;
     animation: fadeEffect 1.5s;
 }

 .slide.active {
     display: block;
 }

 @keyframes fadeEffect {
     from {
         opacity: 0.4
     }

     to {
         opacity: 1
     }
 }

 .slide-title {
     font-size: 2rem;
     color: var(--primary);
     margin-bottom: 1.5rem;
 }

 .slide-content {
     margin-bottom: 2rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 .slide-img {
     max-width: 100%;
     height: auto;
     border-radius: 10px;
     max-height: 300px;
     object-fit: contain;
 }

 .slide-controls {
     position: absolute;
     bottom: 1rem;
     left: 0;
     right: 0;
     display: flex;
     justify-content: center;
     gap: 1rem;
 }

 .slide-dot {
     width: 12px;
     height: 12px;
     background-color: #ccc;
     border-radius: 50%;
     cursor: pointer;
     transition: var(--transition);
 }

 .slide-dot.active {
     background-color: var(--primary);
 }

 .slide-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     background-color: rgba(0, 0, 0, 0.3);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: white;
     cursor: pointer;
     transition: var(--transition);
     z-index: 10;
 }

 .slide-arrow:hover {
     background-color: var(--primary);
 }

 .slide-arrow-prev {
     left: 1rem;
 }

 .slide-arrow-next {
     right: 1rem;
 }

 .benefits-container {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 2rem;
     margin-top: 2rem;
 }

 .benefit-box {
     flex: 1;
     min-width: 300px;
     background-color: var(--white);
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: var(--transition);
 }

 .benefit-box:hover {
     transform: translateY(-10px);
 }

 .benefit-icon {
     width: 60px;
     height: 60px;
     background-color: var(--primary);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto 1.5rem;
     color: white;
     font-size: 1.5rem;
 }

 .benefit-title {
     font-size: 1.3rem;
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .team-section {
     background-color: var(--light);
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 2rem;
 }

 .team-member {
     background-color: var(--white);
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: var(--transition);
 }

 .team-member:hover {
     transform: translateY(-10px);
 }

 .member-photo {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .member-info {
     padding: 1.5rem;
     text-align: center;
 }

 .member-name {
     font-size: 1.3rem;
     color: var(--primary);
     margin-bottom: 0.5rem;
 }

 .member-title {
     color: var(--secondary-dark);
     margin-bottom: 1rem;
 }

 .mobile-menu-toggle {
     display: none;
     cursor: pointer;
     background: none;
     border: none;
     font-size: 24px;
     color: #333;
 }

 @media (max-width: 768px) {
     .container {
         padding: 0 1rem;
     }

     .nav-menu {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background-color: var(--white);
         flex-direction: column;
         padding: 1rem 0;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     }

     .nav-menu.active {
         display: flex;
     }

     .nav-item {
         margin: 0.5rem 1rem;
     }

     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         padding: 0.5rem 0 0.5rem 1rem;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease;
     }

     .dropdown.active .dropdown-menu {
         max-height: 300px;
     }

     .dropdown-toggle::after {
         right: 10px;
     }

     .menu-toggle {
         display: block;
         cursor: pointer;
         font-size: 1.5rem;
     }

     .hero-content h1 {
         font-size: 2.5rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .about-image,
     .structure-image,
     .experience-image {
         margin-top: 2rem;
     }

     .slide-title {
         font-size: 1.8rem;
     }

     .slide-arrow {
         width: 30px;
         height: 30px;
     }
 }



 /* Dispositivos muito pequenos */
 @media screen and (max-width: 480px) {
     .member-photo {
         height: 300px;
     }

     .hero {
         height: 160vh;
     }


     .divMapa {
         width: 100%;
     }


     .mobile-menu-toggle {
         display: block;
     }
 }