/* Custom CSS fixes for site1 homepage */

/* Force hide preloader after load */
.preloader {
  display: none !important;
}

/* Fix property card icon sizes */
.property-boxarea .bottom-icons .img-area1 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 15px;
}

.property-boxarea .bottom-icons .img-area1 i {
  font-size: 14px !important;
  color: #666;
  width: 16px;
}

.property-boxarea .bottom-icons .img-area1 p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}

.property-boxarea .bottom-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

/* Property card improvements */
.property-boxarea {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: auto;
  max-height: none;
}

.property-boxarea:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.property-boxarea .img1 {
  height: 250px;
  overflow: hidden;
}

.property-boxarea .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-boxarea:hover .img1 img {
  transform: scale(1.05);
}

.property-boxarea .property-content {
  padding: 20px;
}

.property-boxarea .property-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  height: auto;
}

.property-boxarea .location-area {
  margin-bottom: 15px;
}

.property-boxarea .location-area svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.property-boxarea .price-area {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.property-boxarea .price-area p {
  font-size: 20px;
  font-weight: 700;
  color: #2ecc71;
  margin: 0;
}

/* Search form improvements - matches reference design */
.others-section-area {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  padding-bottom: 40px;
}

.others-section-area .property-tab-section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.others-section-area .property-tab-section .tab-header {
  display: inline-flex;
  background: #f2f1f1;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}

.others-section-area .property-tab-section .tab-header .tab-btn {
  color: #666;
  font-size: 15px;
  font-weight: 500;
  border: none;
  outline: none;
  padding: 12px 40px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.others-section-area .property-tab-section .tab-header .tab-btn.active {
  background: #bfcf28;
  color: #fff;
}

.others-section-area .property-tab-section .filters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  padding: 18px 20px;
  position: relative;
  z-index: 1;
  margin-top: -2px;
}

.others-section-area .property-tab-section .filter-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 200px;
  position: relative;
  min-width: 0;
}

.others-section-area .property-tab-section .filter-group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-size: 13px;
  display: block;
}

.others-section-area .property-tab-section .filter-group select,
.others-section-area .property-tab-section .filter-group input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  width: 100%;
  height: 38px;
}

.others-section-area .property-tab-section .filter-group select:focus,
.others-section-area .property-tab-section .filter-group input:focus {
  outline: none;
  border-color: #bfcf28;
  background: #fff;
}

.others-section-area .property-tab-section .search-button {
  display: flex;
  align-items: flex-end;
  flex: 0 0 auto;
}

.others-section-area .property-tab-section .search-button button {
  background: #bfcf28;
  color: white;
  border: none;
  padding: 9px 24px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
  white-space: nowrap;
  height: 38px;
  margin-top: auto;
}

.others-section-area .property-tab-section .search-button button:hover {
  background: #a8b524;
}

.others-section-area .property-tab-section .search-button svg {
  width: 16px;
  height: 16px;
}

/* Hide the tab content that's not active */
.others-section-area .property-tab-section .tab-content1 {
  display: none;
}

/* Ensure the first tab (Venda) is visible by default */
.others-section-area .property-tab-section .tab-content1#for-sale {
  display: block !important;
}

/* Initial visibility fix for search form */
.others-section-area .property-tab-section #for-sale {
  display: block !important;
}

/* Hide open search button and any filter-related buttons */
.open-search-filter-form,
.open-filter-form {
  display: none !important;
}

/* Ensure the search area has proper responsive behavior */
@media (max-width: 767px) {
  .others-section-area {
    margin-top: 10px;
  }

  .others-section-area .property-tab-section .tab-header {
    display: flex;
    width: 100%;
  }

  .others-section-area .property-tab-section .tab-header .tab-btn {
    flex: 1;
    padding: 24px 30px;
    text-align: center;
  }

  .others-section-area .property-tab-section .filters {
    flex-direction: column;
    padding: 20px;
  }

  .others-section-area .property-tab-section .filter-group {
    width: 100%;
    flex: 1 1 100%;
  }
}

/* Hero slider arrows */
.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-prev-arrow,
.hero-next-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  pointer-events: all;
}

.hero-prev-arrow {
  left: 20px;
}

.hero-next-arrow {
  right: 20px;
}

.hero-prev-arrow button,
.hero-next-arrow button {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-prev-arrow button:hover,
.hero-next-arrow button:hover {
  background: white;
  transform: scale(1.1);
}

/* Testimonial slider arrows */
.testimonial-arrows {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-prev-arrow button,
.testimonial-next-arrow button {
  width: 45px;
  height: 45px;
  background: #2ecc71;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev-arrow button:hover,
.testimonial-next-arrow button:hover {
  background: #27ae60;
  transform: scale(1.1);
}

/* Mobile responsive fixes - Ajustado para garantir ocultação dos botões */
@media (max-width: 767.98px) {
  .search-filter-form .filters {
    grid-template-columns: 1fr;
  }

  .property-boxarea .bottom-icons {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .property-boxarea .bottom-icons .img-area1 {
    margin-right: 0;
  }

  /* Ocultar botões de navegação do hero em mobile */
  .hero-prev-arrow,
  .hero-next-arrow {
    display: none !important;
  }
}

/* Ocultar botões especificamente em orientação portrait (vertical) */
@media (max-width: 991.98px) and (orientation: portrait) {
  .hero-prev-arrow,
  .hero-next-arrow {
    display: none !important;
  }
}

/* Garantir que botões fiquem ocultos em telas pequenas independente da orientação */
@media (max-width: 575.98px) {
  .hero-prev-arrow,
  .hero-next-arrow {
    display: none !important;
  }
}

/* Fix for featured properties section spacing */
.properties1-section-area {
  padding: 60px 0;
}

.properties1-section-area .property-heading {
  margin-bottom: 50px;
}

.properties1-section-area .property-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* Property badges styling */
.property-boxarea .category-list {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.property-boxarea .category-list ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.property-boxarea .category-list li a {
  background: white;
  color: #333;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

/* Fix for large icons in property cards */
.property-boxarea .location-area svg {
  width: 16px !important;
  height: 16px !important;
  vertical-align: middle;
}

/* Fix any other large SVG icons in property cards */
.property-boxarea svg {
  max-width: 20px !important;
  max-height: 20px !important;
}

/* Hero height and spacing to match template */
.hero1-section-area {
  padding: 350px 0 215px;
}

.hero-header-area h1 {
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
}

.hero-header-area h5 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .hero1-section-area {
    padding: 160px 0 150px;
  }

  .hero-header-area h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .hero-header-area h5 {
    font-size: 18px;
    line-height: 20px;
  }
}

/* Ensure slider container doesn't overflow */
.hero-area-slider {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-area-slider:not(.slick-initialized) .hero1-section-area {
  display: none;
}

.hero-area-slider:not(.slick-initialized) .hero1-section-area:first-child {
  display: block;
}

.hero-area-slider .slick-slide {
  height: auto;
}

.hero-area-slider .slick-list {
  height: 100%;
}

.hero1-section-area {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Additional testimonial fixes */
.testimonial1-section-area {
  padding: 60px 0;
}

.testimonial-text-slider .testimonial-box {
  padding: 20px;
}

.testimonial-images-slider .img1 {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}

.testimonial-images-slider .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix inverted testimonial arrows */
.testimonial-prev-arrow,
.testimonial-next-arrow {
  transform: none !important;
}

.testimonial-prev-arrow button i {
  transform: scaleX(-1);
}

.testimonial-next-arrow button i {
  transform: scaleX(1);
}

/* Fix duplicated search bar issue */
.others-section-area .property-tab-section .tab-content1 {
  display: none !important;
}

.others-section-area .property-tab-section .tab-content1.active {
  display: block !important;
}

/* Ensure proper display on page load */
.others-section-area .property-tab-section .tab-content1#for-sale {
  display: block !important;
}

/* Prevent duplicate search forms */
.others-section-area .property-tab-section {
  overflow: hidden;
}

/* Ensure only one search form is visible at a time */
.others-section-area .property-tab-section > div {
  position: relative;
}

/* Hide any additional property-tab-section that might be duplicated */
.others-section-area .property-tab-section + .property-tab-section {
  display: none !important;
}

/* Fix highlights title being hidden under slider */
.properties1-section-area .property-heading {
  margin-top: 40px; /* Add top margin to prevent hiding under search bar */
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Property description styling */
.property-description {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.property-description p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA section button styling for procura-imovel */
.cta-section .btn-success {
  background: #2ecc71 !important;
  border-color: #2ecc71 !important;
  transition: all 0.3s ease;
}

.cta-section .btn-success:hover {
  background: #27ae60 !important;
  border-color: #27ae60 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* =================================================================== */
/* SOLUÇÃO DEFINITIVA PARA OS PROBLEMAS DO HEADER E PÁGINAS INTERNAS */
/* =================================================================== */

/* 1. RESET: Remove any previous header positioning attempts */
.header-area {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  transition: all 0.3s ease;
}

/* 2. STICKY HEADER: Make it fixed when sticky */
.header-area.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 3. MOBILE HEADER: Always fixed on mobile */
.mobile-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 4. HOMEPAGE: No margin needed (hero sections handle spacing) */
body.homepage main,
main:has(.hero1-section-area),
main:has(.hero-area-slider) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 5. INNER PAGES: Add top margin to prevent header overlap */
body:not(.homepage) main,
main:not(:has(.hero1-section-area)):not(:has(.hero-area-slider)) {
  margin-top: 70px !important; /* CORRIGIDO: Reduzido de 140px (com barra verde) para 70px (sem barra verde) */
  padding-top: 0 !important;
}

/* 6. MOBILE ADJUSTMENTS */
@media (max-width: 991px) {
  body:not(.homepage) main,
  main:not(:has(.hero1-section-area)):not(:has(.hero-area-slider)) {
    margin-top: 70px !important; /* Mantido consistente com desktop */
  }
}

/* 7. HERO INNER SECTIONS: Template-style header area for inner pages */
.hero-inner-section-area-sidebar {
  position: relative;
  min-height: 300px;
  background: linear-gradient(135deg, #073b3a 0%, #0a4f4d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 0 !important;
  padding-top: 180px !important;
  padding-bottom: 100px !important;
}

.hero-inner-section-area-sidebar .hero-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-inner-section-area-sidebar .container {
  position: relative;
  z-index: 2;
}

.hero-inner-section-area-sidebar .hero-header-area {
  text-align: center;
}

.hero-inner-section-area-sidebar .hero-header-area a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-inner-section-area-sidebar .hero-header-area a:hover {
  color: white;
}

.hero-inner-section-area-sidebar .hero-header-area a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-inner-section-area-sidebar .hero-header-area h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 8. MOBILE RESPONSIVE FOR HERO INNER */
@media (max-width: 767px) {
  .hero-inner-section-area-sidebar {
    min-height: 250px;
    padding-top: 120px !important;
    padding-bottom: 80px !important;
  }

  .hero-inner-section-area-sidebar .hero-header-area h1 {
    font-size: 32px;
  }

  .hero-inner-section-area-sidebar .hero-header-area a {
    font-size: 13px;
  }
}

/* 9. INDIVIDUAL PAGE CONTAINERS: Remove default hero sections and add proper header */
.sobre-nos-container,
.nossa-equipe-container,
.testemunhos-container,
.contato-container,
.favoritos-container,
.imoveis-container,
.cadastre-imovel-container,
.procura-imovel-container {
  position: relative;
}

/* Remove default hero sections from inner pages */
.sobre-nos-container .hero-section,
.nossa-equipe-container .hero-section,
.testemunhos-container .hero-section {
  display: none !important;
}

/* 10. CONTENT SECTIONS: Proper spacing after hero area */
.content-section,
.team-section,
.testimonials-section {
  padding-top: 80px !important;
}

/* 11. HEADER HEIGHTS: Ensure consistent header heights */
.header-area .header-top-area {
  height: auto;
  padding: 8px 0;
  background: #073b3a;
  color: white;
}

.header-area .header-elements {
  padding: 15px 0;
}

.header-area.sticky .header-top-area {
  display: none;
}

.header-area.sticky .header-elements {
  padding: 12px 0;
}

/* 12. DROPDOWN MENUS: Ensure they appear correctly */
.main-menu .dropdown-padding,
.main-menu .tp-submenu {
  z-index: 10000 !important;
  position: absolute;
  margin-top: 10px;
}

/* 13. SEARCH AREA: Proper positioning for homepage */
.others-section-area {
  position: relative;
  z-index: 10;
  background: #fff;
}

/* Homepage search positioning */
body.homepage .others-section-area {
  margin-top: -80px;
}

/* Inner pages search positioning (if needed) */
body:not(.homepage) .others-section-area {
  margin-top: 20px;
}

/* 14. PAGE SPECIFIC FIXES */

/* Sobre Nós page specific styling */
.sobre-nos-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, #073b3a 0%, #0a4f4d 100%);
  z-index: -1;
}

.sobre-nos-container::after {
  content: 'Sobre Nós';
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* Nossa Equipe page specific styling */
.nossa-equipe-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: -1;
}

.nossa-equipe-container::after {
  content: 'Nossa Equipe';
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* Testemunhos page specific styling */
.testemunhos-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  z-index: -1;
}

.testemunhos-container::after {
  content: 'Testemunhos';
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* 15. MOBILE RESPONSIVE FOR PAGE HEADERS */
@media (max-width: 767px) {
  .sobre-nos-container::before,
  .nossa-equipe-container::before,
  .testemunhos-container::before {
    height: 250px;
  }

  .sobre-nos-container::after,
  .nossa-equipe-container::after,
  .testemunhos-container::after {
    top: 140px;
    font-size: 32px;
  }
}

/* 16. ENSURE PROPER Z-INDEX STACKING */
.header-area,
.mobile-header {
  z-index: 9999 !important;
}

.hero-inner-section-area-sidebar {
  z-index: 1;
}

.main {
  z-index: 1;
  position: relative;
}

/* 17. FINAL TOUCH: Ensure smooth transitions */
* {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 140px;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 80px;
  }
}

/* =================================================================== */
/* ESTILOS ESPECÍFICOS DAS PÁGINAS INTERNAS */
/* =================================================================== */

/* Página Sobre Nós */
.sobre-nos-container {
  min-height: 60vh;
}

.sobre-nos-container .content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.sobre-nos-container .content-text h2,
.sobre-nos-container .content-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.sobre-nos-container .content-text p {
  margin-bottom: 1.2rem;
}

.sobre-nos-container .content-text ul,
.sobre-nos-container .content-text ol {
  margin-bottom: 1.2rem;
  padding-left: 2rem;
}

.sobre-nos-container .content-text li {
  margin-bottom: 0.5rem;
}

.sobre-nos-container .image-container {
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.sobre-nos-container .image-container:hover {
  transform: translateY(-5px);
}

.sobre-nos-container .image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sobre-nos-container .image-container:hover img {
  transform: scale(1.05);
}

/* Página Nossa Equipe */
.nossa-equipe-container {
  min-height: 60vh;
}

.nossa-equipe-container .team-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  background: white;
}

.nossa-equipe-container .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nossa-equipe-container .team-photo-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

.nossa-equipe-container .team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nossa-equipe-container .team-card:hover .team-photo {
  transform: scale(1.1);
}

.nossa-equipe-container .team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  color: #6c757d;
  font-size: 8rem;
}

.nossa-equipe-container .card-body {
  padding: 1.5rem;
}

.nossa-equipe-container .card-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.nossa-equipe-container .creci-badge {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.nossa-equipe-container .team-bio {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.nossa-equipe-container .contact-info {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

.nossa-equipe-container .contact-item {
  margin-bottom: 0.5rem;
}

.nossa-equipe-container .contact-item a {
  color: #495057;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.nossa-equipe-container .contact-item a:hover {
  color: #007bff;
}

.nossa-equipe-container .whatsapp-link:hover {
  color: #25d366 !important;
}

.nossa-equipe-container .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
  margin-top: 1rem;
}

.nossa-equipe-container .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.nossa-equipe-container .social-link:hover {
  transform: translateY(-3px);
}

.nossa-equipe-container .social-link.linkedin:hover {
  background: #0077b5;
  color: white;
}

.nossa-equipe-container .social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

/* Página Testemunhos */
.testemunhos-container {
  min-height: 60vh;
}

.testemunhos-container .testimonial-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.testemunhos-container .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testemunhos-container .testimonial-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.testemunhos-container .testimonial-card:hover .testimonial-image img {
  transform: scale(1.05);
}

.testemunhos-container .card-body {
  padding: 2rem;
  position: relative;
}

.testemunhos-container .quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3rem;
  color: #6a11cb;
  opacity: 0.2;
}

.testemunhos-container .testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #495057;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testemunhos-container .testimonial-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

.testemunhos-container .client-name {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testemunhos-container .location {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testemunhos-container .location i {
  font-size: 1rem;
}

.testemunhos-container .testimonial-date {
  color: #adb5bd;
  font-size: 0.85rem;
  text-transform: capitalize;
  margin-bottom: 0;
}

.testemunhos-container .btn-outline-primary {
  border-radius: 25px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.testemunhos-container .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
}

/* Mobile Responsive para páginas internas */
@media (max-width: 768px) {
  .sobre-nos-container .content-text {
    font-size: 1rem;
  }

  .nossa-equipe-container .team-photo-container {
    height: 200px;
  }

  .testemunhos-container .card-body {
    padding: 1.5rem;
  }

  .testemunhos-container .testimonial-text {
    font-size: 1rem;
  }

  .testemunhos-container .quote-icon {
    font-size: 2.5rem;
  }
}
