/* ===== FOOTER - ESTILOS DO RODAPÉ ===== */

.partnership-section {
  background: linear-gradient(135deg, #6a1b9a, #4a148c);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partnership-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(106, 27, 154, 0.9), rgba(74, 20, 140, 0.9));
  z-index: 1;
}

.partnership-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.partnership-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.partnership-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-partnership {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.1rem;
}

.btn-partnership:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

footer {
  background: #004d80;
  color: white;
  padding: 60px 0 0 0;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.brand-text {
  font-family: 'Varela Round', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.brand-text .health {
  color: #00bcd4;
}

.brand-text .hub {
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00bcd4;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.footer-social-icons img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #00bcd4;
}

/* Footer mobile */
.footer-mobile-content {
  display: none;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact h4 {
  color: #00bcd4;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: white;
}

.footer-contact-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

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

.footer-social h4 {
  color: #00bcd4;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-social-icons i {
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.footer-social-icons img {
  width: 30px;
  height: 30px;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 480px) {

  /* Partnership section mobile */
  .partnership-section {
    padding: 40px 0;
  }

  .partnership-content {
    padding: 0 10px;
  }

  .partnership-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .partnership-content p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .btn-partnership {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Footer mobile */
  footer {
    padding: 30px 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo img {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    font-size: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-column h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-column ul li a {
    font-size: 13px;
  }

  .footer-social-icons img {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {

  /* Partnership section mobile */
  .partnership-section {
    padding: 60px 0;
  }

  .partnership-content h2 {
    font-size: 2rem;
  }

  .partnership-content p {
    font-size: 1rem;
  }

  /* Footer mobile */
  footer {
    padding: 40px 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Responsividade para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .partnership-content h2 {
    font-size: 2.2rem;
  }

  .partnership-content p {
    font-size: 1.1rem;
  }
}

/* Responsividade para telas grandes */
@media (min-width: 1025px) and (max-width: 1440px) {
  .partnership-content h2 {
    font-size: 2.8rem;
  }

  .footer-content {
    gap: 80px;
  }
}

/* Responsividade para telas extra grandes */
@media (min-width: 1441px) {

  .partnership-content h2 {
    font-size: 3rem;
  }

  .footer-content {
    gap: 100px;
  }

  .footer-links {
    gap: 60px;
  }
}