/* Variables */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --warning: #ffc107;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    --gradient-3: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --bg-light: #f8f9fa;
    --bg-dark: #1a202c;
}

/* Estilos generales */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    color: var(--text-primary);
}

/* Navbar responsivo */
.navbar {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar .btn-glass {
    background: var(--gradient-3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.navbar .btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.navbar .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Contenedor de partículas */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-glow {
    background: var(--gradient-3);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    color: white;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: 1px solid rgba(13, 110, 253, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--primary);
    transform: translateY(-2px);
}

.trial-badge {
    display: inline-block;
}

.trial-badge .badge {
    background: var(--warning);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .video-wrapper {
        margin-top: 2rem;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* Features Section responsivo */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.features-section h2,
.features-section h3,
.features-section h4,
.features-section p {
    color: white;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.feature-card {
    height: 100%;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Estilos para el paso a paso */
.steps-container {
    position: relative;
    margin-top: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0d6efd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

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

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section responsivo */
.pricing-section {
    padding: 4rem 0;
}

/* Selector de período */
.btn-group {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.4rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.btn-group .btn {
    border-radius: 8px;
    padding: 0.75rem 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    min-width: 140px;
    color: #6B7280;
    background: transparent;
}

.btn-group .btn:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d6efd, #0099ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-group .btn span {
    position: relative;
    z-index: 1;
}

.btn-group .btn.active {
    color: white;
    transform: scale(1.02);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.btn-group .btn.active:before {
    opacity: 1;
}

.btn-group .btn:not(.active):hover {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.04);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-group {
        padding: 0.3rem;
        border-radius: 10px;
        width: auto;
        min-width: 280px;
    }

    .btn-group .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .btn-group {
        flex-direction: row;
        min-width: 240px;
        padding: 0.25rem;
    }

    .btn-group .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

/* Precios y badges */
.pricing-header {
    position: relative;
    text-align: center;
    padding-bottom: 1rem;
}

.annual-badge {
    margin-top: 1rem;
    animation: fadeIn 0.5s ease;
}

.annual-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 0;
    }

    .btn-group {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .btn-group .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 100px;
    }

    .pricing-card {
        margin-bottom: 1rem;
    }

    .annual-badge .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .btn-group {
        flex-direction: column;
        border-radius: 15px;
        padding: 0.3rem;
    }

    .btn-group .btn {
        width: 100%;
        margin: 0.2rem 0;
        border-radius: 10px;
    }

    .btn-group .btn.active {
        transform: none;
    }
}

/* Casos de Éxito Section */
.success-cases-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.success-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%230d6efd" opacity="0.2"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.success-cases-section .container {
    position: relative;
    z-index: 1;
}

.success-case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

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

.success-case-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.success-case-card:hover::after {
    opacity: 1;
}

.success-case-image {
    position: relative;
    padding: 1.5rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

.success-case-image img.company-logo {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    padding: 2rem;
    background: white;
    transition: all 0.5s ease;
}

.success-case-image img.company-logo:hover {
    transform: scale(1.05);
}

.success-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
}

.success-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge.bg-gradient {
    background: var(--gradient-3);
    color: white;
}

.company-name {
    color: var(--primary);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.company-category {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.metric-card {
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
}

.bg-gradient-light {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 202, 240, 0.05) 100%);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.success-story {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 202, 240, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.success-story .lead {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    margin-left: 1rem;
}

.author-name {
    color: var(--primary);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.success-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.success-details h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-3);
    border-radius: 3px;
}

.success-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.success-list li:hover {
    transform: translateX(5px);
}

.success-list li i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .success-case-card {
        margin: 1rem;
    }

    .success-case-content {
        padding: 1.5rem !important;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.8rem;
    }

    .success-story {
        padding: 1.5rem;
    }

    .success-story .lead {
        font-size: 1.1rem;
    }

    .success-list li {
        font-size: 1rem;
    }
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

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

.pricing-card.featured {
    background: var(--gradient-2);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured .price,
.pricing-card.featured .pricing-features i {
    color: white;
}

.pricing-card.featured .price span {
    color: rgba(255,255,255,0.8);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.featured .price {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price span {
    font-size: 1rem;
    color: var(--secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.9);
}

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

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

    .pricing-card {
        margin-bottom: 2rem;
    }

    .pricing-card.featured {
        transform: none;
        margin: 2rem 0;
    }

    .price {
        font-size: 2rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: auto;
    bottom: 80px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    padding: 12px 20px;
    z-index: 100;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-text {
    font-size: 16px;
    margin-left: 5px;
    display: inline;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    color: white;
    text-decoration: none;
    background: #128C7E;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-text {
        display: none !important;
    }

    .whatsapp-float i {
        margin: 0;
    }
}

/* Login Modal responsivo */
.modal-dialog {
    position: relative;
    width: auto;
    max-width: 400px;
    margin: 1.75rem auto;
    top: 50%;
    transform: translateY(-50%) !important;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50%) !important;
}

.modal.show .modal-dialog {
    transform: translate(0, -50%) !important;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
        width: calc(100% - 1rem);
    }

    .modal-content {
        border-radius: 0.5rem;
    }

    .login-icon {
        font-size: 3rem;
    }

    .form-floating > label {
        font-size: 0.9rem;
    }
}

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

/* Mantener los estilos existentes del login */
.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating .input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 4;
    pointer-events: none;
}

.form-floating > input {
    height: calc(3.5rem + 2px);
    padding: 1rem 2.5rem 1rem 0.75rem;
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.form-floating > .form-control:focus ~ .input-icon {
    color: #0d6efd;
}

.form-floating > .form-control.is-invalid ~ .input-icon {
    color: #dc3545;
}

.form-floating > .form-control.is-valid ~ .input-icon {
    color: #198754;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding-left: 2.5rem;
    padding-right: 3.5rem !important;
    transition: all 0.3s ease;
    height: auto;
    min-height: 58px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
}

.password-toggle i {
    font-size: 1.2rem;
    pointer-events: none;
    position: relative;
    right: 0.5rem;
}

/* Ajustes específicos para móviles */
@media (max-width: 768px) {
    .form-control {
        padding-right: 3.5rem !important;
    }

    .password-toggle {
        width: 44px;
        height: 44px;
        right: 0;
    }
}

.btn-primary {
    background: var(--gradient-2);
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.forgot-password {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary);
}

/* Custom error styles */
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Video Tutorial Section */
.tutorial-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
}

.tutorial-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.tutorial-section .section-header p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 1rem;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: white;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0.05;
    z-index: 0;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container iframe {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    height: 450px;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.video-feature-item {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.video-feature-item i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.video-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.video-feature-item p {
    color: var(--secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 200px;
    }

    .video-features {
        flex-direction: column;
    }

    .video-feature-item {
        margin-bottom: 2rem;
    }
}

/* CTA Section responsivo */
.cta-section {
    padding: 4rem 0;
}

.cta-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    transition: transform 0.3s ease;
}

.cta-content:hover {
    transform: translateY(-5px);
}

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

    .cta-content {
        padding: 1.5rem;
    }
}

/* Container responsivo */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Botones responsivos */
.btn {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Tutorial Section responsivo */
.tutorial-section {
    padding: 4rem 0;
}

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

    .video-container {
        padding: 1rem;
    }

    .video-container iframe {
        height: 200px;
    }

    .video-features {
        flex-direction: column;
    }

    .video-feature-item {
        margin-bottom: 2rem;
    }
}

/* CTA Section responsivo */
.cta-section {
    padding: 4rem 0;
}

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

    .cta-content {
        padding: 1.5rem;
    }
}

/* Utilidades responsivas */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }

    .mt-4-mobile {
        margin-top: 1.5rem;
    }

    .mb-4-mobile {
        margin-bottom: 1.5rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    padding: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.faq-accordion .accordion-button:not(.collapsed) i {
    color: white;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-list li:hover {
    background: rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

.faq-list li i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Timeline Styles */
.implementation-timeline {
    padding: 1rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: -1.5rem;
    width: 2px;
    background: var(--gradient-1);
    opacity: 0.2;
}

.timeline-step {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(13, 110, 253, 0.05);
    padding: 1rem;
    border-radius: 8px;
    flex-grow: 1;
}

.timeline-content h4 {
    margin: 0;
    color: var(--primary);
    font-size: 1.1rem;
}

.timeline-content p {
    margin: 0.5rem 0 0;
    color: var(--secondary);
}

/* Device Compatibility Grid */
.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.device-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.device-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.device-item span {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Support Channels */
.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.support-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.support-item p {
    color: var(--secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Styles for FAQ Section */
@media (max-width: 768px) {
    .faq-accordion .accordion-button {
        padding: 1rem;
    }

    .faq-accordion .accordion-body {
        padding: 1rem;
    }

    .timeline-step {
        width: 2.5rem;
        height: 2.5rem;
    }

    .timeline-content {
        padding: 0.75rem;
    }

    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-channels {
        grid-template-columns: 1fr;
    }

    .support-item {
        padding: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #0a58ca;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    color: #6c757d;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0d6efd;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

.social-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .social-links {
        margin: 1rem 0;
    }
}

/* Estilos para la sección de requisitos en FAQ */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.requirement-item {
    background: rgba(13, 110, 253, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
    background: rgba(13, 110, 253, 0.05);
}

.requirement-item i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.requirement-item h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.faq-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.faq-list li i {
    font-size: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .requirement-item {
        padding: 1.25rem;
    }

    .requirement-item i {
        font-size: 1.75rem;
    }

    .requirement-item h4 {
        font-size: 1rem;
    }

    .faq-list li {
        font-size: 0.9rem;
    }
}

/* Estilos para el modal de registro */
.progress-container {
    margin: 2rem 0;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 1rem;
}

.step i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #6c757d;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step span {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
}

.step.active i {
    background: var(--primary);
    color: white;
}

.step.active span {
    color: var(--primary);
    font-weight: bold;
}

.step.completed i {
    background: var(--success);
    color: white;
}

.form-step {
    transition: all 0.3s ease;
}

.confirmation-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.summary-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

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

.success-icon {
    font-size: 4rem;
    color: var(--success);
    display: block;
}

/* Estilos para el modal grande */
.modal-lg {
    max-width: 800px;
}

/* Animaciones para los pasos */
.form-step {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.form-step.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step span {
        display: none;
    }
    
    .step i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.875rem;
    }
    
    .modal-lg {
        margin: 1rem;
    }
    
    .confirmation-summary {
        padding: 1rem;
    }
}

.modal-dialog.modal-lg {
    max-width: 800px;
}

.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 20px 0;
}

.form-step.active {
    display: block;
    opacity: 1;
}

.progress-container {
    margin-bottom: 2rem;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    padding: 0 10px;
}

.step i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step span {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active i {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.step.active span {
    color: #0d6efd;
    font-weight: 600;
}

.step.completed i {
    background: #198754;
    border-color: #198754;
    color: white;
}

.confirmation-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

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

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating .input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 4;
}

.form-floating > input {
    height: calc(3.5rem + 2px);
    padding: 1rem 2.5rem 1rem 0.75rem;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

/* Estilos para el campo de teléfono internacional */
.iti {
    width: 100%;
    margin-bottom: 1rem;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #212529;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #6c757d;
}

#telefonoEmpresa {
    padding-left: 90px !important;
}

/* Ajustes responsive para el teléfono */
@media (max-width: 768px) {
    .iti__country-list {
        width: 300px;
    }
}

/* Estilos para la sección de dispositivos compatibles */
.devices-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.devices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.devices-content {
    padding: 2rem;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.device-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.device-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.device-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.device-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.device-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.device-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.device-features .feature-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(45, 212, 191, 0.05) 100%);
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.1);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper::before {
    opacity: 1;
}

.feature-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content {
    flex-grow: 1;
}

.feature-content h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.feature-content p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .device-features {
        gap: 1rem;
    }

    .device-features .feature-item {
        padding: 1rem;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .feature-icon-wrapper i {
        font-size: 1.2rem;
    }

    .feature-content h5 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }
}

.devices-showcase {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.device {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.device i {
    font-size: 2rem;
    color: #0d6efd;
}

.device-screen {
    position: absolute;
    inset: 10px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.scan-animation {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #0d6efd 50%,
        transparent 100%);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        top: 0;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}

.phone {
    width: 120px;
    height: 200px;
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.tablet {
    width: 180px;
    height: 240px;
    top: 30%;
    left: 35%;
    transform: rotate(5deg);
}

.laptop {
    width: 240px;
    height: 160px;
    bottom: 20%;
    right: 10%;
    transform: rotate(15deg);
}

.device:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
    .devices-content {
        text-align: center;
        padding: 1rem;
    }

    .devices-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto;
    }

    .device-features {
        max-width: 400px;
        margin: 2rem auto;
    }

    .devices-showcase {
        min-height: 300px;
        margin-top: 2rem;
    }

    .phone {
        width: 100px;
        height: 180px;
    }

    .tablet {
        width: 160px;
        height: 220px;
    }

    .laptop {
        width: 200px;
        height: 140px;
    }
}

@media (max-width: 575.98px) {
    .devices-showcase {
        min-height: 250px;
    }

    .phone {
        width: 80px;
        height: 140px;
    }

    .tablet {
        width: 120px;
        height: 160px;
    }

    .laptop {
        width: 160px;
        height: 120px;
    }
}

/* Estilos para el modal de registro */
.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header.bg-primary {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1.5rem;
}

.modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.registration-instructions .alert-info {
    border: none;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.registration-instructions .alert-heading {
    color: #0d47a1;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.registration-instructions ul {
    list-style: none;
    padding-left: 0;
}

.registration-instructions ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1565c0;
}

.registration-instructions ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2196f3;
}

.step-header {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.step-title {
    color: #0d6efd;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #6c757d;
    margin-bottom: 0;
}

.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

.form-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    color: #6c757d;
}

.confirmation-summary {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

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

.summary-item strong {
    min-width: 120px;
    color: #495057;
}

.summary-item span {
    color: #212529;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border: none;
    border-radius: 0.5rem;
}

.form-check {
    margin: 1.5rem 0;
}

.form-check-label {
    color: #495057;
}

.form-check-label a {
    color: #0d6efd;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca, #084298);
    transform: translateY(-1px);
}

.btn-success {
    background: linear-gradient(135deg, #198754, #146c43);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #146c43, #0f5132);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid #0d6efd;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-color: transparent;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 0.5rem;
    }
    
    .registration-instructions {
        padding: 1rem;
    }
    
    .step-header {
        padding: 0.75rem;
    }
    
    .form-floating {
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .modal-dialog.modal-lg {
        margin: 0.5rem;
        max-width: 100%;
    }

    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header {
        position: sticky;
        top: 0;
        z-index: 1050;
        background-color: var(--bs-primary);
    }

    .btn-close {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 1060;
        background-color: white;
        opacity: 1;
        padding: 0.5rem;
        border-radius: 50%;
    }

    .modal-body {
        padding-top: 1rem;
    }

    .registration-instructions {
        margin-top: 1rem;
    }
}

.company-details {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.company-size {
    margin-bottom: 1rem;
}

.company-size .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.company-category {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.company-details .btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.company-details .btn-outline-primary:hover {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
} 