* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #01315B 0%, #3DD5FA 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-mockup {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.mockup-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}

.chat-messages {
    space-y: 15px;
}

.message {
    padding: 12px 18px;
    border-radius: 18px;
    margin-bottom: 15px;
    max-width: 80%;
    animation: fadeInUp 0.5s ease-out;
}

.message.bot {
    background: #f0f0f0;
    color: #333;
    margin-left: 0;
    border-bottom-left-radius: 5px;
}

.message.user {
    background: #25D366;
    color: white;
    margin-left: auto;
    margin-right: 0;
    border-bottom-right-radius: 5px;
}

/* Formulario en el hero */
.demo-form-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid #25D366;
}

.form-header-hero {
    text-align: center;
    margin-bottom: 25px;
}

.form-header-hero h3 {
    color: #01315B;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-header-hero p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.availability-counter {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.availability-counter p {
    margin: 0;
    color: #856404;
    font-weight: bold;
    font-size: 14px;
}

.hero-demo-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-demo-form label {
    display: block;
    color: #01315B;
    font-weight: bold;
    margin-bottom: 5px;
}

.hero-demo-form input,
.hero-demo-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.hero-demo-form input:focus,
.hero-demo-form select:focus {
    outline: none;
    border-color: #25D366;
}

.hero-demo-form button {
    width: 100%;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.hero-demo-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(37,211,102,0.3);
}

.urgency-badge {
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.social-proof-quick {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25D366;
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
}

.quick-benefits {
    margin: 25px 0;
}

.quick-benefits div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Video Styles */
.video-container {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.video-wrapper {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.video-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.video-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.video-title-header {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}

.video-subtitle {
    color: #666;
    font-size: 0.9rem;
}

.video-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

#demoVideo {
    width: 100% !important;
    max-width: 600px !important;
    height: auto !important;
    max-height: 350px !important;
    object-fit: contain;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 49, 91, 0.8) 0%, rgba(61, 213, 250, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(1, 49, 91, 0.9) 0%, rgba(61, 213, 250, 0.9) 100%);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.video-overlay-title h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
}

.video-overlay-title p {
    opacity: 0.9;
    text-align: center;
    font-size: 0.95rem;
}

.video-description {
    margin-top: 25px;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, #01315B, #3DD5FA);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(1, 49, 91, 0.3);
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.fallback-content {
    text-align: center;
    padding: 40px;
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 4s; }
.floating-element:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 1s; }

/* Logo */
.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Problem Section */
.problem-section {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

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

.section-title {
    font-size: 2.5rem;
    color: #01315B;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc3545;
    transition: transform 0.3s ease;
}

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

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    margin: 0 auto 25px;
}

.problem-title {
    font-size: 1.4rem;
    color: #01315B;
    margin-bottom: 15px;
    font-weight: bold;
}

.problem-text {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    background: white;
}

.solution-hero {
    text-align: center;
    margin-bottom: 80px;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.facebook-badge {
    background: #1877f2;
    color: white;
}

.whatsapp-badge {
    background: #25D366;
    color: white;
}

.plus-sign {
    font-size: 2rem;
    color: #01315B;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px 30px;
    border-radius: 20px;
    border-left: 5px solid #3DD5FA;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #01315B, #3DD5FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 25px;
}

.benefit-title {
    font-size: 1.3rem;
    color: #01315B;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-text {
    color: #666;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #3DD5FA;
    transition: transform 0.3s ease;
}

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

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01315B, #3DD5FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
}

.result-number {
    font-size: 3rem;
    font-weight: bold;
    color: #01315B;
    margin-bottom: 10px;
}

.result-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background: white;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
}

.comparison-side {
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.traditional-side {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.raasmex-side {
    background: linear-gradient(135deg, #01315B 0%, #3DD5FA 100%);
    color: white;
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.comparison-list {
    list-style: none;
    text-align: left;
    flex-grow: 1;
}

.comparison-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-divider-large {
    font-size: 4rem;
    font-weight: bold;
    color: #020b12;
    opacity: 0.3;
}

/* Lead Form Styles */
.lead-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #3DD5FA;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.2rem;
    color: #01315B;
    margin-bottom: 15px;
    font-weight: bold;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.form-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28a745;
    font-weight: 500;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: #01315B;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input, .form-select, .form-textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #3DD5FA;
    background: white;
    box-shadow: 0 0 0 3px rgba(61, 213, 250, 0.1);
}

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

.form-submit {
    background: linear-gradient(135deg, #01315B 0%, #3DD5FA 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    box-shadow: 0 10px 30px rgba(1, 49, 91, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(1, 49, 91, 0.4);
}

.form-privacy {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.social-proof {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.company-logo {
    background: #01315B;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 5px solid #3DD5FA;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.author-logo {
    width: 60px;
    height: 60px;
    background: #01315B;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #01315B;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #01315B 0%, #3DD5FA 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons-large {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 25px 50px;
    font-size: 1.2rem;
    border-radius: 60px;
    min-width: 200px;
}

/* Footer */
.footer {
    background: #01315B;
    color: white;
    padding: 60px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3DD5FA;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* === ESTILOS ADICIONALES PARA EL FORMULARIO === */
/* Estados de error para campos del formulario */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: #ff6b6b !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1) !important;
}

/* Mensajes de error */
.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    padding: 5px 0;
}

/* Mensaje de éxito - adaptado al diseño existente */
.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 40px 35px;
    border-radius: 25px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.3);
    border-top: 5px solid #20c997;
    display: none;
}

.success-content i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    color: #ffffff;
}

.success-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.success-content p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Estados del botón de envío */
.form-submit:disabled {
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 10px 30px rgba(1, 49, 91, 0.2) !important;
}

/* Animación de spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* ===== RESPONSIVE DESIGN - MOBILE FIXES ===== */

/* Mobile Portrait - hasta 480px */
@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 20px 15px;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-text h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-text .subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 12px;
        margin: 20px 0;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 3px;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100% !important;
        max-width: 280px;
        padding: 16px 20px;
        font-size: 1rem;
        justify-content: center;
    }

    /* Formulario en móvil */
    .demo-form-container {
        padding: 20px 15px !important;
        margin: 0 10px;
        border-width: 2px;
    }

    .form-header-hero h3 {
        font-size: 20px !important;
        margin-bottom: 8px;
    }

    .form-header-hero p {
        font-size: 14px !important;
        margin-bottom: 12px;
    }

    .availability-counter {
        padding: 10px;
        margin-bottom: 12px;
    }

    .availability-counter p {
        font-size: 12px !important;
    }

    .hero-demo-form {
        gap: 12px;
    }

    .hero-demo-form input,
    .hero-demo-form select {
        padding: 10px !important;
        font-size: 14px !important;
    }

    .hero-demo-form button {
        padding: 14px !important;
        font-size: 16px !important;
    }

    /* Ajustes para elementos específicos en móvil */
    .social-proof-quick {
        padding: 12px;
        margin: 15px 0;
    }

    .social-proof-quick p {
        font-size: 12px !important;
    }

    .quick-benefits {
        margin: 20px 0;
    }

    .quick-benefits span {
        font-size: 14px;
    }

    .urgency-badge {
        padding: 6px 12px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Logo en móvil */
    .logo {
        top: 20px;
        left: 20px;
    }
    
    .logo img {
        height: 40px;
    }

    /* Floating elements - ocultar en móvil */
    .floating-elements {
        display: none;
    }

    /* Sections generales */
    .problem-section,
    .solution-section,
    .results-section,
    .comparison-section,
    .testimonials-section,
    .cta-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Problems Grid */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .problem-card {
        padding: 30px 25px;
    }
    
    .problem-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .problem-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    /* Solution Section */
    .solution-visual {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    
    .platform-badge {
        padding: 12px 25px;
        font-size: 1rem;
        gap: 8px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .plus-sign {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    /* Results Grid */
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .result-card {
        padding: 30px 20px;
    }
    
    .result-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .result-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .result-label {
        font-size: 0.9rem;
    }

    /* Comparison Section */
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-side {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .comparison-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .vs-divider-large {
        font-size: 2.5rem;
        order: 0;
        padding: 15px 0;
    }
    
    .traditional-side {
        order: 1;
    }
    
    .raasmex-side {
        order: 2;
    }

    /* Lead Form */
    .lead-form-section {
        padding: 60px 15px;
    }
    
    .form-container {
        padding: 30px 25px;
        margin: 0 10px;
    }
    
    .form-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .form-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .lead-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .form-submit {
        padding: 16px 30px;
        font-size: 1.1rem;
        min-height: 55px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-content {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .author-logo {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }

    /* CTA Section */
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons-large {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 18px 35px;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    /* Success Message */
    .success-message {
        margin: 0 5px 25px;
        padding: 25px 20px;
    }
    
    .success-content h3 {
        font-size: 1.3rem;
    }
    
    .success-content p {
        font-size: 0.95rem;
    }

    /* Video responsivo */
    .video-wrapper {
        padding: 15px;
        margin: 0 5px;
    }
    
    .video-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .feature-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Mobile Landscape - 481px a 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 30px 20px;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .hero-text .subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 25px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 25px 0;
    }

    .stat-item {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 2rem !important;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100% !important;
        max-width: 320px;
        padding: 17px 25px;
        font-size: 1.05rem;
        justify-content: center;
    }

    /* Formulario en tablet */
    .demo-form-container {
        padding: 25px 20px !important;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-header-hero h3 {
        font-size: 22px !important;
        margin-bottom: 9px;
    }

    .form-header-hero p {
        font-size: 15px !important;
        margin-bottom: 13px;
    }

    .hero-demo-form {
        gap: 14px;
    }

    .hero-demo-form input,
    .hero-demo-form select {
        padding: 11px !important;
        font-size: 15px !important;
    }

    .hero-demo-form button {
        padding: 15px !important;
        font-size: 17px !important;
    }

    /* Sections generales */
    .problem-section,
    .solution-section,
    .results-section,
    .comparison-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* Otros elementos responsive para tablet */
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lead-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons-large {
        flex-direction: column;
        align-items: center;
    }
}

/* Tablet - 769px a 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 50px;
        padding: 35px 25px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text .subtitle {
        font-size: 1.3rem;
    }

    .demo-form-container {
        padding: 28px 25px;
    }
}

/* Desktop pequeño - 1025px a 1200px */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-content {
        gap: 55px;
        padding: 38px 30px;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }
}

/* Evitar scroll horizontal en todos los tamaños */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Mejorar targets táctiles en móvil */
@media (hover: none) and (pointer: coarse) {
    .btn-primary, .btn-secondary, .hero-demo-form button, .form-submit {
        min-height: 48px !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
}