/* ========================================
   Inter Me - Custom Styles
   ======================================== */

/* Variables */
:root {
    --primary-color: #741537;
    --secondary-color: #cd964e;
    --tertiary-color: #f6f5f2;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --black: #000000;
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: justify;
}

/* Exceções para textos não justificados */
.timeline-card p,
.timeline-info p,
.timeline-info li {
    text-align: left;
}

.solucao-card p,
.solucao-desc,
.section-subtitle,
.section-header p,
.cta-box p,
.cta-text {
    text-align: center;
}

.depoimento-text p {
    text-align: left;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   NAVBAR - Menu Fixo Claro
   ======================================== */
#mainNav {
    padding: 0.75rem 0;
    transition: var(--transition);
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition);
}

.logo-white {
    display: none;
}

.logo-black {
    display: block !important;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-item-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: var(--transition);
}

.lang-btn:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn.active {
    filter: grayscale(0) !important;
    opacity: 1 !important;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--tertiary-color);
}

.btn-contact {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border-radius: var(--border-radius-sm);
    margin-left: 0.5rem;
}

.btn-contact:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.btn-contact::after {
    display: none;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28116, 21, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('../images/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(0, 0, 0, 0.0) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.btn-hero {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    transition: var(--transition);
}

.btn-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator a:hover {
    background: var(--white);
    color: var(--primary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SECTION CLÁUDIA DEMÉTRIO
   ======================================== */
.section-claudia {
    background: var(--tertiary-color);
}

.claudia-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.claudia-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.claudia-photo {
    border-radius: var(--border-radius);
    width: 100%;
    object-fit: cover;
}

.claudia-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.claudia-bio strong {
    color: var(--primary-color);
}

.claudia-quote {
    background: linear-gradient(135deg, var(--primary-color), #9a2a4d);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    position: relative;
}

.claudia-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.claudia-quote p {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.signature-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.signature-social {
    display: flex;
    gap: 0.75rem;
}

.signature-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.signature-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Timeline Section */
.timeline-section {
    border-top: 1px solid rgba(116, 21, 55, 0.1);
}

.timeline-carousel {
    padding: 2rem 0;
}

.timelineSwiper {
    padding: 2rem 3rem 4rem;
}

.timeline-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: left;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-year {
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.timeline-logo {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.timeline-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.timeline-info {
    width: 100%;
    text-align: left;
}

.timeline-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: left;
}

.timeline-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    text-align: left;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* ========================================
   SECTION INTER ME
   ======================================== */
.section-interme {
    background: var(--white);
}

.about-content {
    max-width: 100%;
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-content .highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(116, 21, 55, 0.05), rgba(205, 150, 78, 0.1));
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 2rem 0;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-loop {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* Remove video controls styling */
.video-loop::-webkit-media-controls {
    display: none !important;
}

.video-loop::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-loop::-webkit-media-controls-panel {
    display: none !important;
}

/* Pilares */
.pilares-section {
    background: var(--tertiary-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.pilar-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
    background: #bc7177;
}

.pilar-card:hover {
    transform: translateY(-5px);
}

.pilar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pilar-card p,
.pilar-card li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--white);
}

/* Todos os pilares com a mesma cor */
.pilar-proposito,
.pilar-visao,
.pilar-missao,
.pilar-valores {
    background: #bc7177;
    color: var(--white);
}

.pilar-proposito .pilar-title,
.pilar-visao .pilar-title,
.pilar-missao .pilar-title,
.pilar-valores .pilar-title {
    color: var(--white);
}

.pilar-proposito p,
.pilar-visao p,
.pilar-missao p {
    color: var(--white);
}

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

.valores-list li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--white);
}

.valores-list li strong {
    color: var(--white);
}

/* Dores Section */
.dores-section {
    background: var(--tertiary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-top: 3rem;
}

.dores-content .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.dores-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.dores-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.dores-list li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.solution-box {
    background: linear-gradient(135deg, var(--primary-color), #9a2a4d);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
}

.solution-box p {
    color: var(--white);
    margin: 0;
    font-size: 1.05rem;
}

.dores-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dores-image-wrapper img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos-section {
    background: var(--black);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-top: 3rem;
}

.depoimentos-section .section-tag {
    color: var(--white);
}

.depoimentos-section .section-title {
    color: var(--white);
}

.depoimentosSwiper {
    padding: 2rem 1rem 4rem;
}

/* Bullets dourados para depoimentos */
.depoimentosSwiper .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.5;
}

.depoimentosSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

.depoimento-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.depoimento-stars {
    margin-bottom: 1rem;
}

.depoimento-stars i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-right: 2px;
}

.depoimento-text {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.depoimento-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.depoimento-author h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.depoimento-author span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.depoimento-destaque {
    background: var(--white);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.depoimento-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.depoimento-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.depoimento-header span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========================================
   SECTION SOLUÇÕES
   ======================================== */
.section-solucoes {
    background: var(--tertiary-color);
}

.coming-soon-box {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.coming-soon-box i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.coming-soon-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coming-soon-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   SECTION CONTATO
   ======================================== */
.section-contato {
    background: var(--white);
}

.contact-box {
    background: var(--tertiary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.85rem 1rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    background: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 21, 55, 0.1);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
}

.footer-logo {
    height: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--border-radius-sm);
        margin-top: 1rem;
        box-shadow: var(--shadow);
    }

    .navbar-transparent .navbar-collapse .nav-link {
        color: var(--text-dark);
    }

    .navbar-transparent .navbar-collapse .nav-link:hover {
        color: var(--primary-color);
    }

    .pilares-section {
        padding: 2rem 1rem;
    }

    .dores-section {
        padding: 2rem;
    }

    .depoimentos-section {
        padding: 2rem;
    }

    .contact-box {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .claudia-image-wrapper::before {
        display: none;
    }

    .pilar-card {
        padding: 1.5rem;
    }

    .timeline-card {
        min-height: 280px;
    }

    .depoimento-card {
        min-height: 320px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-title br {
        display: none;
    }

    .btn-hero {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-content .highlight-text {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .claudia-quote {
        padding: 1.5rem;
    }

    .claudia-quote::before {
        font-size: 3rem;
    }

    .solution-box {
        padding: 1.25rem 1.5rem;
    }

    .coming-soon-box {
        padding: 2rem 1.5rem;
    }

    .contact-box {
        padding: 1.5rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-tertiary {
    background-color: var(--tertiary-color) !important;
}

/* ========================================
   SECTION SOLUÇÕES - CARDS
   ======================================== */
.solucao-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solucao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.solucao-card.active {
    border: 2px solid var(--primary-color);
}

.solucao-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #9a2a4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucao-icon i {
    font-size: 2rem;
    color: var(--white);
}

.solucao-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.solucao-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    flex: 1;
    margin-bottom: 1.5rem;
}

.btn-saiba-mais {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-saiba-mais:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-saiba-mais.active {
    background: var(--primary-color);
    color: var(--white);
}

.btn-saiba-mais.active i {
    transform: rotate(180deg);
}

.btn-saiba-mais i {
    transition: var(--transition);
}

/* ========================================
   SEÇÕES EXPANDÍVEIS
   ======================================== */
.section-expandivel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.section-expandivel.active {
    max-height: 2000px;
    opacity: 1;
    margin-top: 3rem;
}

.section-expandivel-inner {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
}

.section-expandivel-inner.section-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
}

.section-dark .section-tag,
.section-dark .section-title,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark .lead {
    color: var(--white);
}

.btn-close-section {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--tertiary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.btn-close-section:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-close-section.btn-close-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-close-section.btn-close-light:hover {
    background: var(--secondary-color);
}

/* ========================================
   MENTORIAS - Estilo com imagem de fundo
   ======================================== */
.mentoria-card {
    position: relative;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
}

.mentoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.mentoria-card:hover {
    transform: translateY(-5px);
}

.mentoria-card:hover::before {
    background: linear-gradient(to top, rgba(116, 21, 55, 0.9) 0%, rgba(116, 21, 55, 0.5) 100%);
}

.mentoria-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: var(--white);
}

.mentoria-content h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.mentoria-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.mentoria-content p:last-child {
    margin-bottom: 0;
}

.mentoria-content strong {
    color: var(--white);
}

.signature-text {
    font-family: 'Times New Roman', Georgia, serif;
    font-style: italic;
    letter-spacing: 2px;
}

/* ========================================
   CTA BOX
   ======================================== */
.cta-box {
    background: linear-gradient(135deg, rgba(116, 21, 55, 0.05), rgba(205, 150, 78, 0.1));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.btn-cta-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-cta-secondary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-top: 1.5rem;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   IMERSÕES
   ======================================== */
.imersao-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.imersao-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.imersao-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.imersao-content .lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.imersao-content .highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 1.5rem;
}

/* ========================================
   TREINAMENTOS
   ======================================== */
.treinamento-gallery img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.treinamento-gallery img:hover {
    transform: scale(1.02);
}

.rounded-custom {
    border-radius: var(--border-radius) !important;
}

.treinamento-content .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.programa-cap {
    background: var(--tertiary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.programa-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}

.programa-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 1rem 0 0.75rem;
}

.cap-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.cap-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.cap-list li i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* ========================================
   PALESTRAS
   ======================================== */
.palestra-card {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
}

.palestra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.palestra-card:hover {
    transform: translateY(-5px);
}

.palestra-card:hover::before {
    background: linear-gradient(to top, rgba(116, 21, 55, 0.9) 0%, rgba(116, 21, 55, 0.5) 100%);
}

.palestra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.palestra-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: var(--white);
}

.palestra-content h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.palestra-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ========================================
   LIVROS
   ======================================== */
.livro-card {
    text-align: center;
}

.livro-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.livro-badges .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.badge-autoral {
    background: var(--primary-color);
    color: var(--white);
}

.badge-lancamento {
    background: var(--secondary-color);
    color: var(--white);
}

.badge-colaboracao {
    background: var(--tertiary-color);
    color: var(--text-dark);
    border: 1px solid var(--text-light);
}

.livro-image {
    margin-bottom: 1.5rem;
}

.livro-image img {
    max-height: 450px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.livro-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-comprar,
.btn-aviso {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    border: none;
}

.btn-comprar {
    background: var(--primary-color);
    color: var(--white);
}

.btn-comprar:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-aviso {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-aviso:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Carrossel de Livros */
.livrosSwiper {
    padding: 2rem 3rem 4rem;
}

.livro-slide {
    padding: 1rem;
}

.livro-titulo {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.livro-texto {
    padding: 2rem;
}

.livro-texto .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.livro-texto p {
    color: var(--text-dark);
}

.livro-texto .quote-text {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1.5rem;
}

/* Navegação do carrossel de livros */
.livrosSwiper .swiper-button-next,
.livrosSwiper .swiper-button-prev {
    color: var(--primary-color);
}

.livrosSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
}

/* ========================================
   PODCAST
   ======================================== */
.podcast-content .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.podcast-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 2rem;
}

.btn-podcast-aviso {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-podcast-aviso:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.podcast-platforms {
    margin-top: 2rem;
}

.platforms-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 1rem;
}

.platforms-icons {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.platform-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.podcast-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.podcast-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* ========================================
   MODAIS
   ======================================== */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.modal-header {
    border-bottom: 1px solid var(--tertiary-color);
    padding: 1.5rem 2rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-form .form-control {
    padding: 0.85rem 1rem;
    border: 2px solid var(--tertiary-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.modal-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 21, 55, 0.1);
}

.btn-modal-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-modal-submit:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ========================================
   RESPONSIVE - NOVAS SEÇÕES
   ======================================== */
@media (max-width: 991.98px) {
    .section-expandivel-inner {
        padding: 2rem;
    }

    .palestra-card {
        height: 300px;
    }

    .mentoria-card {
        height: 400px;
    }

    .livro-image img {
        max-height: 280px;
    }

    .livro-texto {
        padding: 1.5rem 0;
    }

    .imersao-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .section-expandivel-inner {
        padding: 1.5rem;
    }

    .btn-close-section {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }

    .mentoria-card {
        height: 380px;
    }

    .mentoria-content {
        padding: 1.5rem;
    }

    .palestra-card {
        height: 280px;
    }

    .palestra-content {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .programa-cap {
        padding: 1.5rem;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .solucao-card {
        padding: 1.5rem;
    }

    .solucao-icon {
        width: 70px;
        height: 70px;
    }

    .solucao-icon i {
        font-size: 1.75rem;
    }

    .livro-image img {
        max-height: 250px;
    }

    .imersao-content h3 {
        font-size: 1.5rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

.mentoria-content{
  position: relative;
  padding-top: 70px; /* espaço pro título não “cair” em cima do texto */
}

.mentoria-title-top{
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  width: 100%;
  z-index: 2;
}