/*
 * CSS for Hero Slider (if using custom JS solution like Swiper.js or basic custom slider)
 * This complements custom-styles.css
 */

/* Assuming a structure like:
<div class="hero-slider-wrapper"> <!-- Kadence Row Layout block -->
    <div class="swiper-container hero-swiper"> <!-- Or your custom slider main container -->
        <div class="swiper-wrapper">
            <div class="swiper-slide hero-slide">
                <div class="kt-row-column-wrap kt-has-2-columns"> <!-- Kadence Inner Row/Columns -->
                    <div class="wp-block-kadence-column inner-column-1 kadence-column_width_50">
                        <div class="hero-quote-content">
                            <p class="quote-text">"Se estiver difícil, você continua..."</p>
                            <p class="quote-author">Lucas Battistoni – Imperial Five Stars</p>
                        </div>
                    </div>
                    <div class="wp-block-kadence-column inner-column-2 kadence-column_width_50">
                        <img src="path/to/lucas.png" alt="Lucas Battistoni" class="hero-person-image">
                    </div>
                </div>
            </div>
            <!-- More swiper-slides -->
        </div>
        <!-- Add Pagination -->
        <div class="swiper-pagination hero-swiper-pagination"></div>
        <!-- Add Navigation -->
        <div class="swiper-button-next hero-swiper-button-next"></div>
        <div class="swiper-button-prev hero-swiper-button-prev"></div>
    </div>
</div>
*/

.hero-slider-wrapper { /* The main Kadence Row Layout containing the slider */
    position: relative; /* For absolute positioning of nav/pagination */
    /* background-color: #0a2540; Dark blue gradient - set in Kadence block settings */
    overflow: hidden; /* Important for sliders */
}

.hero-slide {
    display: flex !important; /* Important for Swiper */
    align-items: center;
    justify-content: center;
    color: white;
    min-height: 60vh; /* Or match .hero-section-custom */
    padding: 20px; /* Padding inside the slide */
    box-sizing: border-box;
}

.hero-slide .kt-row-column-wrap {
    width: 100%; /* Ensure inner Kadence row takes full slide width */
}

.hero-quote-content {
    padding-right: 30px; /* Space from the image */
}
.hero-quote-content .quote-text {
    font-size: clamp(1.2rem, 4vw, 1.8rem); /* Responsive font size */
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: normal; /* Overriding italic if it's not desired for all */
}
.hero-quote-content .quote-author {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 500;
    opacity: 0.9;
}

.hero-person-image {
    max-width: 80%; /* Adjust as needed */
    height: auto;
    margin-left: auto; /* Align to right if column is larger */
    margin-right: auto; /* Center if column is exact fit */
    display: block;
    max-height: 50vh; /* Prevent image from being too tall */
    object-fit: contain;
}

/* Swiper Navigation Buttons Styling */
.hero-swiper-button-next,
.hero-swiper-button-prev {
    color: #FFA500 !important; /* Orange */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    transition: background-color 0.3s ease;
}
.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.hero-swiper-button-next::after,
.hero-swiper-button-prev::after {
    font-size: 20px !important; /* Adjust arrow size */
}

/* Swiper Pagination Dots Styling */
.hero-swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #FFA500 !important; /* Orange for active dot */
    transform: scale(1.2);
}

/* Adjust positions if needed */
.hero-swiper-button-prev { left: 20px !important; }
.hero-swiper-button-next { right: 20px !important; }
.hero-swiper-pagination {
    bottom: 30px !important;
    /* To position it under the quote, more complex positioning might be needed
       relative to the quote column, possibly using absolute positioning for the pagination
       within the left column of the slide. */
}

@media (max-width: 767px) {
    .hero-slide .kt-row-column-wrap {
        flex-direction: column-reverse; /* Image on top, then quote */
    }
    .hero-slide .wp-block-kadence-column { /* Make columns full width on mobile */
        width: 100% !important;
        min-width: 100% !important; /* Kadence might add min-width */
    }
    .hero-person-image {
        max-width: 60%;
        margin-bottom: 20px;
    }
    .hero-quote-content {
        padding-right: 0;
        text-align: center;
    }
    .hero-swiper-button-next,
    .hero-swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }
    .hero-swiper-button-next::after,
    .hero-swiper-button-prev::after {
        font-size: 16px !important;
    }
    .hero-swiper-pagination {
        bottom: 15px !important;
    }
}