body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.site-header {
    background-color: #0055a2;
    padding: 20px 0;
    width: 100%;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .header-center .logo {
        height: 48px;
    }

    .header-center .date {
        color: #ffffff;
        font-size: 12px;
    }

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.btn-anunciar {
    width: 90px;
    height: 24px;
    background-color: #fad140;
    color: #3e3e3e;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

    .btn-anunciar:hover {
        opacity: 0.9;
    }

.login-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.user-icon {
    width: 20px;
    height: 17px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .header-right {
        justify-content: center;
    }
}

/* CSS for section section:Pricing */
.main-content {
    padding: 80px 0;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 100px;
}

.section-title {
    color: #2466b3;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

.title-line {
    flex-grow: 1;
    height: 4px;
    background-color: #2466b3;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    align-items: start;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 28px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    min-height: 349px;
}

    .card.card-tall {
        min-height: 429px;
    }

.card-header {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 201px;
    height: 56px;
    background-color: #2466b3;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 20px;
    font-weight: bold;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #d6d6d6;
}

    .price-row:last-child {
        border-bottom: none;
    }

.duration {
    color: #888585;
    font-size: 18px;
}

.price-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price {
    color: #0055a2;
    font-size: 16px;
    font-weight: bold;
}

.priority {
    color: #a2a2a2;
    font-size: 12px;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    color: #2466b3;
    font-size: 14px;
    font-weight: bold;
}

.info-section {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    max-width: 1162px;
}

    .info-section p {
        margin-bottom: 24px;
    }

        .info-section p:last-child {
            margin-bottom: 0;
        }

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 60px;
    }

    .title-line {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
        white-space: normal;
    }
    .pricing h1 {
        margin: 0 0 10px;
        color: #2466b3;
        font-size: 25px;
    }
}