/* SOBRE NÓS - Hero Section */
.hero-section {
  background: linear-gradient(rgba(29, 40, 73, 0.8), rgba(29, 40, 73, 0.8)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      no-repeat center center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-align: center;
}

.hero-section h1 {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero-section p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-section {
  padding: 60px 0;
}
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--accent-color);
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.team-card-content {
  padding: 1.5rem;
  color: var(--primary-color);
}
.team-specialty {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Valores Section */
.value-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  margin: 1rem;
  text-align: center;
  color: var(--primary-color);
}
.value-card h3 {
  color: var(--accent-color);
  margin-bottom: 12px;
}
.value-card p {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .team-section {
    padding: 40px 0;
  }
  .value-card {
    padding: 1.2rem 0.8rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    height: 40vh;
    padding: 1rem;
  }
  .hero-section h1 {
    font-size: 1.3rem;
  }
  .team-section {
    padding: 20px 0;
  }
  .value-card {
    padding: 0.8rem 0.4rem;
    margin: 0.5rem 0;
  }
}

:root {
  --primary-color: #1d2849;
  --primary-color-hover: #16203a;
  --accent-color: #decbaf;
  --background-color: #f8f9fa;
  --text-color: #333333;
}
body {
  font-family: "Georgia", serif;
  color: var(--text-color);
  background-color: var(--background-color);
}
/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(29, 40, 73, 0.85), rgba(29, 40, 73, 0.85)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      no-repeat center center;
  background-size: cover;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1.5s ease-out;
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}
/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: white;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}
.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 2rem;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about-image img {
  width: 100%;
  height: 650px;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-content {
  flex: 1;
  min-width: 300px;
}
.about-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}
.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-decoration: none;
}
.button:hover {
  background-color: transparent;
  color: var(--primary-color);
}
/* Team Section */
.team-section {
  padding: 6rem 0;
  background-color: var(--background-color);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.team-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 3rem;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.team-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 10%;
  margin: 0.5rem;
}
.team-card-content {
  padding: 1rem;
}
.team-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.team-card .oab {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}
.team-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.specialty {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
/* History Section */
.history-section {
  padding: 6rem 0;
  background-color: white;
}
.history-timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  padding-left: 50px;
}
.history-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-color);
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 4px solid var(--accent-color);
}
.timeline-item h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}
.timeline-item p {
  line-height: 1.7;
}
/* Values Section */
.values-section {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: white;
}
.values-section .section-title {
  color: var(--accent-color);
}
.values-section .section-title:after {
  background-color: white;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.value-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(222, 203, 175, 0.3);
}
.value-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.value-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}
.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}
.value-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 40vh;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-container {
    flex-direction: column;
  }
  .history-timeline {
    padding-left: 30px;
  }
  .timeline-item::before {
    left: -30px;
  }
}
