/* Global Styles */

:root {
    --primary-color: #06a77d;
    --secondary-color: #058968;
    --success-color: #06a77d;
    --danger-color: #ef476f;
    --light-bg: #f0f8f6;
    --white: #ffffff;
    --dark-text: #1a3a2e;
    --muted-text: #4a6e5c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    color: var(--dark-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 167, 125, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Hero Carousel Styles */

#heroCarousel {
    width: 100%;
}

.carousel-inner {
    padding: 0;
    margin: 0;
}

.carousel-text-content {
    padding: 2rem 0;
    animation: fadeIn 0.8s ease-in;
}

.carousel-slide-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    position: relative;
    min-height: 600px;
    width: 100%;
}

.carousel-text-content {
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 55%;
    padding: 2rem 3rem;
    animation: fadeIn 0.8s ease-in;
}

.carousel-slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideInRight 0.8s ease-in;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.5);
}

.carousel-slide-subtitle {
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-indicators {
    bottom: -50px;
    gap: 0.5rem;
}

.carousel-indicators [data-bs-slide-to] {
    background-color: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
}

.carousel-control-next, .carousel-control-prev{
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-inner {
    padding: 0;
    margin: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
    .carousel-slide-title {
        font-size: 2.2rem;
    }

    .carousel-slide-subtitle {
        font-size: 1.3rem;
    }

    .carousel-slide-container {
        min-height: 500px;
    }

    .carousel-text-content {
        max-width: 60%;
        padding: 1.5rem 2rem;
        left: 0;
    }
}

@media (max-width: 768px) {
    .carousel-slide-title {
        font-size: 1.5rem;
    }

    .carousel-slide-subtitle {
        font-size: 1rem;
    }

    .carousel-slide-container {
        min-height: 400px;
    }

    .carousel-text-content {
        max-width: 100%;
        padding: 1.5rem;
        text-align: left;
        left: 0;
        right: 0;
        top: 50%;
        z-index: 10;
    }

    .carousel-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .carousel-slide-title {
        font-size: 1.2rem;
    }

    .carousel-slide-subtitle {
        font-size: 0.85rem;
    }

    .carousel-slide-container {
        min-height: 350px;
    }

    .carousel-text-content {
        padding: 1rem;
        max-width: 100%;
    }

    .carousel-control-prev, .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

.hero-content {
    flex: 1;
    padding: 0;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--dark-text);
    border: 1px solid #e9ecef;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.illustration {
    font-size: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

/* Benefits Grid */

.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* How It Works Section */

.how-it-works-section {
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    display: none;
}

@media (min-width: 992px) {
    .steps-container::before {
        display: block;
    }
}

/* Featured Psychologists Section */

.featured-psychologists-section {
    background: white;
}

.psychologists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* Testimonials Section */

.testimonials-section {
    background: linear-gradient(135deg, #f0f8f6 0%, #e0f2ed 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-badge {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.trust-badge p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

/* About Section */

.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.values {
    display: grid;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: #f0f8f6;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.value-item p {
    margin: 0;
    color: var(--muted-text);
}

/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive */

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .illustration {
        font-size: 4rem;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 2rem 0;
    }

    .hero-section {
        padding: 2rem 0;
    }
}

/* Página de Aumento de Visibilidade */
.hero-section-simple {
    background: linear-gradient(135deg, #06a77d 0%, #058968 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-simple {
    max-width: 800px;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-large {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.visibilidade-card {
    background: #f0f8f6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.visibilidade-card:hover {
    border-color: #06a77d;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(6, 167, 125, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visibilidade-card h3 {
    color: #06a77d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.visibilidade-card p {
    color: #495057;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefícios Detalhes */
.benefits-detalhes-section {
    background: #f9fcfb;
}

.benefits-detalhes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06a77d 0%, #058968 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
}

.benefit-content h3 {
    color: #1a3a2e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #495057;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Números Section */
.numeros-section {
    background: linear-gradient(135deg, #f0f8f6 0%, #e0f2ed 100%);
    padding: 4rem 2rem;
}

.numero-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.numero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(6, 167, 125, 0.15);
}

.numero {
    font-size: 2.5rem;
    color: #06a77d;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.numero-card p {
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
}

/* Depoimentos */
.depoimentos-visibilidade-section {
    padding: 4rem 2rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #06a77d;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(6, 167, 125, 0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-texto {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-info h4 {
    color: #1a3a2e;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.autor-info p {
    color: #06a77d;
    font-size: 0.85rem;
}

/* CTA Section */
.cta-visibilidade-section {
    background: linear-gradient(135deg, #06a77d 0%, #058968 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle-large {
        font-size: 1rem;
    }

    .benefits-detalhes {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        margin: 0 auto;
    }

    .numero-card {
        padding: 1.5rem;
    }

    .numero {
        font-size: 2rem;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1rem;
    }
}

