/* Home Banner */
.home-banner {
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
}

.home-banner img {
    width: 100%;
    border-radius: 42px;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    z-index: 2;
}

.banner-title {
    font-family: 'Instrument Serif', serif;
    font-size: 5rem;
    line-height: 0.86;
    color: var(--gold);
    margin-bottom: 30px;
}

/* Seção Perfis */
.profiles-section {
    margin: 60px 0;
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    line-height: 1.016;
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 400;
}

.section-subtitle {
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.profile-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.profile-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.profile-card p {
    font-family: 'Onest', sans-serif;
    font-weight: 200;
    font-size: 0.8rem;
    color: #000;
    margin-bottom: 10px;
}

.profile-card .personality {
    font-family: 'Instrument Serif', serif;
    font-size: 0.8rem;
    color: var(--primary-dark);
    border-top: 0.5px solid var(--primary-dark);
    padding-top: 10px;
}

.profile-image {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.profile-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    margin: 0 5px;
}

.slide-indicator.active {
    background-color: var(--gold);
}

/* Seção de benefícios */
.benefits-section {
    margin: 60px 0;
}

.benefit-box {
    background-color: var(--burgundy);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Seção de reviews */
.reviews-section {
    margin: 60px 0;
}

.reviews-title {
    font-family: 'Instrument Serif', serif;
    font-size: 3.5rem;
    line-height: 1.033;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-subtitle {
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.233;
    text-align: center;
    margin-bottom: 40px;
}

.review-image {
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 20px;
}

.review-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 28px;
}

/* Seção de busca personalizada */
.search-section {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 40px;
    margin: 60px 0;
}

.search-title {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
}

.search-subtitle {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.search-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 30px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tag {
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 7px 15px;
    font-family: 'Instrument Serif', serif;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.tag:hover {
    background-color: rgba(244, 226, 179, 0.1);
} 