/* Variáveis */
:root {
    --primary-color: #C17F8C;
    --secondary-color: #F5E6E8;
    --text-color: #4A4A4A;
    --overlay-color: rgba(0, 0, 0, 0.4);
}

/* Estilos Gerais */
body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 80px;
    transition: all 0.3s ease;
}

.navbar-nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--text-color) !important;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size:18px;
    padding: 8px 0;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

/* Navegação - Ajustes adicionais */
.navbar-nav .nav-link {
    color: var(--text-color) !important;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar .btn-primary {
    transition: all 0.3s ease;        
    border: 2px solid var(--primary-color);
    font-weight: bold;
}

.navbar .btn-primary:hover,
.navbar .btn-primary:focus {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-color);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link {
    color: var(--primary-color) !important;
}

.navbar-scrolled .nav-link::after {
    background: var(--primary-color);
}

.navbar-scrolled .btn-primary {
    background-color: var(--primary-color);
    color:#fff;
}

/* Botões */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 25px;
    color: #fff;
    position: relative;
}

.btn-primary::after {
    display: none;
}

.whatsapp-tooltip {
    position: relative;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    outline: 2px solid var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 725px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content .btn {
    font-size: clamp(1rem, 2vw, 1.1rem);
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    font-weight: bold;
}

/* Responsivo para Hero Section */
@media (max-width: 991px) {
    .hero-section {
        height: 600px;
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
        margin-top: 70px;
    }

    .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 100vh;
        min-height: 450px;
        margin-top: 60px;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        margin-bottom: 1rem;
    }

    .hero-content p {
        margin-bottom: 1.5rem;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-height: 500px) {
    .hero-section {
        height: auto;
        min-height: 400px;
        padding: 100px 0;
    }
}

/* Você já sentiu Section */
.feeling-section {
    padding: 80px 0;
}

.feeling-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--secondary-color);
}

.feeling-box p{
    font-size:1.2rem;
    line-height:normal;
}

.feeling-box h2,
.feeling-box h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size:2.8rem;
}

.experience-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    position: absolute;
    bottom: 55px;
    left: 30px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.experience-badge span {
    font-size:50px;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: #fff;
}

.experience-badge span::after {
    content: '8';
    font-size:80px;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        content: '1';
    }
    12.5% {
        content: '2';
    }
    25% {
        content: '3';
    }
    37.5% {
        content: '4';
    }
    50% {
        content: '5';
    }
    62.5% {
        content: '6';
    }
    75% {
        content: '7';
    }
    to {
        content: '8';
    }
}

/* Imagem da seção Feeling */
.image-container {
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Como funciona Section */
.how-it-works {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: #fff;
}

.how-it-works h2,
.how-it-works h5,
.how-it-works p {
    color: #fff;
}

.how-it-works-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    min-height: 330px;
}

.section-padding{
    padding: 10px;
}

.services-header h2{
    color: var(--primary-color);
    font-weight: 600;
}

.how-it-works i {
    color: var(--primary-color) !important;
}

.how-it-works-item h5,
.how-it-works-item p {
    color: var(--text-color);
}

.how-it-works-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.service-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-item .service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

.service-item:hover .service-bg {
    transform: scale(1.1);
}

.service-item-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    text-align: center;
}

.service-item:hover .service-item-content {
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item h5 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Sections */
.cta-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-section .btn-light{
    border-radius: 25px;
}

.cta-section h2,
.cta-section p {
    color: #fff;
}

.cta-section .btn-light {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background: #fff;
    color: var(--primary-color);
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Foco em você Section */
.focus-section {
    padding: 100px 0;
    background-color: #fff;
}

.focus-heading {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.focus-description {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 800px;
    line-height: 1.8;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0;
    background: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.focus-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #fff;
}

.focus-item-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.focus-item-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.focus-section img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.focus-section .col-lg-6 {
    padding: 0 2rem;
}

@media (max-width: 991px) {
    .focus-section img {
        min-height: 400px;
        margin-bottom: 2rem;
    }
}

.about-section img{
    border-radius:30px;
}

/* Sobre Section */
.about-section {
    background-color: var(--secondary-color);
    padding: 100px 0;
}

.about-section h1{
    color:var(--primary-color);
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 40px 0;
    font-weight: 500;
    text-align: center;
    font-style: italic;
    position: relative;
    padding: 20px 40px;
}

.highlight-text::before,
.highlight-text::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: rgba(154, 91, 108, 0.2);
}

.highlight-text::before {
    left: 0;
    top: 0;
}

.highlight-text::after {
    right: 0;
    bottom: -20px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 60px 0 0;
}

.footer i{
   color: var(--primary-color);
}

.footer a{
    text-decoration: none;
    color: var(--text-color);
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer p {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--primary-color);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    background-color:var(--primary-color);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #fff;
    margin: 0;
}

.copyright-links {
    display: flex;
    gap: 1.5rem;
}

.copyright-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.copyright-links a:hover {
    color: var(--primary-color);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-body h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p, .modal-body li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    footer .copyright {
        order: 2;
        margin-top: 1rem;
    }
    
    footer .footer-links {
        order: 1;
        justify-content: center;
    }
}

/* Animações */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Animations */
@media (min-width: 992px) {
    .service-card, .feature-box, .testimonial-card {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .service-card.show, .feature-box.show, .testimonial-card.show {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Avaliações Section */
.reviews-section {
    padding: 80px 0;
    background-color: #fff;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.reviews-rating {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.reviews-count {
    color: var(--text-color);
    font-size: 1rem;
}

.google-logo {
    height: 30px;
    margin-top: 10px;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 15px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Banner */
#inicio {
    position: relative;
}

#inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: 1;
}

#inicio .container {
    position: relative;
    z-index: 2;
}

/* Swiper Pagination */
.swiper-pagination {
    margin-top: 40px !important;
    position: relative;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer .copyright {
    order: 1;
}

footer .footer-links {
    order: 2;
    display: flex;
    gap: 2rem;
}

footer .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: var(--primary-color);
}

.btn-light .fab.fa-whatsapp,
.footer-social .fab.fa-whatsapp,
.btn-primary .fab.fa-whatsapp {
    text-decoration: none !important;
}

.btn-primary,
.btn-light,
.cta-section .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.reviews-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.reviews-section .section-description {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Nova seção CTA para Histórias de Crescimento */
.growth-stories-cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 0;
}

.growth-stories-cta h2 {    
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.5em;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.growth-stories-cta .cta-description {
    font-size: 2.4rem;
    font-weight: 900;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    opacity: 0.9;
}
