/* 
 * Feature Pages CSS - CRM Dentistas iA
 * Estilos específicos para las landing pages de características individuales
 */

/* Hero Feature Section */
.feature-hero {
    padding: 140px 0 100px; /* Aumentado el padding superior para separar del menú */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    margin-top: 30px; /* Añadido margen superior adicional */
}

.feature-hero-content {
    padding-right: 30px;
}

.feature-badge {
    display: inline-block;
    background-color: #e9f5ff;
    color: #007bff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-hero h1.feature-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #212529;
}

.feature-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    margin-bottom: 30px;
}

.feature-stat {
    margin-right: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.feature-hero-image {
    position: relative;
}

/* Calendar Demo */
.calendar-demo {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
}

.calendar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.calendar-title h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #212529;
}

.calendar-title span {
    color: #6c757d;
    font-size: 0.9rem;
}

.calendar-actions {
    display: flex;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: white;
    color: #6c757d;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: #e9ecef;
    color: #007bff;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    background: #f8f9fa;
    text-align: center;
}

.day-name {
    font-size: 0.8rem;
    color: #6c757d;
    padding: 5px;
    font-weight: 600;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
}

.date {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.date:hover {
    background: #e9ecef;
}

.date.empty {
    cursor: default;
}

.date.today {
    border: 2px solid #007bff;
    font-weight: 600;
}

.date.has-events {
    background: #e9f5ff;
    font-weight: 600;
    color: #007bff;
}

.date.has-events:hover {
    background: #cce5ff;
}

.date.has-events.highlight {
    background: #007bff;
    color: white;
}

.date.has-events::after {
    content: "";
    position: absolute;
    bottom: 5px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #007bff;
}

.date.has-events.highlight::after {
    background: white;
}

.date[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #212529;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10;
    white-space: nowrap;
}

.date[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.calendar-events {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.calendar-events h4 {
    margin: 0 0 15px;
    font-size: 1rem;
    color: #212529;
}

.appointment {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.appointment:hover {
    background: #e9ecef;
}

.appointment .time {
    width: 60px;
    font-weight: 600;
    color: #212529;
}

.appointment .details {
    flex: 1;
}

.appointment .patient-name {
    font-weight: 600;
    color: #212529;
    margin-bottom: 2px;
}

.appointment .treatment {
    font-size: 0.85rem;
    color: #6c757d;
}

.appointment .status {
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.appointment .status.confirmed {
    background: #d4edda;
    color: #155724;
}

.appointment .status.pending {
    background: #fff3cd;
    color: #856404;
}

/* Feature Benefits Section */
.feature-benefits {
    background-color: #f8f9fa;
}

.feature-benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.benefit-icon.blue {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.benefit-icon.green {
    background: linear-gradient(135deg, #28a745, #218838);
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #6f42c1, #533285);
}

.feature-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #212529;
}

.feature-benefit-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Feature Details Section */
.feature-details {
    padding: 80px 0;
}

.feature-detail-content {
    padding: 30px;
}

.feature-tag {
    display: inline-block;
    background-color: #e9f5ff;
    color: #007bff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-detail-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
}

.feature-detail-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #495057;
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
}

.feature-quote {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.feature-quote i {
    color: #e9ecef;
    font-size: 2rem;
    position: absolute;
    top: 15px;
    left: 15px;
}

.feature-quote p {
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    font-style: italic;
    color: #495057;
}

.feature-quote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #007bff;
    padding-left: 30px;
}

/* Appointment Booking Demo */
.appointment-booking-demo {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 100%;
}

.booking-header {
    background: #007bff;
    color: white;
    padding: 20px;
}

.booking-header h4 {
    margin: 0;
    font-size: 1.25rem;
}

.booking-body {
    padding: 20px;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.booking-steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 10px;
}

.booking-step.active .step-number {
    background: #007bff;
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.booking-step.active .step-label {
    color: #007bff;
    font-weight: 600;
}

.booking-content {
    padding: 20px 0;
}

.booking-content h5 {
    margin-bottom: 20px;
    color: #212529;
    font-size: 1.1rem;
}

.service-options {
    margin-bottom: 30px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: #cce5ff;
    background: #f8f9fa;
}

.service-option.selected {
    border-color: #007bff;
    background: #e9f5ff;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #495057;
    font-size: 1.2rem;
}

.service-option.selected .service-icon {
    background: #007bff;
    color: white;
}

.service-info {
    flex: 1;
}

.service-info h6 {
    margin: 0 0 5px;
    color: #212529;
}

.service-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.service-check {
    width: 24px;
    height: 24px;
    color: #007bff;
    visibility: hidden;
}

.service-option.selected .service-check {
    visibility: visible;
}

.booking-actions {
    display: flex;
    justify-content: space-between;
}

/* Phone Notification Demo */
.reminder-notification-demo {
    padding: 20px;
}

.phone-mockup {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    max-width: 350px;
    margin: 0 auto;
}

.phone-header {
    background: #1a1a1a;
    height: 30px;
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
}

.phone-notch {
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-screen {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 20px 15px;
    min-height: 500px;
}

.notification-group {
    margin-top: 15px;
}

.notification {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.notification-icon img {
    width: 30px;
    height: auto;
}

.notification-content {
    flex: 1;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.app-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #212529;
}

.notification-time {
    font-size: 0.8rem;
    color: #6c757d;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.notification-body {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 10px;
}

.notification-actions {
    display: flex;
}

.action-button {
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
    cursor: pointer;
    border: none;
}

.action-button.confirm {
    background: #007bff;
    color: white;
}

.action-button.reschedule {
    background: #e9ecef;
    color: #212529;
}

.phone-home-indicator {
    height: 5px;
    width: 100px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 15px auto 5px;
}

/* Stats Container */
.stats-container {
    display: flex;
    margin: 25px 0;
}

.stat-item {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    margin-right: 15px;
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

/* Feature Navigation Section */
.feature-navigation {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-nav-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-nav-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-nav-icon.blue {
    background-color: #007bff;
}

.feature-nav-icon.green {
    background-color: #28a745;
}

.feature-nav-icon.purple {
    background-color: #6f42c1;
}

.feature-nav-icon.orange {
    background-color: #fd7e14;
}

.feature-nav-icon.red {
    background-color: #dc3545;
}

.feature-nav-icon.teal {
    background-color: #20c997;
}

.feature-nav-card:hover .feature-nav-icon {
    transform: scale(1.1);
}

.feature-nav-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #343a40;
}

.feature-nav-card p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-nav-card .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-nav-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.2);
}

.feature-navigation {
    background-color: #f8f9fa;
}

.feature-nav-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-nav-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: white;
}

.feature-nav-icon.blue {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.feature-nav-icon.green {
    background: linear-gradient(135deg, #28a745, #218838);
}

.feature-nav-icon.orange {
    background: linear-gradient(135deg, #fd7e14, #c96100);
}

.feature-nav-icon.purple {
    background: linear-gradient(135deg, #6f42c1, #533285);
}

.feature-nav-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #212529;
}

.feature-nav-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CTA Section */
.feature-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.feature-cta h2 {
    font-weight: 700;
}

.feature-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons .btn-outline-primary {
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline-primary:hover {
    background-color: white;
    color: #007bff;
}

/* Estilos para el panel simple de motivos de llamada */
.simple-panel {
    background-color: #fff;
    margin-top: 20px;
    padding: 0;
    border-radius: 8px;
}

.panel-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.panel-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.call-reason-item {
    margin: 0;
}

.reason-label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

/* Estilos para panel de análisis de llamadas */
.call-analytics-panel {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.analytics-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.analytics-badge {
    display: inline-block;
    padding: 7px 15px;
    background: #e8f5ff;
    color: #007bff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.analytics-period {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.analytics-period i {
    margin-right: 5px;
    color: #007bff;
}

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    padding: 15px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 5px 0 0;
}

.stat-trend {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    margin-top: 5px;
}

.stat-trend.positive {
    color: #28a745;
}

.stat-trend.negative {
    color: #dc3545;
}

.stat-trend i {
    margin-right: 3px;
}

.call-distribution.call-types {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.distribution-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.hour-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #6c757d;
}

.chart-container {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.chart-bar {
    flex: 1;
    background: #e8f5ff;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: #007bff;
}

/* Estilos para panel de configuración de voz */
.voice-config-panel {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.voice-config-header {
    padding: 25px 25px 15px;
}

.voice-config-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 10px;
}

.voice-config-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.voice-config-badge {
    display: inline-block;
    padding: 7px 15px;
    background: #e8f4fd;
    color: #007bff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-check-icon {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
}

.voice-config-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 25px 25px;
}

.voice-config-section {
    flex: 1;
    margin-bottom: 20px;
}

/* Estilos para panel de transferencia de llamadas */
.call-transfer-panel {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.transfer-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transfer-time {
    font-weight: 700;
    font-size: 18px;
    background-color: #4a6bff;
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.caller-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.caller-avatar {
    width: 60px;
    height: 60px;
    background-color: #f2f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caller-avatar i {
    font-size: 32px;
    color: #4a6bff;
}

.caller-details h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.caller-phone, .caller-type {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.call-summary h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

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

.summary-points li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.summary-points li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 8px;
    color: #666;
}

.summary-points li.priority-high {
    color: #e74c3c;
    font-weight: 500;
}

.summary-points li.priority-high i {
    color: #e74c3c;
    font-size: 10px;
}

.transfer-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.action-button {
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-button.accept {
    background-color: #28a745;
    color: white;
}

.action-button.reschedule {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos para panel de gestión de agenda */
.calendar-management-panel {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.calendar-header {
    background-color: #f8f9fa;
    padding: 15px 40px;
    border-bottom: 1px solid #e9ecef;
}

.month-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month-navigation i {
    color: #6c757d;
    cursor: pointer;
    font-size: 14px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.month-navigation i:hover {
    background-color: #e9ecef;
}

.current-month {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.calendar-body {
    padding: 15px;
}

.calendar-week-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover {
    background-color: #e9ecef;
}

.calendar-day.prev-month,
.calendar-day.next-month {
    color: #adb5bd;
}

.calendar-day.weekend {
    color: #6c757d;
}

.calendar-day.has-event {
    position: relative;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #4a6bff;
}

.calendar-day.selected {
    background-color: #4a6bff;
    color: #fff;
    font-weight: 600;
}

.calendar-events {
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    flex: 1;
}

.event-header {
    margin-bottom: 15px;
}

.event-header h4 {
    font-size: 16px;
    margin: 0;
    color: #343a40;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.event-item.new-booking {
    border-left: 3px solid #4a6bff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 107, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(74, 107, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 107, 255, 0);
    }
}

.event-time {
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    width: 60px;
}

.event-details {
    flex: 1;
    padding: 0 10px;
}

.event-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.event-type {
    font-size: 12px;
    color: #6c757d;
}

.event-status {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.event-status.booked {
    background-color: #e8f5e9;
    color: #28a745;
}

.event-status.pending {
    background-color: #fff3e0;
    color: #f57c00;
}

.event-status.new {
    background-color: #e3f2fd;
    color: #2196f3;
}

.voice-config-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.voice-config-box-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

/* Estilos para sección de personalización de voz */
.voice-customization {
    width: 100%;
}

.customization-section {
    margin-bottom: 30px;
}

.customization-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.customization-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .customization-row {
        flex-direction: column;
    }
}

.customization-option {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.customization-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e8f4fd, #cce6ff);
    color: #0088ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.customization-option h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.customization-option p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.customization-preview {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 25px;
}

.voice-config-content h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
}

.voice-config-option {
    margin-bottom: 20px;
}

.voice-config-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #495057;
}

.voice-type-selector, .voice-rhythm-selector, .voice-tone-selector, .voice-style-selector {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.voice-type-option, .voice-rhythm-option, .voice-tone-option, .voice-style-option {
    position: relative;
}

.voice-type-option input[type="radio"],
.voice-rhythm-option input[type="radio"],
.voice-tone-option input[type="radio"],
.voice-style-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.voice-type-option label,
.voice-rhythm-option label,
.voice-tone-option label,
.voice-style-option label {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.voice-type-option input[type="radio"]:checked + label,
.voice-rhythm-option input[type="radio"]:checked + label,
.voice-tone-option input[type="radio"]:checked + label,
.voice-style-option input[type="radio"]:checked + label {
    background-color: #0088ff;
    color: white;
    border-color: #0088ff;
}

.voice-type-option input[type="radio"]:focus + label,
.voice-rhythm-option input[type="radio"]:focus + label,
.voice-tone-option input[type="radio"]:focus + label,
.voice-style-option input[type="radio"]:focus + label {
    box-shadow: 0 0 0 3px rgba(0,136,255,0.25);
}

.voice-config-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 25px;
}

.voice-config-tab {
    padding: 15px 20px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.voice-config-tab.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.stats-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    flex: 1;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.stat-box-value {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-box-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.button-primary {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.button-secondary {
    background: #f8f9fa;
    color: #212529;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: 600;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.button-primary:hover {
    background: #0069d9;
}

.button-secondary:hover {
    background: #e9ecef;
}

/* Medical Record Demo Styles */
.medical-record-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.record-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
}

.record-title span {
    font-size: 13px;
    color: #6c757d;
    display: block;
    margin-top: 4px;
}

.record-actions {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: #f1f3f5;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background-color: #e9ecef;
}

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

.btn-icon.primary:hover {
    background-color: var(--secondary-color);
}

.record-tabs {
    display: flex;
    padding: 0 15px;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.record-tabs .tab {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.record-tabs .tab:hover {
    color: #495057;
}

.record-tabs .tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.record-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #fff;
}

.patient-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.summary-section h4 {
    margin: 0 0 15px;
    font-size: 16px;
    color: #343a40;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item .label {
    font-size: 12px;
    color: #6c757d;
}

.info-item .value {
    font-size: 14px;
    color: #212529;
    font-weight: 500;
}

.medical-alerts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

.alert-item.warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-item.info {
    background-color: #cce5ff;
    color: #004085;
}

.ai-suggested {
    display: inline-block;
    font-size: 12px;
    background-color: #e9f5ff;
    color: #007bff;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 500;
}

.treatment-suggestion {
    display: flex;
    gap: 15px;
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.treatment-icon {
    width: 50px;
    height: 50px;
    background-color: #e9f5ff;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 22px;
}

.treatment-details {
    flex: 1;
}

.treatment-details h5 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #212529;
}

.treatment-details p {
    margin: 0 0 12px;
    font-size: 13px;
    color: #6c757d;
}

.treatment-actions {
    display: flex;
    gap: 10px;
}

/* Voice Search Demo Styles */
.voice-search-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 400px;
}

.device-mockup {
    height: 100%;
    width: 100%;
    border: 10px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.device-screen {
    flex: 1;
    background-color: #fff;
    padding: 15px;
}

.search-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.search-header {
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
}

.search-header h4 {
    margin: 0;
    font-size: 16px;
    color: #343a40;
}

.search-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.voice-indicator {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-indicator.active {
    background-color: rgba(0, 123, 255, 0.1);
}

.voice-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 40px;
}

.voice-waves span {
    width: 4px;
    background-color: #007bff;
    border-radius: 5px;
    display: inline-block;
    height: 10px;
    transition: height 0.2s ease;
}

.voice-text {
    background-color: #f8f9fa;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #212529;
    text-align: center;
    max-width: 90%;
}

.voice-results {
    width: 100%;
}

.result-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.result-icon {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
}

.result-content h5 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #343a40;
}

.result-content p {
    margin: 0 0 10px;
    font-size: 13px;
    color: #6c757d;
}

/* Odontogram Demo Styles */
.odontogram-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.odontogram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.patient-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
}

.patient-info span {
    font-size: 13px;
    color: #6c757d;
    display: block;
    margin-top: 4px;
}

.odontogram-actions {
    display: flex;
    gap: 10px;
}

.odontogram-body {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.upper-teeth,
.lower-teeth {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tooth {
    width: 35px;
    height: 35px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tooth:hover {
    transform: scale(1.1);
    border-color: #adb5bd;
}

.tooth.filled {
    background-color: #8ecdf7;
    border-color: #5ea3d5;
}

.tooth.caries {
    background-color: #ffcb91;
    border-color: #ff9800;
}

.tooth.missing {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    color: #adb5bd;
}

.tooth.implant {
    background-color: #d0d7fc;
    border-color: #7986cb;
}

.tooth.treated {
    background-color: #c8e6c9;
    border-color: #81c784;
}

.odontogram-footer {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.treatment-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    display: inline-block;
}

.legend-color.filled {
    background-color: #8ecdf7;
    border: 1px solid #5ea3d5;
}

.legend-color.caries {
    background-color: #ffcb91;
    border: 1px solid #ff9800;
}

.legend-color.missing {
    background-color: #f8f9fa;
    border: 1px dashed #dee2e6;
}

.legend-color.implant {
    background-color: #d0d7fc;
    border: 1px solid #7986cb;
}

.legend-color.treated {
    background-color: #c8e6c9;
    border: 1px solid #81c784;
}

.ai-suggestion {
    padding: 10px 15px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #007bff;
}

.ai-suggestion i {
    color: #007bff;
}

.ai-suggestion.active {
    background-color: rgba(0, 123, 255, 0.2);
}

/* Interactive Tool Demo Styles */
.interactive-tool-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.tool-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tool-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.tool-body {
    flex: 1;
    padding: 20px;
    overflow-y: visible;
}

.tooth-editor {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selected-tooth {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tooth-view {
    width: 120px;
    height: 120px;
    position: relative;
    display: grid;
    grid-template-areas:
        ". top ."
        "left center right"
        ". bottom .";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 2px;
}

.tooth-surface {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tooth-surface:hover {
    background-color: #e9ecef;
}

.tooth-surface.top {
    grid-area: top;
    border-radius: 8px 8px 0 0;
}

.tooth-surface.left {
    grid-area: left;
    border-radius: 8px 0 0 8px;
}

.tooth-surface.center {
    grid-area: center;
}

.tooth-surface.right {
    grid-area: right;
    border-radius: 0 8px 8px 0;
}

.tooth-surface.bottom {
    grid-area: bottom;
    border-radius: 0 0 8px 8px;
}

.tooth-surface.selected {
    background-color: #ffcb91;
    border-color: #ff9800;
}

.tooth-info h5 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.tooth-info span {
    font-size: 13px;
    color: #6c757d;
}

.tool-options {
    margin-top: 20px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group h6 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #343a40;
}

.options-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tool-option {
    padding: 8px 12px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-option:hover {
    background-color: #e9ecef;
}

.tool-option.selected {
    background-color: #e9f5ff;
    border-color: #007bff;
    color: #007bff;
}

.tool-option.selected i {
    color: #007bff;
}

.tool-actions {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Timeline Demo Styles */
.timeline-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 520px;
    display: flex;
    flex-direction: column;
}

.timeline-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.timeline-header h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.timeline-header .patient-info {
    font-size: 13px;
    color: #6c757d;
}

.timeline-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 25px;
    border-left: 2px solid #e9ecef;
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left: 2px solid transparent;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #fff;
}

.timeline-item.current:before {
    background-color: #007bff;
}

.timeline-date {
    position: absolute;
    left: -95px;
    top: 0;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
}

.timeline-content {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-left: 15px;
}

.timeline-content h5 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    color: #343a40;
}

.treatment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.treatment-info span {
    font-size: 13px;
    color: #495057;
}

.timeline-odonto-preview {
    height: 50px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    margin-top: 10px;
}

.ai-recommendation {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: #007bff;
    margin-top: 10px;
}

.ai-recommendation i {
    color: #007bff;
}

/* Image Analysis Styles */
.image-analysis {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.xray-image {
    height: 180px;
    background-color: #212529;
    border-radius: 8px;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23343a40" width="50" height="50" x="0" y="0"/><rect fill="%23343a40" width="50" height="50" x="50" y="50"/><rect fill="%232b3035" width="50" height="50" x="50" y="0"/><rect fill="%232b3035" width="50" height="50" x="0" y="50"/></svg>');
    background-size: 20px 20px;
}

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

.mark {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #dc3545;
    animation: pulse 1.5s infinite;
}

.analysis-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.result-item.detected {
    border-left: 3px solid #dc3545;
}

.result-item.warning {
    border-left: 3px solid #ffc107;
}

.result-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-item.warning .result-icon {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.result-content h5 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #343a40;
}

.result-content p {
    margin: 0 0 5px;
    font-size: 13px;
    color: #6c757d;
}

.confidence {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

/* AI Analysis Demo Styles */
.ai-analysis-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.analysis-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.analysis-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.analysis-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: visible;
}

.patient-preview {
    display: flex;
    gap: 15px;
    align-items: center;
}

.patient-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
}

.patient-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #343a40;
    font-weight: 600;
}

.patient-info p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
}

.analysis-chart {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
}

.chart-title {
    font-size: 14px;
    color: #495057;
    margin-bottom: 15px;
    text-align: center;
}

.chart-visual {
    height: 150px;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
}

.chart-bar {
    width: 35px;
    background-color: #007bff;
    border-radius: 5px 5px 0 0;
    position: relative;
    opacity: 0.7;
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #6c757d;
    white-space: nowrap;
}

.chart-bar.warning {
    background-color: #ffc107;
    opacity: 0.8;
}

.chart-bar.prediction {
    background-color: #dc3545;
    opacity: 0.8;
    border: 2px dashed #dc3545;
    border-bottom: none;
}

.ai-recommendations {
    background-color: #e9f5ff;
    border-radius: 10px;
    padding: 15px;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.recommendation-header i {
    color: #007bff;
}

.recommendation-header h5 {
    margin: 0;
    font-size: 15px;
    color: #007bff;
    font-weight: 600;
}

.recommendation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.recommendation-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.recommendation-list li:last-child {
    border-bottom: none;
}

/* WhatsApp Demo Styles */
.whatsapp-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.whatsapp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #075E54;
    color: white;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-avatar img {
    width: 100%;
    height: auto;
}

.contact-details h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-actions i {
    font-size: 18px;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-actions i:hover {
    opacity: 1;
}

.messages-container {
    flex: 1;
    padding: 15px;
    background-color: #E5DDD5;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23d4cfc5" width="50" height="50" x="0" y="0"/><rect fill="%23d4cfc5" width="50" height="50" x="50" y="50"/><rect fill="%23e5ddd5" width="50" height="50" x="50" y="0"/><rect fill="%23e5ddd5" width="50" height="50" x="0" y="50"/></svg>');
    background-size: 30px 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.message.received {
    background-color: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.message.sent {
    background-color: #DCF8C6;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.message .time {
    font-size: 10px;
    color: #8b9193;
    display: block;
    text-align: right;
    margin-top: 5px;
}

.implementation-steps {
    margin-top: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    background-color: #0088ff;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.step-content p {
    font-size: 14px;
}

.demo-cta {
text-align: center;
margin-top: 20px;
}

.voice-benefits {
margin-bottom: 30px;
}

.voice-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #343a40;
}

.voice-testimonial {
    background-color: #f8f9fa;
    border-left: 4px solid #0088ff;
    border-radius: 0 8px 8px 0;
    padding: 20px;
    margin-bottom: 30px;
}

.voice-testimonial blockquote {
    margin: 0;
}

.voice-testimonial p {
    font-style: italic;
    font-size: 15px;
    color: #495057;
    margin-bottom: 10px;
}

.voice-testimonial cite {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    font-style: normal;
}

.voice-actions {
    text-align: right;
    margin-top: 25px;
    padding: 0 25px 25px;
}

.voice-actions .button-secondary {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.2s ease;
}

.voice-actions .button-primary {
    background-color: #0088ff;
    border: none;
    color: white;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.voice-actions .button-secondary:hover {
    background-color: #e9ecef;
}

.voice-actions .button-primary:hover {
    background-color: #0074d9;
}

.message.received::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent white transparent transparent;
}

.message.sent::before {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #DCF8C6 transparent transparent transparent;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #8b9193;
    display: block;
    opacity: 0.6;
    animation: typing 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.whatsapp-input {
    display: flex;
    padding: 10px;
    background-color: #F0F0F0;
    gap: 10px;
    align-items: center;
}

.whatsapp-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
}

.whatsapp-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #075E54;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Bot Conversation Demo Styles */
.bot-conversation-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.bot-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bot-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.bot-header .status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #28a745;
}

.bot-conversation {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bot-message,
.user-message {
    max-width: 80%;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.bot-message {
    background-color: #e9ecef;
    align-self: flex-start;
    color: #495057;
    border-top-left-radius: 0;
}

.user-message {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
    border-top-right-radius: 0;
    text-align: right;
}

.bot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.bot-option {
    padding: 8px 12px;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 13px;
    color: #007bff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bot-option:hover {
    background-color: #f1f8ff;
    border-color: #007bff;
}

.bot-typing {
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 10px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #adb5bd;
    animation: typing 1s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.bot-input {
    padding: 15px;
    background-color: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    align-items: center;
}

.bot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.bot-input input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.bot-input button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #007bff;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* AI Learning Demo Styles */
.ai-learning-demo {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.learning-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.learning-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.learning-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.learning-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    flex: 1;
    min-width: 120px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #6c757d;
}

.learning-graph {
    height: 180px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
}

.graph-title {
    font-size: 14px;
    color: #343a40;
    margin-bottom: 15px;
    font-weight: 500;
}

.graph-bars {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    padding-bottom: 30px;
}

.graph-bar {
    flex: 1;
    background-color: #007bff;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.graph-bar:nth-child(odd) {
    background-color: #6610f2;
}

.graph-bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #6c757d;
    white-space: nowrap;
}

.graph-axis {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    height: 1px;
    background-color: #dee2e6;
}

.training-phases {
    background-color: #f1f8ff;
    border-radius: 8px;
    padding: 15px;
}

.phase-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.phase-item:last-child {
    border-bottom: none;
}

.phase-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #cfe5ff;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.phase-icon.complete {
    background-color: #d4edda;
    color: #28a745;
}

.phase-content h5 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #343a40;
}

.phase-content p {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
}

.phase-progress {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.progress-bar-container {
    flex: 1;
    height: 5px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #007bff;
    border-radius: 10px;
}

.progress-percentage {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
}

/* Feature Content Box Styles */
.feature-content-box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.feature-content-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
}

.feature-content-box p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.highlight-item:nth-child(odd) {
    background-color: #e9f5ff;
}

.highlight-item:hover {
    background-color: #e9ecef;
}

.highlight-item:nth-child(odd):hover {
    background-color: #d0e8ff;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #007bff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
}

.highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

.highlight-item:nth-child(1) .highlight-icon {
    background-color: #e9f5ff;
    color: #007bff;
}

.highlight-item:nth-child(2) .highlight-icon {
    background-color: #e7f6ea;
    color: #28a745;
}

.highlight-item:nth-child(3) .highlight-icon {
    background-color: #fff2e6;
    color: #fd7e14;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 1s;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .feature-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .feature-detail-content {
        padding: 15px;
        margin-top: 30px;
    }
    
    .feature-hero h1.feature-title {
        font-size: 2.5rem;
    }
    
    .feature-stats {
        flex-wrap: wrap;
    }
    
    .feature-stat {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .feature-nav-card {
        margin-bottom: 20px;
    }
    
    .feature-hero {
        padding: 60px 0;
    }
    
    .feature-hero h1.feature-title {
        font-size: 2.2rem;
    }
    
    .feature-detail-image {
        margin-bottom: 30px;
    }
}

/* Estilos para la demo de llamadas telefónicas */
.phone-call-demo {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 100%;
    margin: 0 auto;
}

.phone-call-demo.wide {
    max-width: 320px;
    margin: 0 auto;
}

.phone-call-demo.wide .phone-device {
    max-width: 100%;
}

.phone-device {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 25px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 100;
}

.phone-screen {
    background: white;
    border-radius: 30px;
    min-height: 580px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.call-interface {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    position: relative;
}

.call-header {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    color: #495057;
    align-items: center;
}

.call-time {
    font-weight: 600;
    color: #007bff;
}

.call-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 5px;
}

.call-status {
    font-size: 12px;
    padding: 4px 12px;
    background-color: #e6f7e6;
    color: #28a745;
    border-radius: 12px;
    margin-top: 5px;
    display: inline-block;
}

.call-cta-text {
    text-align: center;
    padding: 20px 15px;
    margin-top: auto;
    margin-bottom: 80px;
}

.call-cta-text p {
    font-size: 16px;
    color: #007bff;
    font-weight: 500;
    animation: pulse-text 2s infinite;
    margin-bottom: 15px;
}

.pointing-finger {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
}

.pointing-finger i {
    font-size: 30px;
    color: #007bff;
    animation: bounce-finger 1.5s infinite;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

@keyframes bounce-finger {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes pulse-text {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.voice-visualization {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.voice-wave {
    display: flex;
    align-items: flex-end;
    height: 40px;
    gap: 3px;
}

.voice-wave span {
    width: 3px;
    height: 20px;
    background: #007bff;
    border-radius: 1px;
    animation: wave 0.5s infinite alternate;
}

@keyframes wave {
    0% {
        height: 8px;
    }
    100% {
        height: 25px;
    }
}

.voice-wave span:nth-child(2n) {
    animation-delay: 0.1s;
}

.voice-wave span:nth-child(3n) {
    animation-delay: 0.2s;
}

.voice-wave span:nth-child(4n) {
    animation-delay: 0.3s;
}

.voice-wave.active span {
    animation-play-state: running;
}

/* Estilos para el reproductor de audio */
.audio-player {
    margin: 15px 0;
    padding: 0 15px;
}

.player-container {
    background: #f5f9ff;
    border-radius: 10px;
    padding: 12px 15px;
}

.player-controls {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.player-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.player-btn:hover {
    background: #0069d9;
}

.player-timeline {
    background: #e0e6f0;
    height: 6px;
    flex-grow: 1;
    border-radius: 3px;
    position: relative;
    margin-right: 10px;
}

.timeline-progress {
    position: absolute;
    height: 100%;
    background: #007bff;
    border-radius: 3px;
}

.player-time {
    font-size: 12px;
    color: #666;
}

.player-volume {
    display: flex;
    align-items: center;
}

.player-volume i {
    color: #007bff;
    margin-right: 8px;
    font-size: 14px;
}

.volume-slider {
    background: #e0e6f0;
    height: 4px;
    width: 60px;
    border-radius: 2px;
    position: relative;
}

.volume-level {
    position: absolute;
    height: 100%;
    background: #007bff;
    border-radius: 2px;
}

.call-transcript {
    flex: 1;
    overflow-y: auto;
    padding: 6px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.7rem;
}

.transcript-item {
    margin-bottom: 6px;
    padding: 5px 8px;
    border-radius: 6px;
    position: relative;
}

.transcript-item.ai {
    background: #e9f5ff;
}

.transcript-item.user {
    background: #f0f0f0;
}

.transcript-item.active {
    border: 1px solid #007bff;
}

.transcript-item .speaker {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
    display: block;
    color: #495057;
}

.transcript-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #212529;
    line-height: 1.5;
}

.transcript-item.ai .speaker {
    color: #007bff;
}

.phone-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.call-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
}

.call-action-btn {
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: white;
}

.call-action-btn.mute {
    background: #6c757d;
}

.call-action-btn.end {
    background: #dc3545;
}

.call-action-btn.call {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    position: relative;
    overflow: hidden;
}

.call-action-btn.end {
    background: linear-gradient(135deg, #dc3545, #bd2130);
    position: relative;
    overflow: hidden;
    display: none;
}

.call-action-btn.call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.call-action-btn.call:active {
    transform: translateY(0);
}

.call-action-btn.call.active {
    background: linear-gradient(135deg, #dc3545, #bd2130);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.call-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.call-action-btn.speaker {
    background: #28a745;
}

.call-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Estilos para la sección 'Otras características de CRM Dentistas iA' */
.row > [class*="col-md"] {
    margin-bottom: 40px;
}

.feature-navigation {
    padding: 80px 0;
}

.feature-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    padding: 1.8rem;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.feature-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
}

/* Colores para los iconos de características */
.feature-card:nth-child(1) .feature-card-icon {
    background-color: rgba(0, 136, 255, 0.1);
    color: #0088ff;
}

.feature-card:nth-child(2) .feature-card-icon {
    background-color: rgba(0, 186, 136, 0.1);
    color: #00ba88;
}

.feature-card:nth-child(3) .feature-card-icon {
    background-color: rgba(255, 153, 0, 0.1);
    color: #ff9900;
}

.feature-card:nth-child(4) .feature-card-icon {
    background-color: rgba(153, 102, 255, 0.1);
    color: #9966ff;
}

.feature-card:nth-child(5) .feature-card-icon {
    background-color: rgba(255, 51, 102, 0.1);
    color: #ff3366;
}

.feature-card:nth-child(6) .feature-card-icon {
    background-color: rgba(51, 102, 255, 0.1);
    color: #3366ff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #212529;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    flex-grow: 1;
}

.feature-card-action {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0088ff;
    margin-top: auto;
}

.feature-card-action span {
    margin-right: 0.5rem;
}

.feature-card-action i {
    transition: transform 0.2s ease;
}

.feature-card:hover .feature-card-action i {
    transform: translateX(3px);
}

/* Estilos para dark mode */
[data-theme="dark"] .feature-card {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-card h3 {
    color: #f1f5f9;
}

[data-theme="dark"] .feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .feature-card-icon {
    opacity: 0.85;
}

[data-theme="dark"] .feature-card-action {
    color: #3b82f6;
}

/* Marketing Dashboard Styles */
.marketing-dashboard {
    background-color: var(--bg-primary, white);
    border-radius: var(--card-radius, 8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-width: 550px;
    margin: 0 auto;
    height: 100%;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(to right, var(--dental-primary, #0568ff), var(--dental-secondary, #2b55e5));
    color: white;
}

.dashboard-header h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-button {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    background-color: transparent;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dashboard-body {
    padding: 1.5rem;
}

.campaign-performance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.performance-card {
    padding: 1.2rem;
    border-radius: var(--card-radius, 8px);
    background-color: var(--bg-secondary, #f9fafc);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.performance-card.primary {
    border-left: 4px solid var(--dental-primary, #0568ff);
}

.performance-card.secondary {
    border-left: 4px solid var(--dental-accent, #00d2c9);
}

.performance-card.tertiary {
    border-left: 4px solid #6c757d;
}

.card-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary, #1a2258);
    margin-bottom: 0.3rem;
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-secondary, #5c6a8d);
    margin-bottom: 0.6rem;
}

.card-trend {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
}

.card-trend.positive {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.card-trend.negative {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.chart-section {
    background-color: var(--bg-secondary, #f9fafc);
    padding: 1.5rem;
    border-radius: var(--card-radius, 8px);
    margin-bottom: 1.5rem;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a2258);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bar-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 200px;
}

.chart-bar {
    width: 40px;
    height: calc(var(--height) * 180px / 100);
    background-color: var(--color);
    border-radius: 4px 4px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: height 0.5s ease;
}

.bar-value {
    position: absolute;
    top: -25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary, #1a2258);
}

.bar-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.8rem;
    color: var(--text-secondary, #5c6a8d);
}

.ai-insight {
    background-color: rgba(var(--dental-primary-rgb, 5, 104, 255), 0.08);
    border-radius: var(--card-radius, 8px);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dental-primary, #0568ff);
    border-left: 4px solid var(--dental-primary, #0568ff);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.ai-insight.active {
    transform: translateY(0);
    opacity: 1;
}

.ai-insight i {
    font-size: 1.2rem;
    color: var(--dental-primary, #0568ff);
}

/* Campaign Manager Demo Styles */
.campaign-manager-demo {
    background-color: var(--bg-primary, white);
    border-radius: var(--card-radius, 8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-width: 550px;
    margin: 0 auto;
    height: 100%;
}

.manager-header {
    background: linear-gradient(to right, var(--dental-primary, #0568ff), var(--dental-accent, #00d2c9));
    padding: 1.2rem 1.5rem;
    color: white;
}

.manager-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.manager-body {
    padding: 1.5rem;
}

.campaign-editor {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.campaign-setup {
    background-color: var(--bg-secondary, #f9fafc);
    border-radius: var(--card-radius, 8px);
    padding: 1.2rem;
}

.setup-group {
    margin-bottom: 1rem;
}

.setup-group h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a2258);
    margin: 0 0 0.8rem 0;
}

.setup-row {
    display: flex;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.setup-label {
    min-width: 100px;
    color: var(--text-secondary, #5c6a8d);
    font-weight: 500;
}

.setup-value {
    color: var(--text-primary, #1a2258);
    font-weight: 500;
}

.message-editor {
    background-color: var(--bg-secondary, #f9fafc);
    border-radius: var(--card-radius, 8px);
    overflow: hidden;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background-color: var(--bg-tertiary, #f0f4f9);
    border-bottom: 1px solid var(--border-color, rgba(215, 225, 239, 0.6));
}

.editor-header h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #1a2258);
}

.personalization-tags {
    display: flex;
    gap: 5px;
}

.personalization-tags .tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background-color: var(--dental-accent, #00d2c9);
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

.editor-content {
    padding: 1.2rem;
}

.editor-content p {
    margin: 0 0 0.8rem 0;
    font-size: 0.9rem;
    color: var(--text-primary, #1a2258);
    line-height: 1.5;
}

.ai-assistant {
    background-color: var(--bg-secondary, #f9fafc);
    border-radius: var(--card-radius, 8px);
    padding: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.ai-assistant.active {
    transform: translateY(0);
    opacity: 1;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    color: var(--dental-primary, #0568ff);
    font-weight: 600;
    font-size: 0.9rem;
}

.ai-header i {
    font-size: 1rem;
}

.ai-suggestion {
    font-size: 0.85rem;
    color: var(--text-primary, #1a2258);
    line-height: 1.5;
}

.ai-suggestion p {
    margin: 0 0 0.8rem 0;
}

.ai-suggestion button {
    background-color: var(--dental-primary, #0568ff);
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: var(--button-radius, 4px);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ai-suggestion button:hover {
    background-color: var(--dental-secondary, #2b55e5);
}

/* Integration/Campaign Workflow Styles */
.integration-demo {
    background-color: var(--bg-primary, white);
    border-radius: var(--card-radius, 8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-width: 550px;
    margin: 0 auto;
    height: 100%;
}

.integration-header {
    background: linear-gradient(to right, var(--dental-accent, #00d2c9), var(--dental-primary, #0568ff));
    padding: 1.2rem 1.5rem;
    color: white;
}

.integration-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.integration-body {
    padding: 1.5rem;
    background-color: var(--bg-secondary, #f9fafc);
}

.campaign-workflow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 1.5rem;
    background-color: rgba(var(--dental-primary-rgb, 5, 104, 255), 0.05);
    border-radius: var(--card-radius, 8px);
    padding: 2rem 1.5rem;
    position: relative;
    justify-content: space-between;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 22%;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.workflow-step:hover .workflow-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--dental-primary-rgb, 5, 104, 255), 0.15);
}

.workflow-step.active {
    border-left: 4px solid var(--dental-primary, #0568ff);
    box-shadow: 0 4px 15px rgba(var(--dental-primary-rgb, 5, 104, 255), 0.15);
}

.workflow-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--bg-tertiary, #f0f4f9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #5c6a8d);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.workflow-step:nth-child(1) .workflow-icon {
    background-color: rgba(5, 104, 255, 0.1);
    color: #0568ff;
}

.workflow-step:nth-child(3) .workflow-icon {
    background-color: rgba(1, 87, 155, 0.1);
    color: #01579b;
}

.workflow-step:nth-child(5) .workflow-icon {
    background-color: rgba(229, 57, 53, 0.1);
    color: #e53935;
}

.workflow-step:nth-child(7) .workflow-icon {
    background-color: rgba(67, 160, 71, 0.1);
    color: #43a047;
}

.workflow-step.active .workflow-icon {
    background-color: rgba(var(--dental-primary-rgb, 5, 104, 255), 0.15);
    color: var(--dental-primary, #0568ff);
}

.workflow-content {
    width: 100%;
    text-align: center;
}

.workflow-content h5 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: var(--text-primary, #1a2258);
    font-weight: 600;
}

.workflow-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #5c6a8d);
    line-height: 1.5;
}

.workflow-connector {
    position: absolute;
    top: 30px;
    color: var(--dental-primary, #0568ff);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.workflow-connector:nth-child(2) {
    left: 24%;
}

.workflow-connector:nth-child(4) {
    left: 49%;
}

.workflow-connector:nth-child(6) {
    left: 74%;
}

.workflow-connector i {
    background-color: var(--bg-secondary, #f9fafc);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.integration-demo .ai-insight {
    background-color: rgba(var(--dental-primary-rgb, 5, 104, 255), 0.08);
    border-radius: var(--card-radius, 8px);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-primary, #1a2258);
    border-left: 4px solid var(--dental-primary, #0568ff);
}

.integration-demo .ai-insight i {
    font-size: 1.2rem;
    color: var(--dental-primary, #0568ff);
    flex-shrink: 0;
}

.integration-demo .ai-insight p {
    margin: 0;
    line-height: 1.4;
}

/* Patient Journey Demo Styles */
.patient-journey-demo {
    background-color: var(--bg-primary, white);
    border-radius: var(--card-radius, 8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-width: 550px;
    margin: 0 auto;
    height: 100%;
}

.journey-header {
    background: linear-gradient(to right, var(--dental-secondary, #2b55e5), var(--dental-primary, #0568ff));
    padding: 1.2rem 1.5rem;
    color: white;
}

.journey-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.journey-body {
    padding: 1.5rem;
}

.journey-map {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.journey-node {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--card-radius, 8px);
    background-color: var(--bg-secondary, #f9fafc);
    border-left: 4px solid var(--border-color, rgba(215, 225, 239, 0.6));
    opacity: 0.7;
    transition: all 0.3s ease;
}

.journey-node.active {
    border-left: 4px solid var(--dental-accent, #00d2c9);
    opacity: 1;
}

.journey-node.current {
    border-left: 4px solid var(--dental-primary, #0568ff);
    box-shadow: 0 4px 15px rgba(var(--dental-primary-rgb, 5, 104, 255), 0.15);
    opacity: 1;
}

.node-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-tertiary, #f0f4f9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #5c6a8d);
}

.journey-node.active .node-icon {
    background-color: rgba(var(--dental-accent-rgb, 0, 210, 201), 0.1);
    color: var(--dental-accent, #00d2c9);
}

.journey-node.current .node-icon {
    background-color: rgba(var(--dental-primary-rgb, 5, 104, 255), 0.1);
    color: var(--dental-primary, #0568ff);
}

.node-content {
    flex: 1;
}

.node-content h5 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    color: var(--text-primary, #1a2258);
    font-weight: 600;
}

.node-content p {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #5c6a8d);
}

.node-timing {
    font-size: 0.75rem;
    color: var(--text-light, #8a9bbd);
    font-style: italic;
}

.journey-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color, rgba(215, 225, 239, 0.6));
    font-size: 0.8rem;
    height: 20px;
}

.journey-connector i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

.journey-analytics {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--bg-secondary, #f9fafc);
    border-radius: var(--card-radius, 8px);
}

.analytics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.analytics-label {
    font-size: 0.8rem;
    color: var(--text-secondary, #5c6a8d);
}

.analytics-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dental-primary, #0568ff);
}

/* Fix for Marketing Dashboard - Asegurando clases específicas */
.marketing-dashboard .dashboard-body {
    padding: 1.5rem;
}

.marketing-dashboard .dashboard-header h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .row > [class*="col-md"] {
        margin-bottom: 30px;
    }

    /* Responsive ajustments for marketing components */
    .marketing-dashboard,
    .campaign-manager-demo,
    .patient-journey-demo {
        max-width: 100%;
    }

    .campaign-performance {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bar-chart {
        height: 150px;
    }

    .chart-bar {
        width: 30px;
    }

    .setup-row {
        flex-direction: column;
        gap: 5px;
    }

    .editor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .personalization-tags {
        flex-wrap: wrap;
    }
    
    /* Responsive styles for campaign workflow */
    .integration-demo {
        max-width: 100%;
    }
    
    .campaign-workflow {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }
    
    .workflow-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 0.8rem;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .workflow-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0;
        border-radius: 8px;
    }
    
    .workflow-content {
        text-align: left;
        flex: 1;
    }
    
    .workflow-content h5 {
        font-size: 0.95rem;
    }
    
    .workflow-content p {
        font-size: 0.8rem;
    }
    
    .workflow-connector {
        position: relative;
        top: auto;
        left: auto !important;
        width: 100%;
        height: 20px;
        justify-content: center;
    }
    
    .workflow-connector i {
        transform: rotate(90deg);
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
    .feature-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}
