/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", poppins, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* HEADER */
.header {
  background: #faf9f9;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between; /* logo esquerda, toggle direita */
  align-items: center;
  padding: 12px 17px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

/* NAVIGATION */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #1a140a;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: #e88707;
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e88707;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: rgba(255, 149, 0, 1);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown > a i {
  font-size: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 5px;
  background: #f3f4f6;
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.468);
  border-radius: 20px;
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;

  display: flex;
  flex-direction: column;
  gap: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 8px 20px;
  color: #1a140a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #e88707;
  padding-left: 25px;
  border-radius: 30px;
}

/* BUTTON */
.btn-header {
  background: #f9f8f8;
  color: #0b0b0b;
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-header:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* MENU TOGGLE (MOBILE) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #1a140a;
  cursor: pointer;
}

/* ------------------------------- */
/* RESPONSIVE - MOBILE */
@media (max-width: 900px) {
  .header .container {
    display: flex;
    justify-content: space-between; /* separa logo e toggle */
    align-items: center;
  }

  .logo {
    flex: 1;
  }

  .logo-img {
    height: 40px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ddd;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .nav.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .dropdown > a {
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu a {
    text-align: center;
    padding: 10px 0;
  }

  .btn-header {
    display: none;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* Hero Section */
.hero {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background: #041652;
  color: #ffffff;
}

/* Flex container */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Conteúdo textual */
.hero-content {
  flex: 1;
  max-width: 500px;
}

/* Imagem da hero */
.hero-image {
  flex: 1;
  max-width: 700px;
  height: 318px;
}

.hero-image img {
  height: auto;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  transition: transform 0.5s ease;
}

/* ===================== */
/* ANIMAÇÕES */
/* ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===================== */
/* TEXTOS */
/* ===================== */
.hero h1 {
  font-size: 2.7rem;
  font-weight: 680;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.highlight {
  color: #fbbf24;
}

/* ===================== */
/* BOTÕES */
/* ===================== */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.8s;
}

/* Botão primário */
.btn-primary {
  background: #e88707;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: #21199a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 3, 72, 0.4);
}

/* Botão secundário */
.btn-secondary {
  background: transparent;
  color: white;
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

/* ===================== */
/* RESPONSIVO */
/* ===================== */
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero-image {
    order: 2;
    max-width: 120%;
    margin-top: 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* Segments Section */
.segments {
  padding: 80px 0;
  background: #13045800;
}

.segments h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* Added 3D flip card effect with perspective and transform */
.segment-card {
  background: transparent;
  perspective: 1000px;
  height: 480px;
}

.segment-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.segment-card:hover .segment-card-inner {
  transform: rotateY(180deg);
}

.segment-card-front,
.segment-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.segment-card-front {
  background: #eceae5;
  border: 1px solid #e5e7eb;
}

.segment-card-back {
  background: linear-gradient(135deg, #12034d, #1e1b4b);
  color: white;
  transform: rotateY(180deg);
  padding: 40px 30px;
}

.segment-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0f2eb9, #12034d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.segment-icon i {
  font-size: 2rem;
  color: white;
}

.segment-card-front h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.segment-card-front ul {
  list-style: none;
  margin-bottom: 30px;
}

.segment-card-front li {
  padding: 8px 0;
  color: #6b7280;
  font-weight: 500;
}

/* Back side styling */
.back-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e88707, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(232, 135, 7, 0.4);
}

.back-icon i {
  font-size: 1.8rem;
  color: white;
}

.segment-card-back h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.segment-card-back p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e88707;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 135, 7, 0.4);
}

/* About Section - diferenciais */
.about {
  padding: 80px 0;
  background:#f3f4f6;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  background:#f3f4f600;
}

.about-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid white;
}


.about-content {
  flex: 1 1 50%;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

/* New grid layout for 4 professional cards */
.about {
  background: #f9f9f9; /* fundo cinza claro */
  padding: 80px 0;
}

.about-flex {
  display: flex;
  align-items: center; /* alinha na mesma altura */
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 440px;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.283);
  object-fit: cover;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.2rem;
  color: #12034d;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 30px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.differential-card {
  background: white;
  padding: 60px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #e88707;
  display: flex;
  align-items: center;
  gap: 15px;
}

.differential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: #12034d;
}

.differential-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e88707, #f59e0b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.differential-icon i {
  color: white;
  font-size: 1.3rem;
}

.differential-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin: 0;
}

/* Responsivo */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #12034d;
  border-radius: 10px;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fcfaf8;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9fb;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c347e, #12034d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
}

.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: justify;
  padding: 50px;
  background-color: #fbfbfb;
  color: #211a3d;
  margin: 0 auto;
  overflow: hidden;
  max-width: 1200px;
}
.section .text {
  max-width: 50%;
}
.section .text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.section .text p {
  font-size: 1.2rem;
  
}
.section .image {
  max-width: 45%;
}
.section .image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
/* Responsividade */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }
  .section .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .section .image {
    max-width: 100%;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2563eb;
  margin: 0;
}

.testimonial-author .stars {
  display: flex;
  gap: 5px;
}

.testimonial-author .stars i {
  color: #fbbf24; /* Cor das estrelas */
  font-size: 1.2rem;
}

.testimonial-author .photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: #04053b;
  color: white;
  border-radius: 0px;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/*Perguntas frequentes faq*/
.faq-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1f2937;
  font-family: "Inter", sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Inter", sans-serif;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active {
  color: #e88707;
}

.faq-question.active::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
  color: #555;
}

.faq-answer p {
  margin: 15px 0;
}

/* Footer */
.footer {
  background: #12034d;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 800px) {
  .footer-content {
    text-align: center;
  }
  .social-links {
    display: flex;
    justify-content: center;
  }
}
.footer-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fbbf24;
}

.footer-info p {
  color: #9ca3af;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #10b981;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fbbf24;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #10b981;
}

.footer-contact p {
  color: #9ca3af;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .segments-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile dropdown menu adjustments */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #ffffff;
    margin-top: 10px;
    border-radius: 8px;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 40px 0 100px;
  }

  .hero h1 {
    font-size: 2rem;
    max-width: 300px;
    margin-right: 20px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 300px;
    margin-right: 20px;
  }

  .hero-buttons {
    max-width: 300px;
    margin-right: 20px;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* CSS específico para a página Sobre Nós */
/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #12034d, #0d1a43);
  color: white;
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}
.about-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@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);
  }
}
/* Missão, Visão e Valores */
.mission-vision-values {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}
.mission-vision-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(18,3,77,0.05)"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
}
.mission-vision-values .container {
  position: relative;
  z-index: 2;
}
.mission-vision-values h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  position: relative;
}
.mission-vision-values h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e88707, #f59e0b);
  border-radius: 2px;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.mvv-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 135, 7, 0.1);
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 135, 7, 0.1), transparent);
  transition: left 0.6s ease;
}
.mvv-card:hover::before {
  left: 100%;
}
.mvv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #e88707;
}
.mvv-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #e88707, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 25px rgba(232, 135, 7, 0.3);
  transition: all 0.3s ease;
}
.mvv-card:hover .mvv-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(232, 135, 7, 0.4);
}
.mvv-icon i {
  font-size: 2.2rem;
  color: white;
}
.mvv-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 25px;
  position: relative;
}
.mvv-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1.1rem;
}
/* Valores específicos */
.values-card {
  grid-column: span 1;
}
.values-card .values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.value-item:hover {
  background: linear-gradient(135deg, #e88707, #f59e0b);
  color: white;
  transform: translateX(10px);
  border-color: #d97706;
  box-shadow: 0 5px 15px rgba(232, 135, 7, 0.3);
}
.value-item i {
  color: #e88707;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.value-item:hover i {
  color: white;
  transform: scale(1.2);
}
.value-item span {
  font-weight: 600;
  font-size: 1rem;
}
/* História dos Sócios */
.partners-history {
  padding: 120px 0;
  background: white;
  position: relative;
}
.partners-history h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  position: relative;
}
.partners-history h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e88707, #f59e0b);
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #6b7280;
  margin-bottom: 80px;
  font-style: italic;
}
.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: auto;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 135, 7, 0.05), transparent);
  transition: left 0.8s ease;
}
.partner-card:hover::before {
  left: 100%;
}
.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}
.partner-card.reverse {
  flex-direction: row-reverse;
  background: linear-gradient(135deg, white, #f8fafc);
}
.partner-image {
  flex-shrink: 0;
  width: 280px;
  height: 350px;
  position: relative;
}
.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10% 10% 10% 10%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 3px solid white;
}

.partner-card:hover .partner-image img {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.partner-content {
  flex: 1;
  animation: slideInLeft 0.8s ease-out;
}

.partner-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  position: relative;
}
.partner-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e88707;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.partner-content p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
}
/* Redes Sociais */
.social-media-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #12034d, #11225c);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  
}
.social-media-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="social-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23social-pattern)"/></svg>');
  opacity: 0.3;
}
.social-media-section .container {
  position: relative;
  z-index: 2;
}
.social-media-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(249, 114, 3, 0.3);
  color: #f7850b;
}
.social-media-section p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 70px;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.social-card {
  background: white;
  color: #7e8999;
  padding: 50px 40px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.social-card:hover::before {
  left: 100%;
}
.social-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}
.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.social-card:hover .social-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
.social-card.instagram .social-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-card.facebook .social-icon {
  background: #1877f2;
}
.social-card.tiktok .social-icon {
  background: #181414;

}.social-card.linkedin .social-icon {
  background: #0077B5;
}
.social-icon i {
  font-size: 2rem;
  color: white;
}
.social-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}
.social-card p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}
/* Responsivo */
@media (max-width: 1024px) {
  .mvv-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  .partner-card {
    gap: 40px;
    padding: 40px;
  }
  .partner-image {
    width: 250px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  .about-hero p {
    font-size: 1.1rem;
  }
  .mission-vision-values,
  .partners-history,
  .social-media-section {
    padding: 80px 0;
  }
  .mission-vision-values h2,
  .partners-history h2,
  .social-media-section h2 {
    font-size: 2.2rem;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mvv-card {
    padding: 40px 30px;
  }
  .partner-card,
  .partner-card.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 30px;
  }
  .partner-image {
    width: 220px;
    height: 260px;
  }
  .partner-content h3 {
    font-size: 1.8rem;
  }
  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .social-card {
    padding: 40px 30px;
  }
  .social-icon {
    width: 60px;
    height: 60px;
  }
  .social-icon i {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .about-hero {
    padding: 80px 0 60px;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero p {
    font-size: 1rem;
  }
  .mission-vision-values,
  .partners-history,
  .social-media-section {
    padding: 60px 0;
  }
  .mission-vision-values h2,
  .partners-history h2,
  .social-media-section h2 {
    font-size: 1.8rem;
  }
  .mvv-card {
    padding: 30px 20px;
  }
  .mvv-icon {
    width: 70px;
    height: 70px;
  }
  .mvv-icon i {
    font-size: 1.8rem;
  }
  .partner-card {
    padding: 30px 20px;
  }
  .partner-image {
    width: 180px;
    height: 220px;
  }
  .partner-content h3 {
    font-size: 1.5rem;
  }
  .partner-content h4 {
    font-size: 1.1rem;
  }
  .partner-content p {
    font-size: 1rem;
  }
  .social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .social-card {
    padding: 30px 25px;
  }
  .social-icon {
    width: 60px;
    height: 60px;
  }
  .social-icon i {
    font-size: 1.5rem;
  }
}

/* Contact Page Styles */

/* Contact Hero Section with Beach Background */
.contact-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#12034d, #0c1c53);
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-wrapper {
  background: white;
  padding: 50px 45px;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out;
}

.contact-form-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e88707;
  background: rgb(242, 239, 239);
  box-shadow: 0 0 0 3px rgba(232, 135, 7, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 50px;
}

.btn-submit {
  background: #08a508;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-submit i {
  font-size: 1.3rem;
}

/* Contact Info Section */
.contact-info {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-info h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 60px;
  position: relative;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e88707, #f59e0b);
  border-radius: 2px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.office-card {
  background: white;
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.office-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #e88707;
}

.office-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e88707, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(232, 135, 7, 0.3);
  transition: all 0.3s ease;
}

.office-card:hover .office-icon {
  transform: scale(1.1) rotate(5deg);
}

.office-icon i {
  font-size: 2rem;
  color: white;
}

.office-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.office-address {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.office-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e88707;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(232, 135, 7, 0.1);
}

.office-link:hover {
  background: #e88707;
  color: white;
  transform: translateX(5px);
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-method {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid #e88707;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-left-color: #12034d;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #12034d, #1e40af);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
  transform: scale(1.1) rotate(5deg);
}

.method-icon i {
  font-size: 1.5rem;
  color: white;
}

.method-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.method-info a {
  color: #e88707;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.method-info a:hover {
  color: #12034d;
}

.method-info p {
  color: #e88707;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 600px;
    background-attachment: scroll;
  }

  .contact-form-wrapper {
    padding: 50px 40px;
    margin: 0 20px;
  }

  .contact-form-wrapper h2 {
    font-size: 2rem;
  }

  .contact-info {
    padding: 80px 0;
  }

  .contact-info h2 {
    font-size: 2.2rem;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 550px;
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.8rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .contact-info {
    padding: 60px 0;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .office-card {
    padding: 35px 25px;
  }

  .contact-method {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
  }
}

/* Added segment page hero styles */
.segment-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.segment-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.segment-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 3, 77, 0.85), rgba(14, 26, 67, 0.85));
  z-index: 2;
}

.segment-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.segment-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e88707, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(232, 135, 7, 0.4);
}

.segment-icon-large i {
  font-size: 3rem;
  color: white;
}

.segment-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.segment-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Added segment intro section styles */
.segment-intro {
  padding: 80px 0;
  background: white;
}

.segment-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 25px;
  text-align: center;
}

.segment-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #6b7280;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .segment-hero {
    height: 400px;
  }

  .segment-hero h1 {
    font-size: 2.5rem;
  }

  .segment-hero p {
    font-size: 1.1rem;
  }

  .segment-icon-large {
    width: 80px;
    height: 80px;
  }

  .segment-icon-large i {
    font-size: 2.2rem;
  }

  .segment-intro {
    padding: 60px 0;
  }

  .segment-intro h2 {
    font-size: 2rem;
  }

  .segment-intro p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .segment-hero {
    height: 350px;
  }

  .segment-hero h1 {
    font-size: 2rem;
  }

  .segment-hero p {
    font-size: 1rem;
  }

  .segment-icon-large {
    width: 70px;
    height: 70px;
  }

  .segment-icon-large i {
    font-size: 2rem;
  }
}
