:root {
    --bg-color: #fdfbf7;
    --primary-color: #9c6644;
    --text-color: #463f3a;
    --accent-color: #7f5539;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-box {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.left-panel,
.right-panel {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.left-panel {
    text-align: left;
}

.right-panel {
    text-align: left;
}

.badge {
    display: inline-block;
    color: var(--accent-color);
    padding: 6px 16px;
    font-family: "Times New Roman", Times, serif;
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
    text-align: left;
}

h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    line-height: 1.2;
    margin-bottom: 28px;
    text-align: left;
    font-family: "Times New Roman", Times, serif;
    font-weight: normal;
}

.message {
    font-size: 1.15rem;
    margin-bottom: 20px;
    text-align: justify;
}

.address{
    font-size: 1.15rem;
    margin-top: 50px;
    text-align: center;
}

.partner-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.partner-link:hover {
    border-color: var(--primary-color);
}

.closing {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 30px;
}

.carousel-container {
    width: 100%;
    padding: 40px 20px;
    background-color: #fbf6f0;
}

.carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(70, 63, 58, 0.1);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(79, 63, 55, 0.85);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.carousel-button:hover {
    background-color: rgba(79, 63, 55, 1);
}

.carousel-button.prev {
    left: 16px;
}

.carousel-button.next {
    right: 16px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(76, 63, 58, 0.45);
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.main-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #a7a2a9;
    border-top: 1px solid #ede9e3;
}

.footer-logo {
    height: 24px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .left-panel,
    .right-panel {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .message { text-align: left; font-size: 1.05rem; }
}