:root {
    --primary-blue: #0045FF;
    --secondary-blue: #2563EB;
    --accent-blue: #60A5FA;
    --dark-bg: #000000;
    --dark-gray: #111827;
    --light-gray: #374151;
    --text-white: #F9FAFB;
    --light-bg: #F9FAFB;
    --text-dark: #111827;
    --red-accent: #EF4444;
    --green-accent: #10B981;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-theme {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.presentation-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.cover-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: transparent;
    border: none;
    animation: fadeIn 1s ease forwards;
}

.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.logo {
    width: 220px;
    height: auto;
    margin-bottom: 40px;
    opacity: 0;
    filter: drop-shadow(0 0 15px rgba(0, 69, 255, 0.5));
}

.glow {
    filter: drop-shadow(0 0 15px rgba(0, 69, 255, 0.8));
}

.company-name {
    font-size: 90px;
    font-weight: 700;
    color: #0045FF;
    opacity: 0;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 69, 255, 0.3);
}

.tagline {
    font-size: 28px;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
    line-height: 1.6;
    font-weight: 500;
}

.presenter-info {
    margin-top: 60px;
    font-size: 22px;
    opacity: 0;
    text-align: center;
}

.presenter-name {
    font-weight: 600;
    color: var(--accent-blue);
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(30, 64, 175, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(30, 64, 175, 0.05) 1px, transparent 1px);
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.particle {
    position: absolute;
    background-color: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
}

.toggle-theme {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
}

.toggle-theme:hover {
    background: rgba(96, 165, 250, 0.1);
}

/* Controles de navegación */
.navigation-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
}

.nav-button {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover:not(:disabled) {
    background: rgba(96, 165, 250, 0.1);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slide-indicator {
    font-size: 16px;
    color: var(--accent-blue);
}

/* Estilos para el slide 2 */
.slide-header {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
}

.description {
    font-size: 28px;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
}

.chart-container {
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: scale(0.9);
}

.chart-wrapper {
    position: relative;
    width: 600px;
    height: 480px;
}

.chart-inner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.chart-inner-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.chart-inner-text p {
    font-size: 18px;
    line-height: 1.4;
}

.stat-box {
    background: rgba(0, 69, 255, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent-blue);
    margin-right: 30px;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.stat-content p {
    font-size: 22px;
    line-height: 1.5;
}



.page-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    opacity: 0.5;
}

/* Estilos para el slide 3 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.service-category {
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    font-size: 32px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    flex-shrink: 0;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.impact-chart-container {
    width: 100%;
    height: 380px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.chart-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-blue);
}

/* Estilos para el slide 4 */
.content-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    height: 800px;
    width: 100%;
}

.target-container {
    flex: 1.2;
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    margin-right: 30px;
}

.target-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.target-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
}

.target-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-blue);
}

.target-description {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.target-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.target-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.target-list-vertical .target-item {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 69, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.target-list-vertical .target-item:hover {
    background-color: rgba(0, 69, 255, 0.05);
    transform: translateX(5px);
}

.target-list-vertical .target-item:last-child {
    border-bottom: none;
}

.target-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 69, 255, 0.2), rgba(0, 69, 255, 0.4));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 3px 8px rgba(0, 69, 255, 0.15);
    transition: all 0.3s ease;
}

.target-item:hover .target-item-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 12px rgba(0, 69, 255, 0.25);
}

.target-item-text {
    font-size: 18px;
    line-height: 1.5;
}

.target-list-vertical .target-item-text {
    font-size: 19px;
    line-height: 1.6;
}

.target-list-vertical .target-item-text strong {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 20px;
}

.chart-container.resource-chart {
    flex: 0.8;
    background: rgba(0, 69, 255, 0.05);
    border: 1px solid rgba(0, 69, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.chart-header {
    text-align: center;
    margin-bottom: 20px;
}

.chart-subtitle {
    font-size: 18px;
    opacity: 0.8;
}

.chart-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-caption {
    text-align: center;
    font-size: 16px;
    opacity: 0.7;
    margin-top: 20px;
    font-style: italic;
}

/* Estilos para el slide 5 */
.advantages-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage-card {
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.advantage-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 69, 255, 0.15);
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
}

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
}

.advantage-description {
    font-size: 18px;
    line-height: 1.5;
}

.chart-section {
    width: 900px;
    margin-bottom: 40px;
}

.metrics-section {
    width: 100%;
    margin-top: 40px;
    padding: 0 40px;
}

.metrics-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
}

.growth-chart-container {
    background: rgba(0, 69, 255, 0.05);
    border: 1px solid rgba(0, 69, 255, 0.15);
    border-radius: 16px;
    padding: 25px;
    height: 480px;
    opacity: 0;
    transform: translateY(20px);
}

.metric-box {
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    min-height: 200px;
    box-shadow: 0 5px 15px rgba(0, 69, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 69, 255, 0.2);
}

.metric-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 69, 255, 0.3);
}

.metric-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.metric-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 100%;
}

.growth-bar-container {
    margin-top: 15px;
    width: 100%;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.growth-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    width: 0%;
    border-radius: 18px;
    position: relative;
    transition: width 1.5s ease;
    box-shadow: 0 2px 10px rgba(0, 69, 255, 0.3);
}

.growth-bar-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Estilos para el slide 6 */
.qr-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.qr-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.9);
}

.qr-code {
    width: 400px;
    height: 400px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow:
        0 0 30px rgba(0, 69, 255, 0.3),
        0 0 60px rgba(0, 69, 255, 0.2),
        0 0 90px rgba(0, 69, 255, 0.1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0) 50%
    );
    transform: rotate(45deg);
    z-index: 1;
    pointer-events: none;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.logo-overlay svg {
    width: 60px;
    height: 60px;
}

.call-to-action {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.subtitle {
    font-size: 22px;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.orbiting-phrases {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.phrase {
    position: absolute;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-blue);
    opacity: 0.7;
    text-align: center;
    width: 200px;
    transform-origin: center;
    animation: fadeInOut 10s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.scan-animation {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    position: absolute;
    top: 0;
    left: 0;
    animation: scanMove 3s ease-in-out infinite;
    z-index: 2;
    opacity: 0.7;
}

@keyframes scanMove {
    0%, 100% { top: 20px; }
    50% { top: 380px; }
}

/* Estilos para el slide 7 */
.process-container {
    flex: 3;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.process-description {
    font-size: 24px;
    line-height: 1.6;
    margin-top: 30px;
    max-width: 1000px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.key-message {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-blue);
    margin: 30px 0;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
}

.process-flow {
    display: flex;
    align-items: center;
    margin: 40px 0;
    position: relative;
    padding: 20px 0;
}

.process-step {
    position: relative;
    width: 220px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-white);
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(0, 69, 255, 0.4);
    position: relative;
    z-index: 2;
}

.process-step-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.process-step-desc {
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
}

.process-arrow {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    position: relative;
    z-index: 1;
    opacity: 0;
}

.process-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--accent-blue);
    border-right: 3px solid var(--accent-blue);
    transform: translateY(-50%) rotate(45deg);
}

.testimonial-container {
    flex: 2;
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(20px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--text-white);
}

.testimonial-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
}

.video-container {
    width: 100%;
    margin: 30px 0 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 56.25%; /* Proporción 16:9 para el video */
    height: 0;
}

.video-container iframe {
    border: none;
    display: block;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    margin: 20px 0 30px;
    font-style: italic;
    flex: 1;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 60px;
    color: var(--accent-blue);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.testimonial-quote::before {
    left: -15px;
    top: -15px;
}

.testimonial-quote::after {
    right: -15px;
    bottom: -50px;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
    align-self: flex-end;
}

.client-logo {
    width: 60px;
    height: 60px;
    background: var(--dark-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-blue);
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
}

.client-position {
    font-size: 16px;
    opacity: 0.8;
}

/* Estilos para el slide 8 */
.slide-subheader {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.8;
    opacity: 0;
    transform: translateY(20px);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 69, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.comparison-table thead th {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

.comparison-table thead th:first-child {
    width: 20%;
}

.comparison-table thead th:not(:first-child) {
    text-align: center;
    width: 40%;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: rgba(0, 69, 255, 0.05);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(0, 69, 255, 0.1);
}

.comparison-table tbody td {
    padding: 14px 20px;
    font-size: 18px;
    border-top: 1px solid rgba(0, 69, 255, 0.1);
    vertical-align: middle;
}

.comparison-table tbody td:not(:first-child) {
    text-align: center;
}

.positive {
    color: var(--green-accent);
}

.negative {
    color: var(--red-accent);
}

.icon-yes {
    color: var(--green-accent);
    margin-right: 5px;
}

.icon-no {
    color: var(--red-accent);
    margin-right: 5px;
}

.note {
    font-size: 16px;
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-highlight {
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-20px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.highlight-content p {
    font-size: 18px;
    line-height: 1.5;
}

/* Estilos para el slide 9 */
.call-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 50px;
    box-sizing: border-box;
}

.phone-frame {
    width: 500px;
    height: 620px;
    background: rgba(0, 69, 255, 0.08);
    border: 2px solid rgba(0, 69, 255, 0.3);
    border-radius: 30px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow:
        0 0 30px rgba(0, 69, 255, 0.2),
        0 0 60px rgba(0, 69, 255, 0.1);
    opacity: 0;
    transform: scale(0.95);
    margin: 0 auto;
    z-index: 5;
}

.phone-number {
    font-size: 46px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-blue);
    margin: 20px 0;
    letter-spacing: 2px;
}

.call-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-white);
    margin: 30px 0;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 69, 255, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 69, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 69, 255, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 69, 255, 0.5);
    }
}

.call-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 69, 255, 0.8);
}

.call-to-action {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 30px 0;
    color: var(--text-white);
}

.call-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.testimonial-bubble {
    position: absolute;
    width: 220px;
    z-index: 20;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards, float 3s ease-in-out infinite;
}

.testimonial-left {
    top: 50%;
    left: 350px;
    transform: translateY(-50%);
    animation-delay: 0.2s, 0.5s;
}

.testimonial-right {
    top: 50%;
    right: 350px;
    transform: translateY(-50%);
    animation-delay: 0.4s, 0.7s;
}

.testimonial-content {
    position: relative;
    background: rgba(0, 69, 255, 0.3);
    border: 1px solid rgba(0, 69, 255, 0.5);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 1px 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.testimonial-content:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(0, 69, 255, 0.3);
    border-right: 1px solid rgba(0, 69, 255, 0.5);
    border-bottom: 1px solid rgba(0, 69, 255, 0.5);
    transform: rotate(45deg);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-left .testimonial-content:before {
    top: 50%;
    right: -10px;
    margin-top: -10px;
    transform: rotate(-45deg);
}

.testimonial-right .testimonial-content:before {
    top: 50%;
    left: -10px;
    margin-top: -10px;
    transform: rotate(135deg);
}

.testimonial-bubble:hover .testimonial-content {
    background: rgba(0, 69, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 1px 30px rgba(255, 255, 255, 0.15);
}

.testimonial-bubble:hover .testimonial-content:before {
    background: rgba(0, 69, 255, 0.4);
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: -8px;
    top: -5px;
    font-size: 30px;
    color: rgba(0, 140, 255, 0.6);
    font-family: Georgia, serif;
}

.testimonial-author {
    font-size: 14px;
    text-align: right;
    font-weight: 600;
    color: var(--accent-blue);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

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

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

.voice-waves {
    display: flex;
    align-items: center;
    height: 60px;
    gap: 6px;
    margin: 20px 0;
}

.wave-bar {
    width: 6px;
    background: var(--primary-blue);
    border-radius: 3px;
    opacity: 0.7;
    transform-origin: bottom;
}

.wave-bar-1 { height: 25px; }
.wave-bar-2 { height: 40px; }
.wave-bar-3 { height: 20px; }
.wave-bar-4 { height: 35px; }
.wave-bar-5 { height: 45px; }
.wave-bar-6 { height: 30px; }
.wave-bar-7 { height: 15px; }
.wave-bar-8 { height: 25px; }
.wave-bar-9 { height: 38px; }
.wave-bar-10 { height: 20px; }

.left-features, .right-features {
    position: absolute;
    width: 300px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 10, 30, 0.7);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 69, 255, 0.3);
}

.left-features {
    left: 30px;
}

.right-features {
    right: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    background: rgba(0, 69, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(0, 69, 255, 0.25);
    transform: translateY(-5px);
}

.right-features .feature {
    transform: translateX(20px);
}

.right-features .feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 69, 255, 0.3);
    border: 1px solid rgba(0, 69, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-white);
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    color: var(--text-white);
}

.or-separator {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 15px 0;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.separator-text {
    padding: 0 15px;
    font-size: 14px;
    opacity: 0.6;
}

.link-button {
    background: rgba(0, 69, 255, 0.2);
    border: 1px solid var(--primary-blue);
    color: var(--accent-blue);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.link-button:hover {
    background: rgba(0, 69, 255, 0.4);
    transform: translateY(-2px);
}

/* Estilos para el widget de ElevenLabs Convai */
.convai-widget-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 30px auto 0;
    position: relative;
    z-index: 10;
    transform: translateX(-70px); /* Mover 70px a la izquierda */
}

/* Estilos para el slide 10 */
.pricing-info-box {
    background: linear-gradient(135deg, rgba(0, 69, 255, 0.08) 0%, rgba(0, 69, 255, 0.15) 100%);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease forwards 0.3s;
}

.pricing-info-icon {
    font-size: 24px;
    color: var(--accent-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-info-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--text-white);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 30px auto;
    max-width: 1200px;
}

.pricing-left {
    flex: 1;
    min-width: 400px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.6s ease forwards;
    display: flex;
    flex-direction: column;
}

.pricing-right {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.pricing-maintenance {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.pricing-bottom-container {
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

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

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 69, 255, 0.15);
    margin-bottom: 0;
}

.pricing-table thead th {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--text-white);
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-table thead th:first-child {
    border-top-left-radius: 12px;
}

.pricing-table thead th:last-child {
    border-top-right-radius: 12px;
}

.pricing-table tbody tr:nth-child(odd) {
    background-color: rgba(0, 69, 255, 0.05);
}

.pricing-table tbody tr:nth-child(even) {
    background-color: rgba(0, 69, 255, 0.1);
}

.pricing-table tbody td {
    padding: 18px 20px;
    font-size: 18px;
    border-top: 1px solid rgba(0, 69, 255, 0.1);
    transition: all 0.2s ease;
}

.pricing-table tbody tr:hover {
    background-color: rgba(0, 69, 255, 0.2);
}

.pricing-table tbody tr:hover td {
    color: var(--accent-blue);
}

.pricing-card {
    background: linear-gradient(135deg, rgba(0, 69, 255, 0.08) 0%, rgba(0, 69, 255, 0.12) 100%);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 69, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 69, 255, 0.1) 0%, rgba(0, 69, 255, 0.18) 100%);
    border-color: rgba(0, 69, 255, 0.3);
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
}

.pricing-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.pricing-feature i {
    color: var(--accent-blue);
    margin-right: 10px;
    font-size: 18px;
}

.note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 15px 0 25px;
    font-style: italic;
}

.cta-container {
    background: linear-gradient(135deg, rgba(0, 69, 255, 0.15) 0%, rgba(0, 69, 255, 0.25) 100%);
    border: 1px solid rgba(0, 69, 255, 0.3);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    align-items: center;
    margin: 30px auto 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

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

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
}

.cta-button {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 69, 255, 0.3);
    margin-left: 30px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 69, 255, 0.5);
    background: var(--secondary-blue);
}

.cta-button i {
    margin-right: 10px;
}

/* Estilos para el slide 11 */
.content-container {
    display: flex;
    gap: 40px;
    flex-grow: 1;
}

.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-box {
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
}

.vision-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
}

.vision-quote {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.vision-quote::before,
.vision-quote::after {
    content: '"';
    font-size: 60px;
    color: var(--accent-blue);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.vision-quote::before {
    left: -10px;
    top: -15px;
}

.vision-quote::after {
    right: -10px;
    bottom: -40px;
}

.reasons-box {
    background: rgba(0, 69, 255, 0.05);
    border: 1px solid rgba(0, 69, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.reasons-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.reasons-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
}

.reasons-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
}

.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 69, 255, 0.1);
    border: 1px solid rgba(0, 69, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-blue);
    margin-right: 20px;
    flex-shrink: 0;
}

.reason-content {
    flex: 1;
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.reason-description {
    font-size: 16px;
    line-height: 1.5;
}

.impact-chart-container {
    width: 100%;
    height: 540px;
    background: rgba(0, 69, 255, 0.05);
    border: 1px solid rgba(0, 69, 255, 0.15);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.chart-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-align: center;
}

.chart-subtitle {
    font-size: 18px;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 30px;
}

.chart-wrapper {
    flex: 1;
    position: relative;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

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

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color-before {
    background-color: rgba(96, 165, 250, 0.7);
}

.legend-color-after {
    background-color: rgba(0, 69, 255, 0.7);
}

/* Estilos para el slide 12 */
#slide-12 {
    display: none !important;
}

.message-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
}

.closing-message {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--accent-blue);
}

.message-description {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    animation: fadeInLeft 0.5s ease forwards 0.3s;
    opacity: 0;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 69, 255, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.5;
}

.form-container {
    flex: 1;
    background: rgba(0, 69, 255, 0.05);
    border: 1px solid rgba(0, 69, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 69, 255, 0.1);
    opacity: 0;
    transform: translateX(20px);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 69, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    color: var(--text-white);
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(0, 69, 255, 0.3);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 69, 255, 0.3);
    margin-top: 15px;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 69, 255, 0.5);
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    min-height: 24px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    flex: 1;
    min-width: 200px;
}

.contact-item i {
    color: var(--accent-blue);
    font-size: 22px;
}

.cta-message {
    background: rgba(0, 69, 255, 0.1);
    border-left: 4px solid var(--primary-blue);
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    color: var(--accent-blue);
}

.highlight {
    color: var(--accent-blue);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 69, 255, 0.1);
    border: 1px solid rgba(0, 69, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* Estilos para el slide 13 */
.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.testimonial-row {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 50px;
    color: var(--accent-blue);
    opacity: 0.3;
    position: absolute;
    left: -15px;
    top: -20px;
    line-height: 1;
}

.testimonial-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.metric-item {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    background: rgba(0, 69, 255, 0.1);
    border-radius: 10px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.metric-label {
    font-size: 14px;
    opacity: 0.9;
}

.success-story {
    background: rgba(0, 69, 255, 0.05);
    border: 1px solid rgba(0, 69, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.story-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    flex-shrink: 0;
}

.story-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
}

.story-content {
    display: flex;
    gap: 40px;
}

.story-text {
    flex: 3;
}

.story-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-chart {
    flex: 2;
    height: 300px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.chart-container {
    width: 100%;
    height: 100%;
}

.story-results {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 69, 255, 0.1);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
}

.result-icon {
    color: var(--accent-blue);
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
    opacity: 0;
}

.logo-placeholder {
    width: 140px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 18px;
}

/* Estilos para el slide 14 - Gracias */
.logo-container {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
}

.logo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 69, 255, 0.5));
}

.thank-you {
    font-size: 120px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
    line-height: 1.2;
}

.subtitle {
    font-size: 32px;
    max-width: 1000px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: rgba(0, 69, 255, 0.08);
    border: 1px solid rgba(0, 69, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    width: 280px;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 69, 255, 0.2);
    background: rgba(0, 69, 255, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 69, 255, 0.3);
}

.contact-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.contact-info {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
}

.cta-button {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 69, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 69, 255, 0.5);
}

.cta-button i {
    font-size: 28px;
}

.website {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-blue);
    opacity: 0.8;
}

.glow-circle {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(
        circle,
        rgba(0, 69, 255, 0.1) 0%,
        rgba(0, 69, 255, 0.05) 30%,
        rgba(0, 0, 0, 0) 70%
    );
    border-radius: 50%;
    z-index: -1;
}

/* Responsive styles */
/* Estilos responsivos para todos los dispositivos */
@media (max-width: 1366px) {
    /* Ajustes para laptops y pantallas medianas */
    .company-name {
        font-size: 70px;
    }

    .tagline {
        font-size: 24px;
    }

    .slide-header {
        font-size: 50px;
    }

    .description {
        font-size: 24px;
    }

    .service-grid {
        gap: 30px;
    }

    .content-container {
        height: auto;
        min-height: 600px;
    }

    .chart-container {
        height: 400px;
    }

    .chart-wrapper {
        width: 500px;
        height: 400px;
    }

    .pricing-container {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    /* Ajustes para tablets en horizontal y laptops pequeñas */
    .company-name {
        font-size: 60px;
    }

    .tagline {
        font-size: 22px;
    }

    .presenter-info {
        font-size: 20px;
    }

    .slide-header {
        font-size: 45px;
        margin-bottom: 30px;
    }

    .description {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-category {
        padding: 25px;
    }

    .content-container {
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    .target-container, .chart-container {
        width: 100%;
    }

    .target-list {
        grid-template-columns: 1fr;
    }

    /* Ajustes para la página de Demo de Llamada por Voz */
    .call-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .left-features, .right-features {
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 20px;
        background: rgba(0, 10, 30, 0.5);
    }

    .phone-frame {
        width: 100%;
        max-width: 450px;
        margin: 20px auto;
    }

    .testimonial-bubble {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 15px auto;
        transform: none !important;
    }

    .testimonial-left .testimonial-content:before,
    .testimonial-right .testimonial-content:before {
        display: none;
    }

    /* Ajustes para la página de precios */
    .pricing-container {
        flex-direction: column;
    }

    .pricing-left, .pricing-right, .pricing-maintenance {
        width: 100%;
    }

    .pricing-table {
        overflow-x: auto;
    }

    /* Ajustes para testimonios */
    .testimonial-row {
        flex-direction: column;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* Ajustes para tablets en vertical y móviles grandes */
    .company-name {
        font-size: 48px;
    }

    .tagline {
        font-size: 18px;
    }

    .presenter-info {
        font-size: 16px;
    }

    .logo {
        width: 180px;
    }

    .slide-header {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .description {
        font-size: 20px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .stat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 24px;
    }

    .target-header {
        flex-direction: column;
        text-align: center;
    }

    .target-icon {
        margin-bottom: 15px;
    }

    .target-title {
        font-size: 28px;
    }

    .target-description {
        font-size: 20px;
    }

    /* Ajustes para la página de contacto */
    .message-container, .form-container {
        width: 100%;
        padding: 20px;
    }

    .contact-info-left {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-icon {
        margin-bottom: 15px;
    }

    /* Ajustes para la navegación */
    .navigation-controls {
        bottom: 10px;
    }

    .nav-button {
        width: 35px;
        height: 35px;
    }

    /* Ajustes para la página de Demo de Llamada por Voz */
    .widget-container {
        width: 100%;
        max-width: 350px;
    }

    .phone-number {
        font-size: 36px;
    }

    .call-to-action {
        font-size: 26px;
    }

    .call-description {
        font-size: 16px;
    }

    .feature {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para móviles */
    .company-name {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }

    .presenter-info {
        font-size: 14px;
    }

    .logo {
        width: 150px;
    }

    .slide-header {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .slide {
        padding: 1rem;
    }

    .stat-content h3 {
        font-size: 28px;
    }

    .stat-content p {
        font-size: 16px;
    }

    .service-category {
        padding: 20px;
    }

    .service-item {
        margin-bottom: 15px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .service-name {
        font-size: 16px;
    }

    .target-container {
        padding: 20px;
    }

    .target-title {
        font-size: 24px;
    }

    .target-description {
        font-size: 18px;
    }

    .target-item-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Ajustes para la página de Demo de Llamada por Voz */
    .phone-frame {
        padding: 15px;
    }

    .phone-number {
        font-size: 28px;
    }

    .call-to-action {
        font-size: 22px;
    }

    .call-description {
        font-size: 14px;
    }

    .voice-waves {
        height: 40px;
    }

    /* Ajustes para la página de precios */
    .pricing-card {
        padding: 15px;
    }

    .pricing-title {
        font-size: 20px;
    }

    .pricing-description {
        font-size: 14px;
    }

    .pricing-feature {
        font-size: 14px;
    }

    /* Ajustes para testimonios */
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar {
        margin: 0 auto 15px;
    }

    .testimonial-name {
        font-size: 20px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .metric-item {
        padding: 10px;
    }

    .metric-value {
        font-size: 22px;
    }

    .metric-label {
        font-size: 12px;
    }

    /* Ajustes para la página de contacto */
    .form-title {
        font-size: 24px;
    }

    .form-subtitle {
        font-size: 16px;
    }

    .form-input, .form-textarea {
        padding: 10px;
    }

    .form-button {
        padding: 12px;
        font-size: 16px;
    }

    .page-number {
        font-size: 12px;
        bottom: 10px;
        right: 10px;
    }
}
