:root {
  --black: #444444000;
  --gray: #b8b8b8;
  --dark-gray: #3d3d3c;
  --white: #ffffff;
  --primary: #3293c4;
  --secondary: #e48376;
  --red: #d32a41;
  --font-primary: "Red Hat Display", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /*  list-style: none !important;*/
  text-decoration: none !important;
}

html,
body {
  overflow-x: hidden;
}

body {
  color: var(--black);
  font-family: var(--font-primary);
  font-weight: 500;
}

ul {
  /*  list-style: none;*/
  padding: 0;
  margin: 0;
}

main {
  position: relative;
  min-height: calc(100vh - 400.16px);
}

a {
  text-decoration: none !important;
}

/* CONTENT */

.header-content {
  display: flex;
  justify-content: center;
  /* centraliza */
  align-items: center;
  position: relative;
  background: #393d40;
  height: 60px;
  margin-top: 30px;
}

.logo {
  max-width: 220px;
}

.logo img {
  width: 100%;
  object-fit: contain;
}

.menu_header {
  display: flex;
}

.auth-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 35px;
}

.auth-button {
  padding: 55px 6px 6px;
  font-size: 11px;
  font-weight: bold;
  color: var(--white);
  background-color: var(--primary);
  cursor: pointer;
  letter-spacing: 1.5px;
}

.auth-button:last-child {
  background-color: var(--secondary);
}

.auth-button span {
  opacity: 0.55;
}

.menu_header li:not(:first-child) {
  margin-left: 15px;
}

.menu_header li {
  padding-bottom: 16px;
  position: relative;
  list-style: none;
}

.menu_header li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: transparent;
  transition: all ease 0.3s;
}

.menu_header li.current_page_item:before,
.menu_header li:hover:before {
  background-color: #cf6464;
}

.menu_header li i {
  display: none;
}

.wpcf7 input[type="file"] {
  max-width: 100%;
}

p {
  font-size: 16px !important;
}

.menu_header li a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

footer .menu_header li a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #444444;
}

.shadow-img {
  background-image: url(../img/sombra.png);
  width: 90%;
  margin: 0 auto;
  height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position: relative;
  z-index: 2;
}

.title-content {
  position: absolute;
  width: 100%;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  margin-top: -38px;
  height: 38px;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  border-bottom-left-radius: 25px;
  z-index: -1;
  padding: 25px 0;
}

/* .title-content:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: -2;
} */

.title-content span {
  font-size: 17px;
  padding-left: 80px;
}

.contact-content {
  /* margin-top: 65px;
  padding: 0 80px; */
  display: flex;
  justify-content: space-between;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--primary);
  padding: 5px 9px;
  font-size: 16px;
  margin-bottom: 12px;
  resize: none;
}

.form input:focus,
.form textarea:focus {
  outline: 0;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--black);
}

.form textarea {
  height: 464px;
}

.form {
  width: 58%;
}

.contact-info {
  width: 35%;
}

.contact-info h2 {
  font-weight: bold;
  font-size: 33px;
  max-width: 220px;
  margin-bottom: 32px;
}

.contact-info-title {
  font-size: 16px;
  color: var(--primary);
}

.contact-info-text {
  font-size: 16px;
  color: var(--black);
}

.contact-info-text p {
  margin: 0;
}

.contact-info-text p a {
  color: var(--black);
}

.each-contact-info {
  margin-bottom: 40px;
}

.each-contact-info:nth-child(3) {
  margin-bottom: 30px;
}

.map {
  height: 310px;
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-footer input {
  width: auto;
}

.contact-footer a {
  font-weight: bold;
  color: var(--primary);
}

.wpcf7-spinner {
  display: none !important;
}

.form input[type="submit"] {
  border: 0;
  background-color: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.form-button {
  flex: 1;
  text-align: right;
  position: relative;
}

/* TODO arrumar sombra quando formulário esta errado */

.left-shadow {
  background-image: url(../img/left-shadow.png);
  width: 100%;
  margin: 0 auto;
  height: 136px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position: absolute;
  top: -43px;
  left: 3px;
  pointer-events: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-img {
  display: flex;
  align-items: center;
}

.footer-img img {
  width: 140px;
  margin-right: 15px;
  margin-bottom: 10px;
}

.footer-info a {
  color: #444444;
  font-size: 15px;
}

footer .menu_header li:before {
  display: none;
}

footer .menu_header li {
  padding: 0;
}

footer {
  padding: 45px 0;
}

.footer-shadow {
  background-image: url(../img/footer-shadow.png);
  margin-left: 0;
  width: 100%;
  height: 45px;
}

.contact {
  margin-bottom: 50px;
  overflow-x: clip;
}

/* .clip {
  overflow-x: clip;
      margin-top: -40px;
} */

.presidents-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
  padding: 0 50px;
}

.each-president {
  width: 22%;
  margin-right: 3%;
  margin-bottom: 40px;
}

.each-president img {
  width: 100%;
  margin-bottom: 35px;
  height: 350px;
  object-fit: cover;
}

.each-president h3 {
  font-size: 17px;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 700;
}

.each-president h4 {
  font-size: 17px;
  letter-spacing: 1px;
  margin: 0;
}

.each-president p {
  font-size: 17px;
  letter-spacing: 1px;
  margin: 0;
}

.each-president:nth-child(4n) {
  margin-right: 0;
}

.syndicate {
  margin-top: -38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.syndicate-img {
  width: 50%;
}

.syndicate-text {
  width: 50%;
  padding: 80px 110px;
}

.syndicate-text p {
  margin: 0;
}

.syndicate-text-group:not(:last-child) {
  margin-bottom: 30px;
}

.about-content {
  padding-left: 80px;
  font-size: 14px;
}

.about-content ul,
.about-content ol {
  margin-left: 20px !important;
}

.about-content ul li,
.about-content ol li {
  display: list-item !important;
  list-style: disc !important;
}

.about-content ol li {
  list-style: auto !important;
}

.about {
  margin-bottom: 50px;
}

/*.video {
  margin-top: 50px;
}*/

.video iframe {
  width: 100%;
  height: 400px;
  max-width: 800px;
}

.about .title-content,
.about .title-content:before {
  background-color: var(--primary);
}

.syndicate-text-group h3 {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 0;
}

.syndicate-text-group p {
  font-size: 14px;
}

.title-container,
.courses-list-container,
.subscription,
.courses-description-container {
  padding: 0 90px;
}

.title-container h1 {
  font-weight: bold;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.title-container p {
  font-size: 14px;
}

.title-container p a {
  color: var(--black);
}

.courses-description {
  font-size: 14px;
  padding: 15px 90px;
}

.reverse-shadow {
  transform: scaleX(-1);
  margin-right: 0;
  margin-left: auto;
  max-width: 1570px;
}

.courses-list-container h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.courses-list-container h3 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 40px;
}

table th {
  font-size: 14px;
  padding-bottom: 28px;
  font-weight: 700;
}

table {
  margin-bottom: 40px;
}

table td {
  text-align: left;
  padding-right: 38px;
}

table td a {
  color: var(--black);
}

.vacancies {
  text-align: center;
  padding: 0;
}

.courses-description-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.courses-description-content {
  width: 60%;
  font-size: 14px;
}

.courses-document {
  width: 50%;
}

.courses-description-content h3 {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 700;
}

.courses-document i {
  color: var(--secondary);
  margin-right: 5px;
}

.courses-document {
  font-size: 14px;
  font-weight: 700;
}

.courses-document p {
  color: var(--secondary);
  margin-top: 25px;
}

.subscription h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.subscription p {
  font-size: 14px;
}

.courses-form {
  margin-top: 40px;
}

.courses-form h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.form-course-container {
  display: flex;
  justify-content: space-between;
}

.radio-options .wpcf7-list-item {
  margin: 0;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.radio-options {
  width: 30%;
}

.radio-options .wpcf7-list-item input {
  margin-right: 10px;
}

.inputs-container {
  width: 50%;
}

.inputs-content {
  margin-bottom: 30px;
}

.inputs-content input {
  width: 100%;
  border: 1px solid var(--primary);
  margin-bottom: 10px;
  padding: 4px 8px;
}

.inputs-content input:focus {
  outline: none;
}

.inputs-content input::placeholder {
  color: var(--black);
}

.attachment-container p {
  margin: 0;
  font-size: 16px;
}

.attachment-container div {
  margin-bottom: 40px;
}

.attachment-container input {
  margin-top: 8px;
}

.observation {
  margin-top: 80px;
  font-size: 12px;
  line-height: 15px;
}

.accept-radio .wpcf7-list-item {
  margin: 0;
  margin-top: 10px;
}

.courses-form input[type="submit"] {
  margin-left: auto;
  display: block;
  background-color: var(--primary);
  color: var(--white);
  border: 0;
  padding: 4px 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
}

.subscription {
  margin-bottom: 60px;
}

.news-container {
  display: flex;
}

.news-list {
  width: 70%;
  border-right: 1px dashed var(--black);
}

.aside {
  width: 30%;
  position: relative;
}

.news-thumb {
  width: 230px;
  height: 100%;
  margin-right: 15px;
}

.each-news {
  display: flex;
}

.each-news:not(:last-child) {
  margin-bottom: 40px;
}

.each-news img {
  width: 100%;
  object-fit: cover;
  max-width: 230px;
  margin-right: 15px;
}

.each-news-info {
  flex: 1;
  max-width: 380px;
}

.each-news-info h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 30px;
  margin: 0;
}

.each-news-info p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  margin-bottom: 10px;
}

.news-date {
  font-size: 14px;
  margin-bottom: 15px;
}

.each-news-info a {
  display: block;
  /* margin-left: auto; */
  width: fit-content;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
}

.no-results {
  font-size: 38px;
  text-align: center;
  margin: 80px 0;
  display: block;
}

.aside {
  padding-left: 80px;
}

.search-container {
  border: 1px solid var(--primary);
  display: flex;
  margin-bottom: 30px;
}

.search-container form {
  display: flex;
  width: 100%;
}

.events-content {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 70px;
}

.events-content button {
  background: url(https://sopesp.com.br/wp-content/uploads/2023/07/borda.png)
    no-repeat;
  color: var(--primary);
  border: 0;
  /* padding: 23px 8px; */
  font-weight: 600;
  font-size: 50px;
  text-transform: lowercase;
  margin-top: 30px;
  margin: 5px 4px;
  height: 150px;
  width: 150px;
  text-align: right;
  padding-right: 35px;
  line-height: 40px;
}

.special {
  background: url(https://sopesp.com.br/wp-content/uploads/2023/07/bordaactive.png)
    no-repeat !important;
  color: #fff !important;
}

.search-container input {
  border: 0;
  flex: 1;
  padding: 3px 8px;
}

.search-container input:focus {
  outline: 0;
}

.search-container input::placeholder {
  color: var(--black);
}

.search-container button {
  background: transparent;
  border: 0;
  padding-right: 10px;
}

.category-list {
  padding-left: 10px;
  margin-bottom: 60px;
}

.category-list h3,
.latest-news h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.category-list ul li a {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray);
}

.category-list ul li {
  margin-bottom: 18px;
}

.aside .shadow-img {
  margin-left: -81px;
  margin-right: auto;
  width: 300%;
  position: absolute;
}

.latest-news {
  padding-top: 60px;
  padding-left: 10px;
}

.latest-news-list h4 {
  font-size: 19px;
  font-weight: 700;
  line-height: 29px;
}

.each-last-news {
  margin-bottom: 10px;
  padding-bottom: 7px;
}

.each-last-news:not(:last-child) {
  border-bottom: 1px dashed var(--black);
}

.paginate {
  margin-top: 60px;
  margin-bottom: 60px;
}

.banner {
  margin-top: -38px;
}

.banner img {
  width: 100%;
  height: 510px;
  object-fit: cover;
}

.home-news,
.each-home-news,
.home-news-list {
  display: flex;
}

.each-home-news {
  width: 50%;
  margin-right: 30px;
}

.home-news-img img {
  width: 230px;
  margin-right: 20px;
  object-fit: cover;
}

.home-news-list {
  width: 80%;
}

.most-viewed {
  width: 20%;
}

.home-news-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.home-news-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.home-news-text {
  font-size: 14px;
  line-height: 20px;
}

.home-news-text {
  flex: 1;
}

.news-see-more {
  font-size: 14px;
  color: var(--black);
  display: block;
  width: fit-content;
  /* margin-left: auto; */
  font-weight: 700;
}

# .most-viewed h3 {
  font-size: 19px;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-left: 25px;
}

.most-viewed {
  padding-left: 25px;
  border-left: 1px dashed var(--black);
}

.most-viewed li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 20px;
}

.filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-content {
  display: flex;
  align-items: center;
}

.filter-content p {
  margin-right: 10px;
  margin-bottom: 0;
}

.filter-content select {
  padding: 2px 10px;
  border: 1px solid var(--primary);
}

.filter-content select:focus {
  outline: 0;
}

.most-viewed-number {
  font-size: 19px;
  color: var(--gray);
  width: 25px;
}

.most-viewed a {
  color: var(--black);
}

.home-news {
  align-items: flex-start;
  margin-bottom: 50px;
}

.title-content.reverse-title {
  border-bottom-left-radius: 0;
  border-top-right-radius: 25px;
}

.title-content.red {
  background-color: var(--primary);
}

.title-content.red:before {
  background-color: var(--primary);
}

.title-content.dark-gray {
  background-color: var(--primary);
}

.title-content.dark-gray:before {
  background-color: var(--primary);
}

.title-content.gray {
  background-color: var(--primary);
  color: #fff;
}

.title-content.gray:before {
  background-color: var(--primary);
}

.title-content.reverse-title:before {
  right: auto;
  left: -50%;
}

.h-38 {
  height: 38px;
}

.sobesp-information {
  margin-top: -38px;
  display: flex;
}

.home-left {
  display: flex;
  border-right: 1px dashed var(--black);
  width: 80%;
}

.home-right {
  width: 20%;
}

.home-left-img img {
  width: 570px;
  object-fit: cover;
  height: 100%;
}

.home-left-info {
  flex: 1;
  padding: 35px 50px 0 30px;
}

.each-home-left-info h3 {
  font-size: 33px;
  font-weight: bold;
}

.each-home-left-info:first-child {
  margin-bottom: 20px;
}

.each-home-left-info p {
  font-size: 15px;
  line-height: 21px;
}

.home-right {
  padding-left: 25px;
  padding-top: 35px;
}

.home-right h3 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 54px;
}

#informa-sopesp .newsletter-form input {
  width: 100%;
  border: 1px solid #d2d2d2;
  padding: 5px 9px;
  font-size: 16px;
  margin-bottom: 12px;
  background: transparent;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid var(--primary);
  padding: 5px 9px;
  font-size: 16px;
  margin-bottom: 12px;
  background: transparent;
}

.newsletter-form p {
  margin: 0;
}

.newsletter-form button {
  border: 0;
  background: transparent;
  width: 100%;
  margin-top: 20px;
}

.newsletter-icon {
  background-image: url(../img/newsletter-icon.png);
  width: 38px;
  height: 36px;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-right li {
  font-size: 15px;
  margin-bottom: 20px;
}

.home-right i {
  margin-right: 15px;
  font-size: 13px;
}

.news-letter-button {
  cursor: pointer;
  font-size: 19px !important;
  color: #d2d2d2;
  background-color: #393d40 !important;
  padding: 10px 15px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  margin-top: -15px;
}

.ml-2 {
  margin-left: 5px;
}

.news-letter-button span {
  line-height: 20px;
  margin: 0;
  max-width: 130px;
}

.news-letter-button img {
  width: 48px;
}

.sobesp-information {
  margin-bottom: 50px;
}

.happens-in-work {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.each-item {
  width: 23%;
  margin-bottom: 30px;
}

.each-item img {
  width: 100%;
  object-fit: cover;
  max-height: 200px;
}

.item-title {
  font-size: 13px;
  font-weight: bold;
  margin-top: 10px;
}

.happens-in-work-button .shadow-img {
  width: 30%;
  margin-bottom: -33px;
  pointer-events: none;
  background-image: url(../img/button-shadow.png);
}

.happens-in-work-button {
  text-align: center;
  margin-bottom: 50px;
}

.happens-in-work-button a {
  padding: 5px 15px;
  background: var(--dark-gray);
  color: var(--white);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.associates {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.each-associate {
  width: 6.3%;
  margin-right: 1.5%;
  margin-bottom: 10px;
}

.each-associate img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.each-associate:nth-child(13n) {
  margin-right: 0;
}

.menu-item-has-children {
  position: relative;
}

.post-text {
  padding-right: 80px;
}

.sub-menu {
  opacity: 0;
  transition: all ease 0.3s;
  pointer-events: none;
  top: 40px;
  /*  right: 0;*/
  background-color: var(--white);
  padding: 10px 0;
  z-index: 999;
  width: 225px;
  position: absolute;
}

.sub-menu .sub-menu {
  position: inherit;
  top: 0;
  padding-left: 15px;
  padding-top: 0;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}

.sub-menu li a {
  padding: 10px;
  display: block;
  color: #444444;
}

.sub-menu li {
  margin-left: 0 !important;
  padding: 0;
}

.sub-menu li:hover {
  background-color: #dfdfdf;
}

.sub-menu li:before {
  display: none;
}

footer .sub-menu {
  display: none;
}

.gallery-text {
  font-size: 16px;
  margin-top: 90px;
}

.our-place-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
}

.each-photo {
  width: 31%;
  margin-right: 1%;
  margin-left: 1%;
  margin-bottom: 30px;
}

.each-photo img {
  width: 100%;
}

.chambers-text {
  padding: 0px;
  font-size: 19px;
}

.chambers-text ul {
  padding-left: 20px;
  margin-top: 50px;
}

.chambers-text ul li {
  margin-bottom: 15px;
  /*  font-weight: 700;*/
}

.directors-text,
.privacy-policy-text,
.associates-content {
  padding: 0;
}

.directors-text h2 {
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 30px;
}

.directors-info h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 30px;
}

.directors-group {
  padding-left: 50px;
  margin-bottom: 30px;
}

.directors-group h4 {
  font-size: 18px;
  font-weight: 700;
}

.directors-group li {
  font-size: 15px;
  margin-bottom: 5px;
}

.directors-group li i {
  font-size: 11px;
  margin-right: 10px;
}

.privacy-policy-text {
  padding-left: 20px;
}

.privacy-policy-text ul li {
  list-style: decimal !important;
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--black);
}

.associates-content h3 {
  font-size: 28px;
  font-weight: bold;
}

.associates-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 50px;
}

.associates-list .each-associate {
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
  padding: 20px;
  background: #e9e9e9;

  position: relative;
}

.associates-list .each-associate {
  position: relative;
  padding-bottom: 35px;
  /* espaço pra sombra */
}

.associates-list .each-associate::after {
  content: "";
  position: absolute;
  bottom: -4px;
  /* agora fica dentro */
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  height: 20px;

  background: url("https://sopesp.com.br/2026/wp-content/uploads/2025/12/sombras.png")
    center bottom / contain no-repeat;
}

.associates-list .each-associate .assosiate-info {
  text-align: left;
}

.associates-list .each-associate img {
  width: 100%;
  max-width: 150px;
  max-height: 150px;
  min-height: 150px;
  height: 100%;
  object-fit: contain;
  margin-bottom: 30px;
  background: white;
}

.associates-list .each-associate p {
  margin: 0;
  font-size: 15px;
}

.associates-list .each-associate p a {
  color: var(--black);
  font-weight: 700;
}

.assosiate-info h4 {
  font-size: 18px;
  font-weight: bold;
}

.associates-content-text {
  margin-bottom: 50px;
}

.blog {
  width: 100%;
  border: 0;
  flex-wrap: wrap;
  /*  display: flex;*/
  justify-content: space-between;
}

.blog .each-news {
  width: 48%;
}

.blog .each-news:last-child {
  margin-bottom: 40px;
}

.signup-form {
  padding: 20px;
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--primary);
  padding: 5px 9px;
  font-size: 16px;
  margin-bottom: 12px;
  resize: none;
}

.signup-form input:focus,
.signup-form textarea:focus {
  outline: 0;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: var(--black);
}

.signup-form textarea {
  height: 200px;
}

.signup-form input[type="checkbox"],
.signup-form input[type="submit"] {
  width: auto;
}

.signup-form input[type="submit"] {
  border: 0;
  background-color: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 30px;
  display: block;
  margin-left: auto;
  margin-top: 20px;
}

.blog .each-news img {
  display: none;
}

.blog .each-news {
  width: 45%;
}

.blog .each-news-info {
  max-width: 100%;
}

.paginate a {
  padding: 5px 17px 5px 12px;
  color: black;
  font-size: 14px;
  position: relative;
}

.paginate span {
  padding: 5px 17px 5px 12px;
  color: black;
  font-size: 14px;
  position: relative;
}

.paginate span:before,
.paginate a:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 18px;
  top: 50%;
  background-color: var(--black);
  right: 0px;
  transform: translateY(-50%);
}

.paginate span {
  font-weight: 700;
}

.paginate a:last-child:before {
  display: none;
}

.latest-news-list a {
  color: var(--black);
}

.event-month {
  margin: 30px 0 100px;
  display: none;
  background: #f6f6f6;
  padding: 20px;
}

.initial-month {
  display: block;
}

.event-month h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 28px;
}

.event-month a {
  display: block;
  color: var(--black);
  margin-bottom: 50px;
}

.home-news-title {
  font-size: 15px;
  padding: 0px 20px;
}

.who {
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}

.conteudo-who {
  position: relative;
  width: 100%;
  display: flex;
}

.conteudo-who img {
  width: 176px;
  height: 265px;
  margin-right: 20px;
  object-fit: cover;
}

.who h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.who p {
  font-size: 14px;
}

.menu-mobile,
.mobile-menu {
  display: none;
}

.open-submenu {
  display: block !important;
}

/* MOBILE */

@media (max-width: 1399px) {
  .left-shadow {
    top: -31px;
    left: 0px;
  }

  .title-container,
  .courses-list-container,
  .subscription,
  .courses-description-container,
  .who {
    padding: 0px;
  }

  .courses-description {
    padding: 15px 0px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .associates-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1199px) {
  .left-shadow {
    top: -16px;
  }

  .each-associate {
    width: 10.3%;
  }

  .blog .each-news {
    width: 100%;
    margin-bottom: 50px;
    align-items: center;
  }

  .syndicate-text {
    padding: 30px;
  }

  .most-viewed {
    display: none;
  }

  .home-news-list {
    width: 100%;
  }

  .home-right {
    width: 48%;
  }

  .home-left {
    width: 60%;
  }

  .home-left-img {
    display: none;
  }

  .nav-footer {
    display: none;
  }

  .footer-content {
    justify-content: center;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    background: #000000e3;
    width: 320px;
    height: 100vh;
    z-index: 99;
    padding: 80px 40px;
    transition: all ease 0.3s;
    transform: translateX(100%);
  }

  .sub-menu {
    opacity: 1;
    position: initial;
    background-color: transparent;
    pointer-events: initial;
  }

  .header-nav {
    display: none;
  }

  .menu-mobile,
  .mobile-menu {
    display: block;
  }

  .sub-menu {
    display: none;
  }

  .menu_header li i {
    display: inline-block;
  }

  .menu_header {
    display: block;
  }

  .menu_header li a {
    color: var(--white);
    opacity: 1;
  }

  .menu-mobile-close {
    position: absolute;
    right: 30px;
    top: 50px;
    padding: 5px;
    cursor: pointer;
  }

  .menu-mobile-close i {
    font-size: 18px;
    color: var(--white);
  }

  .show {
    transform: translateX(0);
  }

  .menu_header li:before {
    display: none;
  }

  .menu_header li:not(:first-child) {
    margin: 0;
  }

  .auth-button {
    padding: 10px 20px;
    margin: 0 10px;
  }

  .auth-container {
    justify-content: center;
  }

  .header-content {
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  section.legislacoes,
  section.planejamento-estrategico,
  section.boletim {
    padding-top: 50px !important;
  }

  .planejamento-estrategico .titulo_borda {
    left: auto;
    border-radius: 20px 20px 0 0;
  }

  .planejamento-estrategico .borda_tabela {
    border-radius: 0 0 20px 20px;
  }

  .menu-menu_principal-container {
    overflow: scroll;
    height: 100%;
  }

  .sub-menu li:hover {
    background-color: transparent !important;
  }

  .title-content span {
    padding-left: 40px;
  }

  .iframe-BI {
    height: 400px !important;
  }

  .filter-content select {
    width: 300px;
  }

  .associates-content {
    padding: 0px;
    padding-top: 50px;
  }

  .filter-container {
    display: inherit;
  }

  .filter-content {
    display: inherit;
  }

  .footer-shadow {
    width: 100%;
  }

  .title-content {
    margin-bottom: 50px;
  }

  .title-content:before {
    right: inherit;
    width: auto;
  }

  .conteudo-who {
    flex-direction: column;
  }

  .conteudo-who div {
    order: 0;
    margin-bottom: 20px;
  }

  .conteudo-who img {
    order: 2;
  }

  .contact-content {
    display: block;
    padding: 0;
  }

  .sobesp-information {
    display: block;
  }

  .each-home-news {
    margin: 0;
    margin-bottom: 30px;
  }

  .home-right,
  .home-left {
    width: 100%;
  }

  .menu-mobile {
    font-size: 25px;
    cursor: pointer;
  }

  .home-left {
    border: 0;
  }

  .home-news-list {
    flex-wrap: wrap;
  }

  .each-home-news {
    width: 100%;
  }

  .form,
  .contact-info {
    width: 100%;
  }

  .form {
    margin-bottom: 70px;
  }

  .contact-info h2 {
    max-width: 100%;
  }

  .left-shadow {
    top: -43px;
    left: 23px;
  }

  .news-container {
    display: block;
  }

  .news-list,
  .aside {
    width: 100%;
    border: 0;
  }

  .news-list {
    margin-bottom: 50px;
  }

  .each-news-info {
    max-width: 100%;
    text-align: center;
  }

  .aside,
  .post-text {
    padding: 0;
    padding-top: 20px;
  }

  .each-news img {
    display: none;
  }

  table td {
    padding-right: 5px;
    font-size: 13px;
  }

  .syndicate {
    display: block;
  }

  .syndicate-img,
  .syndicate-text {
    width: 100%;
  }

  .syndicate-text,
  .about-content {
    padding: 0;
  }

  .syndicate-text {
    margin: 40px 0;
  }

  .each-photo {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .chambers-text ul,
  .directors-info h3,
  .directors-group {
    padding: 0;
  }

  .directors-text h2 {
    font-size: 25px;
  }

  .directors-info h3 {
    font-size: 20px;
  }

  .presidents-content {
    padding: 0;
  }

  .each-president {
    width: 48%;
    margin: 0 1%;
    margin-bottom: 40px;
  }

  .banner img {
    height: 350px;
  }

  .associates-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .left-shadow {
    top: -25px;
    left: 0px;
  }

  .each-home-news {
    display: block;
  }

  .home-news-img img {
    width: 100%;
    margin: 0;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
  }

  .blog .each-news {
    display: block;
    text-align: center;
  }

  .blog .each-news img {
    margin-bottom: 20px;
  }

  .each-news-info a {
    margin-right: auto;
  }

  .events-content button {
    margin-bottom: 20px;
  }

  .title-container,
  .courses-list-container,
  .subscription,
  .courses-description-container {
    padding: 0px;
  }

  .courses-list-container h3 {
    font-size: 20px;
  }

  table td {
    padding-bottom: 20px;
  }

  .courses-description-container,
  .form-course-container {
    display: block;
  }

  .courses-description-content,
  .courses-document,
  .radio-options,
  .inputs-container {
    width: 100%;
  }

  .radio-options {
    margin-bottom: 30px;
  }

  .associates-list .each-associate {
    width: 100%;
  }

  .each-president {
    width: 100%;
    margin: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .left-shadow {
    display: none;
  }

  .footer-img {
    display: block;
    text-align: center;
  }

  .footer-img img {
    margin: 0;
    margin-bottom: 10px;
  }

  .each-associate {
    width: 48%;
  }
}

/***************************************************************************

  Tabela

***************************************************************************/

div.tabela {
  overflow: auto;
}

table {
  width: 100%;
}

table th,
table td {
  padding: 10px 20px;
}

table thead {
  background: var(--cor-vermelho);

  border-top-right-radius: 5px;

  border-top-left-radius: 5px;

  /*    display: table-caption;*/
}

table thead th {
  color: var(--cor-branco);

  font-family: var(--font-poppins);

  font-weight: 900;

  font-size: 18px;
}

table tbody td,
table tbody td a,
table tbody td a b {
  font-family: var(--font-poppins);

  font-weight: var(--font-regular);

  font-size: 18px;

  color: var(--cor-cinza-claro);
}

table tbody td a b {
  font-weight: var(--font-semibold);
}

table tbody tr:nth-child(2n + 2) {
  background: #9b9b9b3b;
}

.login label {
  font-size: 13px !important;
}

/*.rgcpf input{
  background: red;
}*/
.rgcpf:before {
  content: "Escolher Arquivo";
  position: absolute;
  left: 0;
  padding: 5px 0px;
  background: #3293c4;
  color: #fff;
  width: 133px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  top: -5px;
}

.rgcpf > input {
  visibility: hidden;
}

.titulo_borda {
  background: #cf6464 !important;
  color: #fff;
  padding: 10px 0 1px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  left: -50px;
  border-radius: inherit !important;
}

.btn-info {
  background: #2f7f90 !important;
}

.borda_tabela {
  background: #dadada;
  padding: 50px;
  border: 1px solid #dadada;
  border-radius: inherit !important;
}

/******************************************
    Legislações
******************************************/

section.legislacoes {
  padding-top: 200px;
}

section.legislacoes.atuais,
section.boletim {
  padding: 100px 0;
}

.legislacoes .card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 30px;
  box-shadow: 0px 2px 10px 0px rgba(13, 11, 13, 0.15);
  position: relative;
  cursor: default;
  border-radius: 12px;
  height: 100%;
}

.legislacoes .card h2,
.boletim h2,
.planejamento-estrategico .borda_tabela h4 {
  font-size: 22px;
  color: var(--black);
  font-weight: 600;
  text-shadow: 0.5px 0.5px 0.5px var(--black);
  margin-bottom: 25px;
}

.legislacoes .card .btn-blue {
  width: 100%;
  position: absolute;
  background-color: var(--primary);
  bottom: -10px;
  left: 0;
  border-radius: 0 0 12px 12px;
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.legislacoes.atuais .card {
  align-items: start;
  justify-content: start;
}

.legislacoes.atuais .card .date {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 12px 0 12px;
  background-color: var(--primary);
  padding: 5px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.legislacoes.atuais .card .card-content {
  display: flex;
  flex-direction: column;
}

.legislacoes.atuais .card .card-content h2 {
  margin-bottom: 3px;
}

.legislacoes.atuais .card .card-content p {
  margin-bottom: 25px;
}

/******************************************
    Planejamento Estratégico
******************************************/

section.planejamento-estrategico {
  padding: 100px 0;
}

section.planejamento-estrategico .col-12:last-child {
  margin-bottom: 0 !important;
}

.planejamento-estrategico .planejamento-shadow {
  height: 0;
}

.planejamento-estrategico .borda_tabela {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.planejamento-estrategico .borda_tabela h4 {
  margin-bottom: -10px;
}

/******************************************
    Boletim
******************************************/

.boletim h2 {
  font-size: 25px;
}

.boletim h4 {
  font-size: 20px;
  margin-bottom: 2px;
}

.boletim .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boletim .item h4 {
  position: relative;
  z-index: 1;
  margin-bottom: -15px;
}

.boletim .slick-next,
.boletim .slick-prev {
  position: absolute;
  z-index: 7;
  top: 45%;
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: 12px;
  border-radius: 50%;
  background-color: rgb(25, 25, 25, 0.451);
  border: none;
  color: transparent;
  background-repeat: no-repeat;
  background-image: url(https://sopesp.com.br/wp-content/uploads/2025/02/seta-carrossel.png);
}

.boletim .slick-prev {
  left: -5px;
  transform: rotate(180deg);
}

.boletim .slick-next {
  right: -5px;
}

/*************************************************************************
**************************************************************************
                2026
**************************************************************************
***************************************************************************/
.slide-1 {
  background-image: url(https://sopesp.com.br/2026/wp-content/uploads/2025/12/banner1.png);
}

.slide-2 {
  background-image: url(https://sopesp.com.br/2026/wp-content/uploads/2025/12/4-1.png);
}

.slide-content {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  color: #fff;

  text-align: left;

  max-width: 800px;

  width: 100%;

  padding: 0 2rem;
}

.slide-content h1 {
  text-transform: uppercase;

  line-height: 1.2;

  font-weight: 700;
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);

  margin-bottom: 20px;
}

/* Ajuste para telas menores */

@media (max-width: 768px) {
  .slide {
    height: 390px;
  }

  .sombra {
    top: -15px !important;
  }

  .slide-content {
    text-align: center;

    padding: 0 1.5rem;
  }

  .slide-content h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
}

/* Evita que o texto ultrapasse a área visível do slide */

.owl-carousel .slide {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-content button {
  font-size: 25px;

  text-transform: uppercase;

  font-weight: bolder;

  padding: 10px 25px;

  border: none;
}

.owl-dots {
  width: 100%;

  text-align: center;

  position: absolute;

  bottom: 1%;
}

.owl-dots span {
  width: 20px !important;

  height: 20px !important;
}

.owl-dots button {
  border: none !important;

  outline: none !important;
}

.owl-nav button {
  border: none !important;

  outline: none !important;
}

.owl-prev,
.owl-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  color: #fff !important;

  font-size: 65px !important;

  font-weight: bolder !important;

  background: none !important;
}

.owl-prev {
  left: 1%;
}

.owl-next {
  right: 1%;
}

#banner_interno {
  height: 70px;
  background-image: url(https://sopesp.com.br/wp-content/uploads/2026/04/Layer-13-2-1.png);
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 20px;
  background-size: cover;
}

#banner_interno h3 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #d2d2d2;
  padding-left: 30px;
}

#banner_interno h2 {
  color: #fff;

  font-size: 35px;

  margin-bottom: 0;
}

.btn-container {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Base */
.btnv {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  transition: filter 0.2s ease;
  font-size: 15px;
}

.btnv:hover {
  filter: brightness(1.1);
}

/* Login */
.btn-login {
  background-color: #2f7f90;
}

/* Associe-se */
.btn-associe {
  background-color: #cf6464;
  padding-right: 18px;
}

/* Texto */
.btn-associe .text {
  margin-right: 16px;
  white-space: nowrap;
}

/* Área dos ícones */
.btn-associe .icons {
  display: block;
  width: 60px;
  height: 10px;
  background-image: url("https://sopesp.com.br/wp-content/uploads/2026/04/icone-btn.png");
  background-repeat: repeat-x;
  background-size: contain;
}

/**************************************************************************
***************************************************************************
***************************************************************************

	Home | SOPESP informa

**************************************************************************
**************************************************************************
***************************************************************************/
#informa-sopesp {
  background: url(https://sopesp.com.br/wp-content/uploads/2026/04/bgsede.png)
    center/cover no-repeat;
  padding: 40px;
  color: #d2d2d2;
  /* position: relative;
  top: -50px;
  margin-bottom: -50px; */
}

#informa-sopesp .titulo {
  font-size: 20px;
  margin-bottom: 30px;
  color: #d2d2d2;
  letter-spacing: 5px;
}

#noticias-sopesp article.noticia {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

/* 4 cards + 3 separadores */
.noticias-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 32px;
  align-items: start;
}

/* 3 cards + 3 separadores + newsletter (comunicados) */
.comunicados-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 32px;
  align-items: start;
}

/* evita overflow/coluna fantasma por conteúdo */
.noticias-grid > *,
.comunicados-grid > * {
  min-width: 0;
}

.noticia img {
  width: 100%;
  height: 125px;
  object-fit: contain;
}

#informa-sopesp p,
#informa-sopesp a {
  font-size: 13px;
  color: #d2d2d2;
}

#informa-sopesp p {
  margin-top: 15px;
}

.mais-lidas h5 {
  font-weight: 600;
  color: #d2d2d2;
  margin-bottom: 15px;
}

/* separador SEM sair do container */
.sep {
  top: 70px;
  position: relative;
  width: 40px;
  min-height: 100px;
  background: url(https://sopesp.com.br/wp-content/uploads/2026/04/lateralazul.png)
    center / contain no-repeat;
}

/* Responsivo */
@media (max-width: 991px) {
  .noticias-grid,
  .comunicados-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sep {
    display: none;
  }
}

@media (max-width: 575px) {
  .noticias-grid,
  .comunicados-grid {
    grid-template-columns: 1fr;
  }
}

.newsletter input {
  width: 100%;
  height: 40px;
  border: 1px solid #d2d2d2;
  border-radius: inherit !important;
  background: transparent;
  padding: 15px;
}

::placeholder {
  color: #d2d2d2 !important;
  opacity: 1 !important;
}

.btnenviar {
  background-color: #393d40;
  background: #393d40;
  color: #d2d2d2;
  border: solid 2px #393d40;
  text-align: center;
  width: 100%;
  height: 40px;
  margin-top: 15px;
}

/**************************************************************************
***************************************************************************
***************************************************************************

	Home | SOPES noticas

**************************************************************************
**************************************************************************
***************************************************************************/
#noticias-sopesp {
  background: url(https://sopesp.com.br/wp-content/uploads/2026/03/bgnoticias.png)
    center/cover no-repeat;
  padding: 40px;
  padding-bottom: 60px;
  color: #d2d2d2;
  /* position: relative;
  top: -55px;
  margin-bottom: -54px; */
}

#noticias-sopesp .titulo {
  font-size: 20px;
  margin-bottom: 30px;
  color: #d2d2d2;
  letter-spacing: 5px;
}

/* 4 cards + 3 separadores */
.noticias-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 32px;
  align-items: start;
}

/* 3 cards + 3 separadores + newsletter (comunicados) */
.comunicados-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 32px;
  align-items: start;
}

/* evita overflow/coluna fantasma por conteúdo */
.noticias-grid > *,
.comunicados-grid > * {
  min-width: 0;
}

.noticia img {
  width: 100%;
  height: 125px;
  object-fit: cover;
}

#noticias-sopesp p,
#noticias-sopesp a {
  font-size: 13px;
  color: #d2d2d2;
}

#noticias-sopesp p {
  margin-top: 15px;
}

.mais-lidas h5 {
  font-weight: 600;
  color: #d2d2d2;
  margin-bottom: 15px;
}

/* separador SEM sair do container */
.sep {
  top: 70px;
  position: relative;
  width: 40px;
  min-height: 100px;
  background: url(https://sopesp.com.br/wp-content/uploads/2026/04/lateralazul.png)
    center / contain no-repeat;
}

/* Responsivo */
@media (max-width: 991px) {
  .noticias-grid,
  .comunicados-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sep {
    display: none;
  }
}

@media (max-width: 575px) {
  .noticias-grid,
  .comunicados-grid {
    grid-template-columns: 1fr;
  }
}

.sombra {
  width: 100%;
  height: 20px;
  /* controla o quanto a sombra aparece */
  position: relative;
  top: -2px;
  background-image: url("https://sopesp.com.br/2026/wp-content/uploads/2025/12/sombras.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  /* centro horizontal, embaixo */
  background-size: contain;
  /* ajusta a sombra dentro da div */
  z-index: 2;
  margin: 0 auto;
}

/* Ajuste para telas menores */

@media (max-width: 768px) {
  .slide {
    height: 390px;
  }

  .sombra {
    top: -25px;
  }

  .slide-content {
    text-align: center;

    padding: 0 1.5rem;
  }

  .slide-content h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
}

/**************************************************************************
***************************************************************************
***************************************************************************

	Home | SOPESP calendário

**************************************************************************
**************************************************************************
***************************************************************************/
#calendario-sopesp h3,
h4,
h2 {
  color: #444444;
}

#calendario-sopesp {
  background: #fff;
  padding: 40px;
  position: relative;
}

#calendario-sopesp .titulo {
  font-size: 20px;
  margin-bottom: 30px;
  color: #3e3e3e;
  letter-spacing: 5px;
}

#calendario-sopesp p,
#calendario-sopesp a {
  font-size: 13px;
  color: #3e3e3e;
}

#calendario-sopesp {
  margin-top: 15px;
}

.mais-lidas h5 {
  font-weight: 600;
  color: #3e3e3e;
  margin-bottom: 15px;
}

.bg-wrapper {
  min-height: 100vh;
  background: url(https://sopesp.com.br/wp-content/uploads/2026/03/BG-scaled.png)
    center top / cover no-repeat;
}

.owl-dot.active span {
  background: #fff !important;
}

.owl-dot span {
  width: 25px;
  height: 25px;
  background: #cfcfcf56;
  border-radius: 50%;
  display: block;
  transition: background 0.3s;
  margin: 0;
  top: 0;
  position: static;
  margin-right: 15px;
}

/**************************************************************************
***************************************************************************
***************************************************************************

	QUEM SOMOS / QUÉM É QUEM

**************************************************************************
**************************************************************************
***************************************************************************/

.card-presidente {
  height: 250px;
  /* altura fixa */
  background-color: #e5e5e5;
  overflow: hidden;
}

/* imagem */
.card-presidente-img {
  width: 35%;
  min-width: 180px;
}

.card-presidente-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* mantém proporção */
  padding: 15px;
}

/* conteúdo */
.card-presidente-content {
  width: 65%;
  padding: 24px;
  overflow-y: auto;
  /* se o texto crescer, scroll interno */
}

.card-presidente-content h3 {
  font-size: 18px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.card-presidente-content strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.card-presidente-content p {
  font-size: 13px !important;
  line-height: 1.4;
  margin-bottom: 8px;
}

/**************************************************************************
***************************************************************************
***************************************************************************

	Home | SOPESP marcas

**************************************************************************
**************************************************************************
***************************************************************************/
.sede-img {
  height: 500px !important;
  /* object-fit: cover !important; */
}

#sede-carousel .owl-nav button {
  color: #cfcfcf !important;
  font-size: 32px;
}

#sede-carousel .owl-dot.active span {
  background: #007b8f;
  position: relative;
  top: 70px;
}

#sede-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px;
  background: #cfcfcf;
  border-radius: 50%;
  display: block;
  transition: background 0.3s;
  position: relative;
  top: 70px;
}

#marcas-sopesp .owl-dots {
  display: none;
}

#marcas-sopesp {
  background: #fff;
  padding: 40px;
  position: relative;
  padding-bottom: 100px;
}

#marcas-sopesp .owl-carousel .owl-item img {
  display: block;
  aspect-ratio: 1/1;
  max-height: 150px;
  object-fit: contain;
}

#marcas-sopesp .titulo {
  font-size: 20px;
  margin-bottom: 30px;
  color: #3e3e3e;
}

#marcas-sopesp h3 {
  color: #444444 !important;
}

#marcas-sopesp p,
#marcas-sopesp a {
  font-size: 16px;
  color: #3e3e3e;
}

#marcas-sopesp {
  margin-top: 15px;
}

#marcas-sopesp video {
  width: 100%;
  max-height: 600px;
}

.mais-lidas h5 {
  font-weight: 600;
  color: #3e3e3e;
  margin-bottom: 15px;
}

.sepvr {
  top: 50px;
  position: relative;
  width: 100%;
  min-height: 220px;
  background: url(https://sopesp.com.br/2026/wp-content/uploads/2025/12/linhan.png)
    center / contain no-repeat;
}

#projetos-carousel .owl-prev span,
#projetos-carousel .owl-next span {
  color: #cfcfcf;
  /* cinza */
  font-size: 70px;
  /* tamanho da seta */
  line-height: 1;
  transition: color 0.2s ease;
}

#projetos-carousel .owl-prev:hover span,
#projetos-carousel .owl-next:hover span {
  color: #999;
  /* cinza mais escuro no hover */
}

/**************************************************************************
***************************************************************************
***************************************************************************
GALERIA DE PRESIDENTES

**************************************************************************
**************************************************************************
***************************************************************************/

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 970px;
  margin: 0px auto 0;
  position: relative;
  top: 330px;
}

/* linha */
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #457d8f;
  transform: translateY(-50%);
}

/* dots */
.timeline .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #444444;
  border: 3px solid #457d8f;
  z-index: 2;
  opacity: 0.4;
}

/* ativo */
.timeline .dot.active {
  opacity: 1;
  background: #1bb1c9;
}

#presidentes-carousel .owl-nav button {
  color: #457d8f !important;
  font-size: 32px;
}

#presidentes-carousel .owl-nav button:hover {
  color: #2f5c6a !important;
  /* opcional */
}

.president-img {
  object-fit: cover !important;
  width: 100% !important;
}

.president-txt {
  margin-top: 50px;
}

.president-txt h3 {
  font-size: 16px;
  font-weight: 600;
}

.president-txt p {
  font-size: 13px !important;
  margin: 0 !important;
}

/* ===== FOOTER BASE ===== */
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* ===== BLOCO ESQUERDA (logo + infos) ===== */
footer .footer-img {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .footer-img img {
  max-width: 160px;
  height: auto;
}

footer .footer-info {
  font-size: 14px;
  line-height: 1.5;
}

/* ===== MENU + REDES ===== */
footer .nav-footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* menu */
footer .menu_header {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

footer .menu_header li a {
  text-decoration: none;
}

/* redes */
footer .social-icons {
  display: flex;
  gap: 10px;
}

footer .social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f6f7a;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  transition: 0.2s;
}

footer .social-icons a:hover {
  transform: scale(1.1);
}

/* ========================= */
/* 📱 RESPONSIVO */
/* ========================= */
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  footer .footer-img {
    flex-direction: column;
  }

  footer .footer-info {
    text-align: center;
  }

  footer .nav-footer {
    flex-direction: column;
    gap: 18px;
  }

  footer .menu_header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  footer .social-icons {
    justify-content: center;
  }
}

.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
}

.play:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
