/* Estilos globais para o site Roleplays */

:root {
    --primary: #03bfea;
    --primary-dark: #02a3c8;
    --primary-ultra-dark: #3A5FC9;
    --secondary: #34C759;
    --secondary-dark: #2BB04D;
    --tertiary: #FF9500;
    --tertiary-dark: #E68600;
    --dark: #333333;
    --light: #F5F7FA;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-ultra-dark) 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

#languageDropdown path {
    fill: var(--primary);
}

#languageDropdown::after {
    border-top-color: var(--primary);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-tertiary {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color: var(--white);
}

.btn-tertiary:hover {
    background-color: var(--tertiary-dark);
    border-color: var(--tertiary-dark);
    color: var(--white);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 10px;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--light-gray);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.pricing-card {
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer a {
    color: var(--light);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links i {
    margin-right: 0.5rem;
    color: var(--primary);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.copyright {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

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

.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid var(--dark);
    transition: all 300ms linear;
}

.navbar-toggler-icon:after,
.navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: var(--dark);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
    background-color: var(--dark);
    height: 1px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
    background-color: var(--dark);
    height: 1px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    padding: 1rem;
    background-color: var(--light);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    padding: 1rem;
    background-color: var(--white);
    border-radius: 0 0 5px 5px;
    margin-top: -5px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-info-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    margin-bottom: 0;
    color: var(--gray);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

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

.form-label {
    font-weight: 500;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray);
}

.page-header {
    background-color: var(--light);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-title {
    margin-bottom: 0;
}

.bg-light-gradient {
    background: linear-gradient(135deg, var(--light) 0%, #FFFFFF 100%);
}

.bg-primary-light {
    background-color: rgba(74, 111, 220, 0.1);
}

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

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

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

.rounded-lg {
    border-radius: 10px !important;
}

.shadow-sm {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

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

.img-thumbnail {
    padding: 0.25rem;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 0.25rem;
}

.animate-up {
    transition: all 0.3s ease;
}

.animate-up:hover {
    transform: translateY(-10px);
}

/**************************************************************************/
/**************************** HERO SECTION ******************************/
/**************************************************************************/

.hero-section .rdl-demo-cards .top-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-bottom: 48px
}

.hero-section .rdl-demo-cards .top-content strong {
    color: #06d9df
}

.hero-section .rdl-demo-cards .cards-wrapper {
    display: grid;
    grid-gap: 12px;
    gap: 12px
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card {
    border-radius: 24px;
    padding: 4px;
    position: relative
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card.light-blue {
    background-color: #6ef7fb
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card.light-blue .link {
    color: #000
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card.dark-blue {
    background-color: #11a7b6
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card.dark-blue .link {
    color: #fff
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card.green {
    background-color: #07c0eb
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card.green .link {
    color: #000
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper {
    position: relative;
    display: flex;
    height: 190px;
    align-items: flex-end
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .content {
    color: #fff;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .content .tags-wrapper {
    display: none
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .image {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    position: absolute
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .image img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .link {
    display: flex;
    justify-content: space-between;
    padding: 10px 32px;
    align-items: center
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .link .bsc-link {
    color: inherit !important;
    font-weight: inherit
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .link .bsc-link:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .link svg path {
    fill: currentColor
}

.hero-section .rdl-demo-cards .cards-wrapper .demo-card .link:not(.custom-link):after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.hero-section .rdl-demo-cards .arrow {
    display: flex;
    justify-content: center;
    margin: 57px 0 0
}

.hero-section .bsc-chip {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    box-sizing: border-box;
}

.hero-section .bsc-chip label {
    padding: 4px 10px;
    border-radius: 9999px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all .3s ease;
}

.hero-section .bsc-chip.white label {
    background: transparent;
    border: 2px solid #fff;
}

.hero-section .bsc-chip label span {
    font-family: var(--font-base), sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    line-height: 140%;
}

.hero-section .bsc-chip.white label span, .hero-section .bsc-chip.white label svg {
    color: #fff;
}

/* Estilos para a simulação de voz na hero */
.hero-section .simulation-preview {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: absolute;
    width: 100%;
    background: transparent;
}

.hero-section .voice-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-section .ai-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-section .pulse-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    animation: pulse 2s ease-out infinite;
}

.hero-section .pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.hero-section .pulse-ring.delay-2 {
    animation-delay: 1s;
}

.hero-section .waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.hero-section .wave-bar {
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.hero-section .wave-bar:nth-child(1) {
    animation-delay: 0s;
}

.hero-section .wave-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-section .wave-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-section .wave-bar:nth-child(4) {
    animation-delay: 0.3s;
}

.hero-section .wave-bar:nth-child(5) {
    animation-delay: 0.4s;
}

/* Estilos para analytics na hero */
.hero-section .analytics-preview {
    padding: 2rem;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: absolute;
    width: 100%;
    background: transparent;
}

.hero-section .chart-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-section .performance-chart {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 60px;
}

.hero-section .chart-bar {
    width: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: grow 2s ease-out;
}

.hero-section .chart-bar:nth-child(1) {
    --final-height: 36px;
    height: var(--final-height);
}

.hero-section .chart-bar:nth-child(2) {
    --final-height: 51px;
    height: var(--final-height);
}

.hero-section .chart-bar:nth-child(3) {
    --final-height: 27px;
    height: var(--final-height);
}

.hero-section .chart-bar:nth-child(4) {
    --final-height: 57px;
    height: var(--final-height);
}

.hero-section .chart-bar:nth-child(5) {
    --final-height: 42px;
    height: var(--final-height);
}

.hero-section .score-display {
    text-align: center;
    color: white;
}

.hero-section .score-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.hero-section .score-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/**************************************************************************/
/************************ TARGET AUDIENCE SECTION ***********************/
/**************************************************************************/

/* Estilos gerais dos cards da seção "Para quem serve" */
.target-audience-section .target-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.target-audience-section .target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.target-audience-section .card-visual {
    height: 220px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.target-audience-section .card-body {
    position: relative;
    z-index: 10;
    background: white;
}

/* Sales Visual */
.target-audience-section .sales-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.target-audience-section .sales-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.target-audience-section .funnel-stage {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 120px;
    animation: slideIn 0.6s ease-out;
}

.target-audience-section .funnel-stage:nth-child(2) {
    animation-delay: 0.2s;
}

.target-audience-section .funnel-stage:nth-child(4) {
    animation-delay: 0.4s;
}

.target-audience-section .funnel-stage:nth-child(6) {
    animation-delay: 0.6s;
}

.target-audience-section .stage-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.target-audience-section .stage-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.target-audience-section .stage-number {
    font-weight: bold;
    font-size: 1.1rem;
}

.target-audience-section .funnel-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.target-audience-section .conversion-rate {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.9rem;
    z-index: 2;
}

.target-audience-section .rate-value {
    font-weight: bold;
    color: #FFD700;
}

/* CS Visual */
.target-audience-section .cs-visual {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.target-audience-section .customer-journey {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.target-audience-section .journey-step {
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.target-audience-section .journey-step:nth-child(3) {
    animation-delay: 0.2s;
}

.target-audience-section .journey-step:nth-child(5) {
    animation-delay: 0.4s;
}

.target-audience-section .journey-step.warning {
    background: rgba(255, 193, 7, 0.3);
}

.target-audience-section .journey-connector {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.target-audience-section .step-icon {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.target-audience-section .step-status {
    font-size: 0.7rem;
    opacity: 0.9;
}

.target-audience-section .step-progress {
    font-weight: bold;
    font-size: 0.8rem;
}

.target-audience-section .health-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.target-audience-section .score-circle {
    width: 60px;
    height: 60px;
}

.target-audience-section .circular-chart {
    display: block;
    width: 100%;
    height: 100%;
}

.target-audience-section .circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2.8;
}

.target-audience-section .circle {
    fill: none;
    stroke: #FFD700;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 2s ease-in-out;
}

.target-audience-section .percentage {
    fill: white;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}

/* Support Visual */
.target-audience-section .support-visual {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
}

.target-audience-section .support-dashboard {
    width: 100%;
}

.target-audience-section .ticket-counter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.target-audience-section .counter-item {
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    flex: 1;
    margin: 0 0.2rem;
    backdrop-filter: blur(10px);
    animation: bounceIn 0.6s ease-out;
}

.target-audience-section .counter-item.urgent {
    animation-delay: 0.1s;
}

.target-audience-section .counter-item.medium {
    animation-delay: 0.2s;
}

.target-audience-section .counter-item.low {
    animation-delay: 0.3s;
}

.target-audience-section .counter-number {
    font-size: 1.4rem;
    font-weight: bold;
}

.target-audience-section .counter-label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.target-audience-section .response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.target-audience-section .timer-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.target-audience-section .timer-value {
    font-weight: bold;
    font-size: 1.1rem;
}

.target-audience-section .timer-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.target-audience-section .satisfaction-meter {
    text-align: center;
}

.target-audience-section .satisfaction-stars {
    margin-bottom: 0.3rem;
}

.target-audience-section .star {
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.target-audience-section .star.filled {
    color: #FFD700;
    animation: sparkle 2s infinite;
}

.target-audience-section .satisfaction-score {
    font-weight: bold;
}

/* Skills Tags */
.target-audience-section .skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.target-audience-section .skill-tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Hover Effects */
.target-audience-section .target-card:hover .funnel-stage {
    transform: scale(1.05);
}

.target-audience-section .target-card:hover .journey-step {
    transform: scale(1.05);
}

.target-audience-section .target-card:hover .counter-item {
    transform: scale(1.05);
}

/**************************************************************************/
/************************ HOW IT WORKS SECTION ***************************/
/**************************************************************************/

.how-it-works-section .how-it-works-step {
    display: inherit;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    min-height: 80px;
    padding-left: 86px;
    margin-bottom: 2px;
}

.how-it-works-section .how-it-works-step:hover,
.how-it-works-section .how-it-works-step.active {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateX(10px);
}

.how-it-works-section .how-it-works-step-number {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
}

/* Dashboard Container */
.how-it-works-section .dashboard-container {
    background: #2c3e50;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.how-it-works-section .dashboard-screen {
    display: none;
    height: 600px;
    color: white;
}

.how-it-works-section .dashboard-screen.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.how-it-works-section .dashboard-header {
    background: #34495e;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #4a5f7a;
}

.how-it-works-section .dashboard-header h4 {
    margin: 0;
    color: white;
}

.how-it-works-section .step-indicator {
    background: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.how-it-works-section .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.9rem;
}

.how-it-works-section .live-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.how-it-works-section .score-badge {
    background: #27ae60;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.how-it-works-section .dashboard-content {
    padding: 2rem;
}

/* Screen 1 - Configuração */
.how-it-works-section .form-group {
    margin-bottom: 1.5rem;
}

.how-it-works-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.how-it-works-section .input-field {
    background: #34495e;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #4a5f7a;
}

.how-it-works-section .input-field.filled {
    border-color: #3498db;
    background: #2980b9;
}

.how-it-works-section .persona-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #34495e;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #4a5f7a;
}

.how-it-works-section .persona-avatar {
    font-size: 2rem;
}

.how-it-works-section .criteria-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.how-it-works-section .criteria-item {
    background: #27ae60;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
}

/* Screen 2 - Simulação por Ligação */
.how-it-works-section .call-interface {
    background: #34495e;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.how-it-works-section .caller-info {
    margin-bottom: 2rem;
}

.how-it-works-section .caller-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-section .avatar-ring {
    position: absolute;
    border: 2px solid rgba(52, 152, 219, 0.4);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: ringPulse 2s ease-out infinite;
}

.how-it-works-section .avatar-ring.delay-1 {
    animation-delay: 1s;
}

.how-it-works-section .avatar-icon {
    font-size: 2.5rem;
    background: #3498db;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.how-it-works-section .caller-details h5 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.how-it-works-section .caller-details p {
    margin: 0.2rem 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.how-it-works-section .call-status {
    background: #27ae60;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.how-it-works-section .audio-visualization {
    margin: 2rem 0;
}

.how-it-works-section .audio-bars {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 4px;
    height: 60px;
    margin-bottom: 1rem;
}

.how-it-works-section .audio-bar {
    width: 6px;
    background: #3498db;
    border-radius: 3px;
    animation: audioWave 1.5s ease-in-out infinite;
}

.how-it-works-section .audio-bar:nth-child(1) {
    animation-delay: 0s;
    height: 20px;
}

.how-it-works-section .audio-bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 35px;
}

.how-it-works-section .audio-bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 45px;
}

.how-it-works-section .audio-bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 55px;
}

.how-it-works-section .audio-bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 40px;
}

.how-it-works-section .audio-bar:nth-child(6) {
    animation-delay: 0.5s;
    height: 25px;
}

.how-it-works-section .audio-bar:nth-child(7) {
    animation-delay: 0.6s;
    height: 15px;
}

.how-it-works-section .audio-status {
    color: #bdc3c7;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

.how-it-works-section .call-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.how-it-works-section .call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.how-it-works-section .mute-btn {
    background: #95a5a6;
    color: white;
}

.how-it-works-section .record-btn {
    background: #e74c3c;
    color: white;
}

.how-it-works-section .record-btn.recording {
    animation: recordPulse 1.5s infinite;
}

.how-it-works-section .end-call-btn {
    background: #c0392b;
    color: white;
}

.how-it-works-section .call-btn:hover {
    transform: scale(1.1);
}

.how-it-works-section .timer {
    color: #e74c3c !important;
    font-family: 'Courier New', monospace;
}

.how-it-works-section .simulation-stats {
    display: flex;
    gap: 2rem;
}

.how-it-works-section .stat-item {
    text-align: center;
}

.how-it-works-section .stat-label {
    display: block;
    color: #bdc3c7;
    font-size: 0.8rem;
}

.how-it-works-section .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
}

/* Screen 3 - Avaliação */
.how-it-works-section .criteria-scores {
    margin-bottom: 2rem;
}

.how-it-works-section .score-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.how-it-works-section .criteria-name {
    min-width: 120px;
    font-size: 0.9rem;
}

.how-it-works-section .score-bar {
    flex: 1;
    height: 8px;
    background: #34495e;
    border-radius: 4px;
    overflow: hidden;
}

.how-it-works-section .score-fill {
    height: 100%;
    background: linear-gradient(90deg, #f39c12, #e74c3c, #27ae60);
    border-radius: 4px;
    animation: fillBar 1.5s ease-out forwards;
}

.how-it-works-section .score-item:nth-child(1) .score-fill {
    --target-width: 90%;
}

.how-it-works-section .score-item:nth-child(2) .score-fill {
    --target-width: 85%;
}

.how-it-works-section .score-item:nth-child(3) .score-fill {
    --target-width: 80%;
}

.how-it-works-section .score-value {
    font-weight: bold;
    color: #3498db;
}

.how-it-works-section .feedback-item {
    background: #34495e;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #3498db;
}

.how-it-works-section .feedback-item.positive {
    border-left-color: #27ae60;
}

.how-it-works-section .feedback-item.improvement {
    border-left-color: #f39c12;
}

/* Screen 4 - Acompanhamento */
.how-it-works-section .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.how-it-works-section .metric-card {
    background: #34495e;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #4a5f7a;
}

.how-it-works-section .metric-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.how-it-works-section .metric-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    display: block;
}

.how-it-works-section .metric-label {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.how-it-works-section .ranking-header {
    color: #bdc3c7;
    margin-bottom: 1rem;
    font-weight: bold;
}

.how-it-works-section .ranking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #34495e;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.how-it-works-section .rank {
    font-weight: bold;
    color: #f39c12;
}

.how-it-works-section .score {
    font-weight: bold;
    color: #27ae60;
}

/**************************************************************************/
/**************************** ANIMATIONS *********************************/
/**************************************************************************/

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes wave {
    0%, 100% {
        height: 8px;
    }
    50% {
        height: 32px;
    }
}

@keyframes grow {
    from {
        height: 0;
    }
    to {
        height: var(--final-height);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes audioWave {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes recordPulse {
    0%, 100% {
        background: #e74c3c;
    }
    50% {
        background: #c0392b;
        transform: scale(1.05);
    }
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: var(--target-width);
    }
}

/**************************************************************************/
/**************************** RESPONSIVE *********************************/
/**************************************************************************/

@media (min-width: 768px) {
    .hero-section .rdl-demo-cards .top-content {
        gap: 16px;
        margin-bottom: 32px
    }

    .hero-section .rdl-demo-cards .cards-wrapper {
        gap: 32px
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper {
        justify-content: flex-start;
        align-items: center
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .content {
        padding: 0 12px
    }
}

@media (min-width: 1280px) {
    .hero-section .rdl-demo-cards .top-content {
        width: 778px;
        margin: 0 auto 56px
    }

    .hero-section .rdl-demo-cards .top-content.content-width-full {
        width: 100%
    }

    .hero-section .rdl-demo-cards .cards-wrapper {
        grid-template-columns: repeat(2, minmax(0, 400px));
        justify-content: center;
        gap: 40px;
        height: 540px
    }

    .hero-section .rdl-demo-cards .cards-wrapper.two-columns {
        grid-template-columns: repeat(2, minmax(0, 400px))
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card {
        padding-top: 12px;
        transition: .4s ease
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover {
        padding-top: 4px;
        padding-bottom: 64px
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .image img {
        transform: scale(1.2)
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .image:after {
        opacity: .6
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .content-wrapper .content {
        padding-bottom: 28px
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .content-wrapper .content .tags-wrapper {
        max-height: -moz-fit-content;
        max-height: fit-content;
        padding-top: 8px
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .link {
        text-decoration: none
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .link .bsc-link, .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .link span {
        font-weight: 700;
        transition: font-weight .3s ease
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover .link svg {
        margin-left: auto
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover.green .link, .hero-section .rdl-demo-cards .cards-wrapper .demo-card:hover.light-blue .link {
        color: #000
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card.green .link, .hero-section .rdl-demo-cards .cards-wrapper .demo-card.light-blue .link {
        color: #fff
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .link.green {
        color: #fff
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .link.light-blue {
        color: #6ef7fb
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .link.dark-blue {
        color: #11a7b6
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .image {
        overflow: hidden
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .image img {
        transition: .4s ease
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .image:after {
        display: block;
        content: "";
        background-color: #000;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        border-radius: 24px;
        opacity: 0;
        transition: opacity .3s ease
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper {
        pointer-events: none;
        height: 100%;
        width: 100%;
        align-items: flex-end
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .content {
        padding-bottom: 60px;
        transition: .4s ease
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .content .description {
        width: 270px
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .content-wrapper .content .tags-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 6px;
        max-height: 0;
        overflow: hidden;
        padding-top: 0
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .link {
        gap: 8px;
        justify-content: flex-start;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        box-sizing: border-box;
        align-items: flex-end;
        padding-bottom: 22px
    }

    .hero-section .rdl-demo-cards .cards-wrapper .demo-card .link svg {
        position: relative;
        top: -3px
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 8rem 0;
    }

    .section-padding {
        padding: 3rem 0;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 0;
    }

    .section-padding {
        padding: 2rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .hero-section .voice-interface {
        gap: 1rem;
    }

    .hero-section .ai-avatar {
        width: 50px;
        height: 50px;
    }

    .hero-section .pulse-ring {
        height: 70px;
        width: 70px;
    }

    .hero-section .chart-container {
        gap: 1rem;
    }

    .hero-section .score-number {
        font-size: 1.5rem;
    }

    .target-audience-section .card-visual {
        height: 180px;
        padding: 1.5rem;
    }

    .target-audience-section .customer-journey {
        flex-direction: column;
        gap: 0.3rem;
    }

    .target-audience-section .journey-connector {
        width: 2px;
        height: 15px;
        transform: rotate(90deg);
    }

    .target-audience-section .ticket-counter {
        flex-direction: column;
        gap: 0.5rem;
    }

    .target-audience-section .counter-item {
        margin: 0;
    }

    .how-it-works-section .how-it-works-step {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works-section .how-it-works-step-number {
        margin-right: 0;
    }

    .how-it-works-section .metrics-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-section .message-content {
        max-width: 85%;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 8rem 0;
    }

    .section-title::after {
        width: 60px;
    }
}