:root {
    --primary-black: #1A1109;
    --primary-white: #FEF8E9;
    --light-gray: #F5EFD8;
    --medium-gray: #8B7355;
    --border-gray: #E8DCC0;
    --text-gray: #2A1F15;
    --subtle-gray: #FBF6E5;
    --accent-red: #D01D44;
    --accent-green: #34C759;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--primary-white);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header mejorado */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo mejorado */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 350px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 768px) {
    .logo-image {
        width: 150px !important;
    }
}

.cta-button {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 14px 28px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button:hover {
    background: var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(208, 29, 68, 0.3);
}

/* Botón Header Premium - Acceder/Registrarse */
.cta-button-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D01D44 0%, #B01838 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(208, 29, 68, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-header:hover::before {
    left: 100%;
}

.cta-button-header:hover {
    background: linear-gradient(135deg, #B01838 0%, #8B1230 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(208, 29, 68, 0.4);
    color: #ffffff;
}

.cta-button-header:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(208, 29, 68, 0.3);
}

@media (max-width: 768px) {
    .cta-button-header {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 100px);
    padding: 30px 5% 40px;
    background: linear-gradient(135deg, var(--subtle-gray) 0%, var(--primary-white) 100%);
}

/* Título principal que ocupa todo el ancho */
.hero-title-container {
    max-width: 1400px;
    margin: 0 auto 30px;
    text-align: center;
    padding: 0 2%;
}

.hero-title-container h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-black);
    letter-spacing: -0.02em;
    min-height: 1.3em;
    margin: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Tablets y portátiles pequeños */
@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Tablets en vertical */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title-container h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-title-container {
        margin-bottom: 25px;
    }
}

/* Móviles grandes y tablets pequeños */
@media (max-width: 480px) {
    .hero {
        padding: 20px 5% 30px;
    }

    .hero-title-container {
        margin-bottom: 20px;
        padding: 0 1%;
    }

    .hero-title-container h1 {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        line-height: 1.2;
    }

    .hero-container {
        gap: 30px;
    }
}

.hero-left .subtitle {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    color: var(--medium-gray);
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 19px;
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.6;
    text-align: left;
    font-weight: 400;
    max-width: 90%;
}

.benefits-intro {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.features-list {
    list-style: none;
    margin: 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 17px;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.features-list li::before {
    content: "✓";
    color: var(--accent-red);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Sección de pasos - PROFESIONAL */
.steps-card {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.steps-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Video Card - Contenedor del video promocional */
.video-card {
    background: #ffffff;
    border: 2px solid var(--primary-black);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
}

.video-container:hover .video-thumbnail {
    filter: brightness(0.85);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 10;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.play-button .play-bg {
    transition: fill-opacity 0.2s ease;
}

.video-container:hover .play-button .play-bg {
    fill: #D01D44;
    fill-opacity: 1;
}

.steps-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-black);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.steps-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 36px;
    text-align: center;
    font-weight: 500;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 0;
    transition: all 0.2s ease;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:hover {
    transform: translateX(4px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.step-item:hover .step-number {
    transform: scale(1.05);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.step-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

/* CTA en el hero - Botón ancho y atractivo */
.cta-container {
    margin-top: 30px;
    text-align: center;
}

.cta-wide {
    display: block;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 100%;
    text-align: center;
}

.cta-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(208, 29, 68, 0.35);
    background: var(--accent-red);
}

.cta-large {
    display: inline-block;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 18px 40px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-large:hover {
    background: var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(208, 29, 68, 0.3);
}

/* Sección Por qué Actaroo */
.why-section {
    padding: 60px 5%;
    background: var(--primary-white);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 19px;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Tablets pequeños */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-section {
        padding: 50px 5%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 24px;
    }
}

.firma-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 968px) {
    .firma-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .firma-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-color: rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-black);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 5%;
    background: var(--light-gray);
}

.free-plan {
    background: #ffffff;
    border: 2px solid var(--primary-black);
    border-radius: 20px;
    padding: 30px 40px;
    margin: 40px auto 60px;
    max-width: 1000px;
    position: relative;
}

.free-plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.free-plan-text {
    flex: 1;
    text-align: left;
}

.free-plan h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--primary-black);
}

.free-plan p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.free-plan-button {
    display: inline-block;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 14px 32px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    flex-shrink: 0;
}

.free-plan-button:hover {
    background: var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(208, 29, 68, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-black);
}

.pricing-card.popular {
    border-color: var(--primary-black);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.price-display {
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 16px;
    color: var(--medium-gray);
    margin-top: 5px;
}

.price-tax-note {
    font-size: 13px;
    color: var(--medium-gray);
    margin-top: 8px;
    font-style: italic;
}

.savings {
    background: linear-gradient(135deg, #34C759 0%, #30B350 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.savings:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.4);
}

.pricing-features {
    margin-top: 30px;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-black);
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: 30px;
    text-align: center;
}

.pricing-button {
    display: inline-block;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 14px 32px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 280px;
    white-space: nowrap;
}

.pricing-button:hover {
    background: var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(208, 29, 68, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* Custom Plan CTA */
.custom-plan-cta {
    margin-top: 50px;
    background: var(--primary-black);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(26, 17, 9, 0.15);
    border: 3px solid var(--border-gray);
    transition: all 0.3s ease;
}

.custom-plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 70px rgba(26, 17, 9, 0.2);
}

.custom-plan-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-white);
    letter-spacing: -0.01em;
}

.custom-plan-cta p {
    font-size: 18px;
    color: var(--primary-white);
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-plan-button {
    display: inline-block;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 16px 40px;
    border-radius: 980px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(254, 248, 233, 0.3);
}

.custom-plan-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(254, 248, 233, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 2px solid var(--border-gray);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-black);
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-black);
    letter-spacing: -0.01em;
}

.modal-content > p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--primary-white);
    color: var(--primary-black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-submit-button {
    width: 100%;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 14px 32px;
    border-radius: 980px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 10px;
}

.modal-submit-button:hover {
    background: var(--accent-red);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(208, 29, 68, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    background: var(--primary-white);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 19px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 50px 5%;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.footer p {
    margin-bottom: 12px;
    color: var(--primary-black);
    font-size: 15px;
    line-height: 1.5;
}

.footer a {
    color: var(--primary-black);
    text-decoration: none;
    margin: 0 12px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.7;
}

.footer-brand {
    margin-top: 24px;
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* Móviles y tablets muy pequeños - 768px hacia abajo */
@media (max-width: 768px) {
    .hero {
        padding: 40px 5% 30px;
        min-height: auto;
    }

    .hero-description {
        font-size: 17px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .benefits-intro {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .features-list li {
        font-size: 16px;
        padding: 10px 0;
    }

    .steps-card {
        padding: 24px;
    }

    .video-card {
        padding: 16px;
    }

    .step-item {
        margin-bottom: 20px;
    }

    .cta-section {
        padding: 60px 5%;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .cta-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .cta-wide {
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* Móviles pequeños - 480px hacia abajo */
@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }

    .nav {
        padding: 0.5rem 4%;
    }

    .hero-left .subtitle {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .benefits-intro {
        font-size: 16px;
    }

    .features-list li {
        font-size: 15px;
        padding: 8px 0;
    }

    .steps-card {
        padding: 20px;
    }

    .steps-title {
        font-size: 20px;
    }

    .step-item {
        margin-bottom: 16px;
        gap: 16px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 14px;
    }

    .why-section {
        padding: 40px 4%;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 15px;
    }

    .cta-section {
        padding: 50px 4%;
    }

    .cta-wide {
        padding: 14px 16px;
        font-size: 15px;
    }

    .pricing-section {
        padding: 60px 5%;
    }

    .free-plan {
        padding: 24px;
        margin: 30px auto 40px;
    }

    .free-plan-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .free-plan-text {
        text-align: center;
    }

    .free-plan h3 {
        font-size: 20px;
    }

    .free-plan-button {
        width: 100%;
        max-width: 300px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .price {
        font-size: 36px;
    }

    .pricing-header h3 {
        font-size: 20px;
    }

    .footer {
        padding: 40px 4%;
    }
}

/* Animaciones suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === NOTICIAS === */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.noticia-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.noticia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-color: rgba(0,0,0,0.1);
}

.noticia-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: top;
    background-color: var(--light-gray);
}

.noticia-img-placeholder {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-gray) 100%);
}

.noticia-body {
    padding: 24px;
}

.noticia-fecha {
    font-size: 13px;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.noticia-titulo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.noticia-extracto {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.noticia-leer {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 0.3px;
}

.noticia-card:hover .noticia-leer {
    color: var(--accent-red);
}

.noticia-contenido p,
.noticia-contenido li {
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
}

.noticia-contenido strong {
    color: var(--primary-black);
}

.noticia-contenido a {
    color: var(--primary-black);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .noticia-img {
        height: 160px;
    }
    .noticia-body {
        padding: 20px;
    }
}

/* === BARRA NOVEDADES === */
.news-bar {
    background: var(--primary-black);
    padding: 0;
}

.news-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 5%;
    display: flex;
    align-items: center;
    gap: 28px;
}

.news-bar-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-black);
    text-decoration: none;
    flex-shrink: 0;
    padding: 8px 20px;
    background: var(--primary-white);
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-bar-label:hover {
    background: var(--accent-red);
    color: #ffffff;
}

.news-bar-track {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent, black 20px, black calc(100% - 20px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 20px, black calc(100% - 20px), transparent);
}

.news-bar-scroll {
    display: inline-flex;
    align-items: center;
    animation: newsScroll 35s linear infinite;
}

.news-bar-scroll:hover {
    animation-play-state: paused;
}

.news-bar-item {
    font-size: 19px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap;
    padding: 0 8px;
    transition: opacity 0.2s;
    line-height: 1.6;
}

.news-bar-item:hover {
    opacity: 0.7;
}

.news-bar-sep {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    margin: 0 18px;
    flex-shrink: 0;
}

@keyframes newsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .news-bar-inner {
        padding: 10px 4%;
        gap: 14px;
    }
    .news-bar-label {
        font-size: 9px;
        padding: 4px 10px;
        letter-spacing: 1px;
    }
    .news-bar-item {
        font-size: 12px;
    }
}
