/* Global Styles */
:root {
    --primary-color: #333333;
    --dark-color: #333;
    --light-color: #f4f4f4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./images/imagem-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    /* min-height: 600px; */
}

.hero-content {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.signup-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
}

/* Services Section */
.service-card {
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: white;
    margin-bottom: 30px;
    border: 2px solid #ececec;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 2px solid #e2e2e2;
    background-color: #f5f5f5;
}

/* Features Section */
.feature-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, black);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Stats Section */
.stat-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-card {
    margin-bottom: 30px;
}

.pricing-card .card {
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
}

.pricing-card.featured .card {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.testimonial-author figure{
    width: 60px;
    height: 60px;
}

.testimonial-author img {
/*     width: 60px;
    height: 60px; */
    width: 100%;
    margin: 20px auto;
}

.stars {
    margin: 15px 0;
}

/* CTA Section */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./images/imagem-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

/* Buttons */
.btn-success {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:active, .btn-success:focus, .btn-success:disabled {
    background-color: color-mix(in srgb, var(--primary-color) 85%, black) !important;
    border-color: color-mix(in srgb, var(--primary-color) 85%, black) !important;
}

.btn-success:hover {
    background-color: color-mix(in srgb, var(--primary-color) 85%, black);
    border-color: color-mix(in srgb, var(--primary-color) 85%, black);
    transform: translateY(-2px);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Form Controls */
.form-control {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .signup-card {
        margin-top: 50px;
    }

    .pricing-card.featured .card {
        transform: none;
    }
}

@media (max-width: 768px) {
    .stat-item, .service-card {
        margin-bottom: 30px;
    }
} 

/* Botão de WhatsApp flutuante */
.whatsapp-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 100;
}

.btn-whatsapp-pulse {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-pulse:hover {
    color: white;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.btn-whatsapp-pulse-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 101;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    75% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Estilos adicionais para Swiper */
.swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    color: #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: var(--primary-color) !important;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s, background-color 0.3s;
}

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

/* Estilos específicos para o slider de serviços */
.services-swiper {
    padding: 20px 40px;
    position: relative;
    overflow: visible;
    margin: 0 auto;
}

.services-swiper .swiper-slide {
    padding: 15px;
    height: auto;
}

.services-swiper .service-card {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-swiper .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .services-swiper {
        padding: 20px 30px;
    }
}

/* Estilos específicos para o slider de depoimentos */
.testimonials-swiper .swiper-slide {
    padding: 15px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card .testimonial-author {
    margin-top: 20px;
}

.testimonial-card .testimonial-author figure {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-bottom: 10px;
}

.testimonial-card .testimonial-author figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos adicionais das seções */
.services-stats-swiper {
    padding: 20px 40px;
}

.testimonials-swiper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    height: 100%;
}

.video-container {
    position: relative;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    margin-left: 5px;
}

/* Animação de fade-in */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    visibility: hidden;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.faq-image-container {
    position: relative;
    z-index: 1;
}

.faq-image-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--bs-dark);
    top: 20px;
    left: 20px;
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.1;
}

.custom-accordion .accordion-item {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.custom-accordion .accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    background: white;
    border-radius: 10px !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--bs-dark);
    background-color: #fff;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.1);
}

.custom-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
    padding: 1.25rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-content {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .faq-content {
        padding-left: 0;
    }
}