
body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    margin-bottom: 48px;
    text-align: center;
}

.article-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.article-meta {
    color: var(--medium-gray);
    font-size: 17px;
    margin-bottom: 24px;
}

.article-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-content {
    font-size: 19px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 48px 0 16px;
    letter-spacing: -0.003em;
}

.article-content p {
    margin-bottom: 24px;
}

.share-section {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 32px;
    margin: 64px auto;
    text-align: center;
    max-width: 680px;
}

.share-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.share-text {
    color: var(--medium-gray);
    margin-bottom: 24px;
    font-size: 17px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-button {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.share-button i {
    margin-right: 8px;
    font-size: 16px;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.facebook {
    background-color: #1877f2;
    color: white;
}

.pinterest {
    background-color: #e60023;
    color: white;
}

.whatsapp {
    background-color: #25d366;
    color: white;
}

.twitter {
    background-color: #1da1f2;
    color: white;
}

.author-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 32px;
    margin: 64px auto;
    display: flex;
    align-items: center;
    max-width: 680px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 24px;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 17px;
    margin-bottom: 0;
}

.article-footer {
    text-align: center;
    padding: 40px 0;
    color: var(--medium-gray);
    font-size: 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: 64px;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-content {
        font-size: 17px;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }
}

.related-articles {
    background-color: #f8f9fa !important;
}

.relatedSwiper {
    padding: 15px 10px 30px;
    overflow: hidden;
}

.swiper-slide {
    padding: 5px;
    /* Espaço entre os cards */
}

.card {
    border-radius: 8px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.card-body {
    padding: 1rem;
}

.swiper-nav-btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #0066cc;
    opacity: 0;
    transition: opacity 0.3s;
}

.related-articles:hover .swiper-nav-btn {
    opacity: 1;
}

.swiper-nav-btn::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0066cc;
}

.partner-section {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  margin: 64px auto;
  max-width: 680px;
  text-align: center;
}

#recomendations {
  margin-bottom: 28px;
}

#recomendations h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

#recomendations p {
  color: var(--medium-gray);
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

.partner-grid {
  display: grid;
  gap: 24px;
}

.partner-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.partner-card img {
  object-fit: cover;
  margin-right: 20px;
  border-radius: 8px;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6px;
}

.card-header a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.location {
  font-size: 13px;
  color: var(--medium-gray);
  display: inline-flex;
  align-items: center;
}

.location i {
  margin-right: 4px;
}

.tagline {
  color: var(--medium-gray);
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-list {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 16px;
  padding-left: 18px;
  list-style-type: none;
}

.feature-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.bullet {
  position: absolute;
  left: 0;
  color: var(--primary-color);
}