:root {
  --primary-color: #ff5722;
  --text-color: #1a1a1a;
  --purple-highlight: #e9d5ff;
  --green-highlight: #dcfce7;
  --orange-highlight: #ffe5d9;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding-top: 0;
}

.logo-img {
  height: 39.6px;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.brand-text {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-color);
}

.nav-link {
  font-weight: 500;
  color: var(--text-color) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.login-btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
}

/* Hero Section Styles 
.hero-section {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background-color: #ebeaea;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-align: center;
}
.color1 {
  color: #000000;
  background-color: #9dd3ff;
}

.color1:hover {
  color: #ff5722;
  background-color: #9dd3ff;
}

.color2 {
  color: #000000;
  background-color: #fd9d80;
}

.color2:hover {
  color: #2196f3;
  background-color: #fd9d80;
}

.title-line-1,
.title-line-2 {
  display: block;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
}

.device-mockups {
  position: relative;
  margin-top: 3rem;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}

.mockup-1 {
  max-width: 60%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-15deg);
}

.mockup-2 {
  max-width: 40%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(15deg);
  margin-left: 0;
}
  */

/* Responsive Styles 
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .login-btn {
    margin-top: 1rem;
    width: 100%;
  }

  .main-title {
    font-size: 2.8rem;
  }

  .device-mockups {
    flex-direction: column;
    gap: 2rem;
  }

  .mockup-1 {
    max-width: 85%;
    transform: none;
  }

  .mockup-2 {
    max-width: 65%;
    transform: none;
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2rem;
  }

  .device-mockups {
    margin-top: 2rem;
  }

  .mockup-1 {
    max-width: 95%;
  }

  .mockup-2 {
    max-width: 75%;
  }
} */

.hero-section {
  position: relative;
  padding-top: 4rem;
  height: 64vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(170, 170, 170, 0.7);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem;
}

.container {
  position: relative;
}

.row {
  /* removidos os estilos que afetavam todas as rows */
}

.main-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.main-title span.color1,
.main-title span.color2 {
  display: inline-block;
  padding: 0 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  margin-top: 4px;
  line-height: 1.1;
}

.color1 {
  color: #000000;
  background-color: #9dd3ff;
  transition: all 0.3s ease;
}

.color1:hover {
  color: #ff5722;
}

.color2 {
  color: #000000;
  background-color: #fd9d80;
  transition: all 0.3s ease;
}

.color2:hover {
  color: #2196f3;
}

.title-line-1,
.title-line-2 {
  display: block;
  margin-bottom: 0.5rem;
  opacity: 1;
  transform: translateY(20px);
}

.subtitle {
  font-size: 1.25rem;
  color: #fdfafa;
  line-height: 1.6;
  opacity: 2;
  transform: translateY(20px);
  position: relative;
  z-index: 3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content.animate .title-line-1,
.hero-content.animate .title-line-2,
.hero-content.animate .subtitle {
  animation: fadeInUp 1s ease-out forwards;
}

.hero-content.animate .title-line-1 {
  animation-delay: 0.2s;
}

.hero-content.animate .title-line-2 {
  animation-delay: 0.4s;
}

.hero-content.animate .subtitle {
  animation-delay: 0.6s;
}

.solutions-section {
  padding: 1rem;
  background-color: #ffffff;
}

.solutions-section .container {
  padding: 2rem 0;
}

.solutions-section .text-center {
  margin-bottom: 3rem;
}

h2.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

p.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.cor-unica {
  color: #ff5722;
}

/* Feature Card Styles */
.feature-card {
  display: flex;
  background: white;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
  position: relative;
  min-height: 280px;
}

.feature-content {
  padding: 2rem;
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-image {
  flex: 0 0 60%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.dashboard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 0 24px 24px 0;
}

.feature-description-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0;
}

.feature-description {
  margin-bottom: 0;
  flex: 1;
}

.feature-link {
  padding-top: 4px;
}

/* Service Cards Grid */
.service-grid-wrapper {
  margin-top: -80px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1.2fr);
  gap: 1rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-card {
  background: rgb(241, 241, 241);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: 
    transform 0.4s cubic-bezier(.25,.8,.25,1),
    background 0.4s cubic-bezier(.25,.8,.25,1),
    color 0.4s cubic-bezier(.25,.8,.25,1);
}

/* Hover de cor para os cards do index e outras páginas */
.service-card:nth-child(1):hover {
  background-color: rgba(255, 87, 34, 0.8); /* Laranja */
}
.service-card:nth-child(2):hover {
  background-color: rgba(33, 150, 243, 0.8); /* Azul */
}
.service-card:nth-child(3):hover {
  background-color: rgba(255, 87, 34, 0.8); /* Laranja */
}
.service-card:nth-child(4):hover {
  background-color: rgba(33, 150, 243, 0.8); /* Azul */
}
.service-card:hover .service-title,
.service-card:hover .service-description {
  color: white;
}
.service-card:hover .service-icon {
  background-color: white;
}
.service-card:hover .service-icon svg {
  color: #1a1a1a;
}

/* Icon Styles */
.feature-icon,
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.orange {
  background: #ff5722;
  color: white;
}
.blue {
  background: #2196f3;
  color: white;
}
.purple {
  background: #9c27b0;
  color: white;
}
.red {
  background: #f44336;
  color: white;
}
.green {
  background: #4caf50;
  color: white;
}

/* Title and Description Styles */
.feature-title,
.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-description,
.service-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

/* Link Styles */
.feature-link,
.service-link {
  display: inline-flex;
  align-items: right;
  color: var(--text-color);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.feature-link:hover,
.service-link:hover {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .feature-card {
    flex-direction: column;
  }

  .feature-content,
  .feature-image {
    flex: none;
    width: 100%;
  }

  .feature-image {
    position: relative;
    height: 300px;
  }

  .dashboard-image {
    border-radius: 0 0 24px 24px;
  }

  .service-grid-wrapper {
    margin-top: -40px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 2rem;
  }

  .service-grid-wrapper {
    margin-top: -20px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }

  .feature-content {
    padding: 2rem;
  }

  .feature-image {
    height: 200px;
  }
}

@media (min-width: 1200px) {
  .feature-image {
    width: 60%;
  }
  .dashboard-image {
    object-position: left top;
  }
}

/* Engagement Section Styles */
.engagement-section {
  position: relative;
  background-color: #1a1a1a;
  color: rgb(255, 255, 255);
  padding: 2rem 0;

}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cor-unica {
  color: #ff5722;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.engagement-options {
  margin-bottom: 2rem;
}

.engagement-card {
  padding: 2rem;
  height: 100%;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: #ff5722;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5722;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.launch-button:hover {
  background-color: #4338ca;
  transform: translateY(-2px);
}

.launch-button svg {
  transition: transform 0.3s ease;
}

.launch-button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .engagement-section {
    padding: 2rem 0;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .engagement-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .engagement-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}
/* Case Studies Section Styles */
.case-studies-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-primary {
  color: #ff5722 !important;
}
.t-second {
  color: #000000 !important;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Carousel Styles */
.carousel {
  position: relative;
  padding: 0 50px;
}

.case-study-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin: 1rem;
}

.case-study-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Opcional: efeito hover suave */
.case-study-image:hover img {
  transform: scale(1.05);
}

.service-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 0.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

.quality-studio {
  background-color: #4caf50;
}

.data-studio {
  background-color: #2196f3;
}

.design-studio {
  background-color: #f44336;
}

.ai-studio {
  background-color: #9c27b0;
}

.case-study-content {
  padding: 2rem;
}

.case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.case-study-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Custom Carousel Indicators */
.custom-indicators {
  position: relative;
  bottom: -2rem;
  margin: 0;
  padding: 0;
}

.custom-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #ddd !important;
  border: none !important;
  margin: 0 5px !important;
  opacity: 1 !important;
}

.custom-indicators button.active {
  background-color: #ff5722 !important;
}

@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.5rem;
  }

  .case-study-image {
    height: 300px;
  }

  .carousel {
    padding: 0 20px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 2rem;
  }

  .case-study-image {
    height: 200px;
  }

  .service-tags {
    flex-wrap: wrap;
  }
}

.see-all-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 3rem;
}

.see-all-button:hover {
  background-color: #1a1a1a;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.see-all-button svg {
  transition: transform 0.3s ease;
}

.see-all-button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .see-all-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

.page-header {
  padding: 8rem 0 4rem;
  background-color: #f8f9fa;
  margin-bottom: 4rem;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #1a1a1a;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.main-content {
  min-height: 60vh;
  padding: 4rem 0;
}

@media (max-width: 991.98px) {
  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .page-header {
    padding: 5rem 0 2rem;
  }

  .page-title {
    font-size: 2rem;
  }
}

.testimonials-section {
  padding: 6rem 0;
  background-color: #fff;
}

.testimonials-main {
  margin-bottom: 4rem;
}

.testimonials-header {
  text-align: left;
}

.profile-images {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.profile-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ff5722;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-grid {
  justify-content: center;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 16px;
  height: 16px;
  color: #ffb800;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .profile-images {
    justify-content: center;
  }

  .testimonials-main {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .profile-circle {
    width: 48px;
    height: 48px;
  }
}

.team-section {
  padding: 2rem 0;
  background-color: #fff;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  flex: 0 1 200px;
  text-align: center;
  margin-bottom: 1rem;
}

.member-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.member-position {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

@media (max-width: 991.98px) {
  .team-section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .team-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .team-section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .member-photo {
    width: 140px;
    height: 140px;
  }
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    background-color: #6f6f6f;
    padding: 4rem 0;
    margin: 2rem 0 0 0;
}

.contact-section .section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-section .section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Form Styles */
.contact-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Manager Info dentro do form */
.manager-info-form {
    height: 100%;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.manager-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.manager-info {
    text-align: center;
    color: white;
}

.manager-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.manager-info .position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.manager-info .description {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.manager-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .manager-info-form {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .contact-form {
        padding: 1.5rem;
    }
}

/* Commercial Manager Styles */
.commercial-manager {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10.2rem;
}

.manager-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-info {
    text-align: center;
}

.manager-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.manager-info .position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.manager-info .description {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.manager-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

/* Ajuste para mobile */
@media (max-width: 991.98px) {
    .commercial-manager {
        margin-top: 2rem;
        height: auto;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-logo {
    height: 186px;
    margin-bottom: 2rem;
}

.footer-links h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact {
    color: #999;
}

.footer-contact h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact address p {
    margin-bottom: 0.5rem;
}

/* Sub-footer */
.sub-footer {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: #999;
}

.sub-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.sub-footer-links li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-footer-links li a:hover {
    color: #fff;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .footer-logo-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-links, .footer-contact {
        margin-bottom: 2rem;
    }

    .sub-footer {
        text-align: center;
    }

    .sub-footer-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-logo {
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .footer-section {
        padding: 2rem 0 0;
    }

    .sub-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-logo {
        height: 40px;
    }
}

/* Ajustando o container para ocupar todo o espaço */
.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-section .row {
  height: 100%;
}

/* Ajustes responsivos para o hero content */
@media (max-width: 991.98px) {
    .main-title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .hero-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .main-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .title-line-1,
    .title-line-2 {
        margin-bottom: 0.3rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        br {
            display: none;
        }
    }

    .color1,
    .color2 {
        display: inline-block;
        padding: 0.2rem 0.5rem;
    }

    .hero-content {
        padding: 1.5rem 0.5rem;
        width: 100%;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Removendo a animação de pulso que pode estar causando o desfoque */
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Ajustes para mobile */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

.location-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.location-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Ajuste para mobile */
@media (max-width: 575.98px) {
    .location-section {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .location-section h2 {
        font-size: 1.5rem;
    }
    
    .location-section p {
        font-size: 1rem;
    }
}

/* Classes para controlar o zoom */
.photo-zoom-out {
    object-fit: contain !important;
    padding: 10px;
}

.photo-wide {
    object-position: center 20% !important;
    object-fit: cover !important;
}

.photo-close {
    object-position: center 30% !important;
    object-fit: cover !important;
}

/* Classe específica para a foto do Ricardo */
.photo-ricardo {
    object-fit: cover !important;
    object-position: center 5% !important;
    transform: scale(1.0);
}

/* Estilo moderno para o botão de enviar */
.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #f4511e);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.submit-button:hover::before {
    opacity: 1;
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(4px);
}

/* Efeito de clique */
.submit-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.2);
}

/* Cards da página de serviços: visual exclusivo */
body.servicos .service-card {
  border-radius: 32px 0 32px 32px;
  background: #f7f3f0;
  border: 2px solid #ff6a32;
  color: #222;
  transition:
    transform 0.4s cubic-bezier(.25,.8,.25,1),
    background 0.4s cubic-bezier(.25,.8,.25,1),
    color 0.4s cubic-bezier(.25,.8,.25,1),
    box-shadow 0.4s cubic-bezier(.25,.8,.25,1);
}

body.servicos .service-card .service-title,
body.servicos .service-card .service-description {
  color: #222;
}

body.servicos .service-card .service-icon {
  background: #fff0e6;
  color: #ff6a32;
}

body.servicos .service-card:hover {
  border-radius: 32px 0 32px 32px;
  transform: rotate(-5deg) scale(1.05);
  background: #ff6a32;
  color: #fff;
  box-shadow: 0 16px 48px rgba(255, 87, 34, 0.18);
  border-color: #ff6a32;
}

body.servicos .service-card:hover .service-title,
body.servicos .service-card:hover .service-description {
  color: #fff;
}

body.servicos .service-card:hover .service-icon {
  background: #fff;
  color: #ff6a32;
}

body.servicos .service-card:hover .service-icon svg {
  color: #ff6a32;
}

/* Primeira linha: laranja, azul, laranja, azul */
body.servicos .service-grid:first-of-type .service-card:nth-child(1),
body.servicos .service-grid:first-of-type .service-card:nth-child(3) {
  border-color: #ff6a32;
}
body.servicos .service-grid:first-of-type .service-card:nth-child(2),
body.servicos .service-grid:first-of-type .service-card:nth-child(4) {
  border-color: #2196f3;
}

/* Segunda linha: azul, laranja, azul, laranja */
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(1),
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(3) {
  border-color: #2196f3;
}
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(2),
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(4) {
  border-color: #ff6a32;
}

/* Hover: borda sempre igual ao fundo */
body.servicos .service-grid:first-of-type .service-card:nth-child(1):hover,
body.servicos .service-grid:first-of-type .service-card:nth-child(3):hover,
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(2):hover,
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(4):hover {
  background: #ff6a32;
  border-color: #ff6a32;
}
body.servicos .service-grid:first-of-type .service-card:nth-child(2):hover,
body.servicos .service-grid:first-of-type .service-card:nth-child(4):hover,
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(1):hover,
body.servicos .service-grid:nth-of-type(2) .service-card:nth-child(3):hover {
  background: #2196f3;
  border-color: #2196f3;
}

/* Modal moderno laranja para Integração de Dados */
.modal-modern-orange .modal-content {
  background: #ff6a32;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255,87,34,0.18);
  border: none;
  animation: modalExpand 0.5s cubic-bezier(.25,.8,.25,1);
}
.modal-modern-orange .modal-header,
.modal-modern-orange .modal-footer {
  border: none;
  background: transparent;
}
.modal-modern-orange .btn-close {
  filter: invert(1);
}
.modal-modern-orange img {
  background: #fff;
}
@keyframes modalExpand {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Modal moderno roxo/azul para Inovação em IA */
.modal-modern-purple .modal-content {
  background: #7c3aed;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(124,58,237,0.18);
  border: none;
  animation: modalExpand 0.5s cubic-bezier(.25,.8,.25,1);
}
.modal-modern-purple .modal-header,
.modal-modern-purple .modal-footer {
  border: none;
  background: transparent;
}
.modal-modern-purple .btn-close {
  filter: invert(1);
}
.modal-modern-purple img {
  background: #fff;
}

.tech-title {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #23295A;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.2;
}
.tech-title .highlight {
  color: #1976ed;
  font-weight: 700;
}
@media (max-width: 600px) {
  .tech-title {
    font-size: 1.5rem;
  }
}


