/* Owners Page Styles */

/* Main Content */
.main-content {
    width: 100%;
    margin-top: 90px;

    background-color: var(--bg-body-page);
}

/* Logo Section */
.logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
}

.page-logo {
    width: 103px;

}

/* Info Sections */
.info-section {
    width: 100%;
    padding: 0 185px;
    margin-top: 60px;
    box-sizing: border-box;
}

.info-section:first-of-type {
    margin-top: 100px;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: var(--font-semibold);
    color: var(--pink);
    margin: 0 0 35px 0;
    line-height: 1.2;
}

/* Section Paragraph */
.section-paragraph {
    font-size: 20px;
    font-weight: var(--font-light);
    color: var(--black);
    margin: 0 0 15px 0;
    line-height: 1.6;
    text-align: justify;
}

.section-paragraph strong {
    font-weight: var(--font-medium);
}

/* Section List */
.section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 100px;
}

.section-list li {
    font-size: 20px;
    font-weight: var(--font-medium);
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.section-list li::before {
    content: "⦁";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: var(--font-medium);
}

.section-list li:last-child {
    margin-bottom: 0;
}

/* Arrow Section */
.arrow-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding: 0 185px;
    box-sizing: border-box;
}

.arrow-icon {
    width: 54px;
    height: 22px;
    object-fit: contain;
}

/* Doubts Section */
.doubts-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px 60px;
    box-sizing: border-box;
}

.doubts-container {
    width: 1114px;
    height: 267px;
    background: rgba(250, 250, 250, 1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-sizing: border-box;
    box-shadow: 6px 6px 30px -1px rgba(0, 0, 0, 0.25);
}

.doubts-content {
    flex: 1;
    padding-right: 40px;
}

.doubts-title {
    font-size: 36px;
    font-weight: var(--font-semibold);
    color: var(--black);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.doubts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doubts-item {
    font-size: 20px;
    font-weight: var(--font-medium);
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.doubts-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}

.doubts-item:last-child {
    margin-bottom: 0;
}

.doubts-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.whatsapp-button {
    width: 218px;
    height: 55px;
    border-radius: 50px;
    border: none;
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #b8396a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 66, 120, 0.3);
}

.whatsapp-icon {
    width: 114.77px;
    height: 26.68px;
    touch-action: manipulation;
}

.contact-button {
    width: 218px;
    height: 55px;
    border-radius: 50px;
    border: 1px solid var(--pink);
    background-color: rgba(250, 250, 250, 1);
    color: var(--pink);
    font-size: 20px;
    font-weight: var(--font-medium);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--pink);
    color: var(--white);
}