/* About Us Specific Styles */


.about-intro {
  padding: 5rem 0;
}

/* About page section-title-left overrides */
.about-content .section-title-left,
.content-section .section-title-left {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2,
.content-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-content p,
.content-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-image-large {
  background-color: var(--border-color);
  border-radius: 30px;
  /* Mais orgânico */
  overflow: hidden;
  position: relative;
  /* Sombra colorida */
}

.about-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 8s ease-in-out;
}

.about-image-large:hover img {
  transform: scale(1.05);
}

.content-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
}

.content-section:nth-child(even) {
  background-color: white;
}

/* Proposta Section — fundo azul */
.proposta-section {
  background-color: var(--primary-color);
  background-image: url('../fundo azul.png');
  background-repeat: repeat;
  background-size: auto;
  color: white;
  border-top: none;
  border-bottom: 3px solid #a92355;
}

.proposta-section .about-content h2,
.proposta-section .about-content .section-title-left {
  color: white;
}

.proposta-section .about-content .section-title-left::after {
  background-color: white;
}

.proposta-section .about-content p {
  color: rgba(255, 255, 255, 0.85);
}

.proposta-section .section-title-left {
  display: block;
}

.proposta-section .section-title-left::after {
  width: 100%;
}

.team-section .section-title-left::after {
  background-color: var(--primary-color);
}

/* Team Section — watermark background */
.team-section {
  position: relative;
  background-color: #fef6f2 !important;
  padding: 5rem 0;
  overflow: visible;
  border-top: none;
}

.team-section::before {
  content: '';
  position: absolute;
  top: -300px;
  bottom: -400px;
  right: 0;
  width: 1000px;
  background-image: url('../fundo1.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.team-section .container {
  position: relative;
  z-index: 2;
}

.team-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(59, 32, 94, 0.1);
  border-color: var(--accent-color);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-color: var(--bg-color);
  overflow: hidden;
  border: 4px solid var(--accent-color);
  /* Inspirado no logo */
  box-shadow: 0 5px 15px rgba(169, 35, 85, 0.2);
}

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

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.team-role {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Accordion Specific Elements */
.team-card-header {
  display: block;
}

.accordion-icon {
  display: none;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.team-card.active .accordion-icon {
  transform: rotate(180deg);
}

.team-card-details {
  display: block;
}

@media (max-width: 900px) {
  .two-col-layout {
    grid-template-columns: 1fr;
  }

  .about-image-large {
    min-height: 350px;
  }
}

/* Universal Accordion Premium Styling */
.team-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.team-card {
  padding: 1.5rem;
  text-align: left;
  overflow: hidden;
  border-radius: 20px;
  /* Canto mais arredondado e orgânico */
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(59, 32, 94, 0.04);
  position: relative;
}

.team-card-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.team-photo {
  width: 70px;
  height: 70px;
  margin: 0;
  margin-right: 1.5rem;
  flex-shrink: 0;
  border: 3px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(59, 32, 94, 0.08);
  /* Sombra elegante no detalhe */
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  border-color: var(--primary-light);
}

.team-header-info {
  flex-grow: 1;
}

.team-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.team-card-details {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.4s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card.active .team-card-details {
  display: block;
}

.team-socials {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-color);
}

.team-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-color);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-whatsapp {
  color: #25D366 !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
}

.social-whatsapp:hover {
  background: #25D366 !important;
  color: white !important;
  border-color: #25D366 !important;
}

.social-instagram {
  color: #E1306C !important;
  border-color: rgba(225, 48, 108, 0.3) !important;
}

.social-instagram:hover {
  background: #E1306C !important;
  color: white !important;
  border-color: #E1306C !important;
}

.social-facebook {
  color: #1877F2 !important;
  border-color: rgba(24, 119, 242, 0.3) !important;
}

.social-facebook:hover {
  background: #1877F2 !important;
  color: white !important;
  border-color: #1877F2 !important;
}

.team-card.active {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(169, 35, 85, 0.1);
  transform: translateY(-2px);
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-card:hover .accordion-icon {
  background: rgba(169, 35, 85, 0.08);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.team-card.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

@media (max-width: 768px) {

  .about-intro,
  .content-section {
    padding-top: 2.5rem;
  }

  .team-section::before {
    position: absolute;
    top: 140px;
    bottom: 0;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    background-size: auto 100vh;
    background-position: calc(100% + 120px) top;
    background-attachment: scroll;
    opacity: 0.5;
  }
}