/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1761068841
Updated: 2025-10-21 14:47:21

*/

/* =========================
   GRID DE SEGMENTOS DA UNIDADE
   ========================== */

.gaba-segmentos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1120px;
  margin: 40px auto 0;
}

.gaba-segmentos-grid.cols-1 {
  grid-template-columns: 1fr;
}

.gaba-segmentos-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gaba-segmentos-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gaba-segmentos-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Responsivo */
@media (max-width: 900px) {
  .gaba-segmentos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .gaba-segmentos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Card */
.seg-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.seg-card__inner {
  background: #3b0a68;              /* roxo do site */
  border-radius: 26px;
  padding: 24px 24px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  transition:
    transform .18s ease-out,
    box-shadow .18s ease-out,
    background .18s ease-out;
}

/* Hover */
.seg-card:hover .seg-card__inner,
.seg-card:focus .seg-card__inner {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
  background: #4b0f86;
}

/* Thumb */
.seg-card__thumb {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.seg-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* se quiser travar proporção:
     aspect-ratio: 16 / 9; */
}

/* Título */
.seg-card__title {
  margin-top: auto;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center; 
}

/* Ajuste em telas bem pequenas */
@media (max-width: 480px) {
  .seg-card__inner {
    padding: 20px 18px 26px;
    min-height: 0;
  }

  .seg-card__title {
    font-size: 1.2rem;
  }
}


