* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B6B;
    --primary-dark: #EE5A5A;
    --secondary: #4ECDC4;
    --dark: #2D3436;
    --gray: #636E72;
    --light-gray: #F5F6FA;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f9b91c;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 2px solid #E0E0E0;
}

.btn-ghost:hover {
    border-color: #f9b91c;
    color: #f9b91c;
    background: #FFF5F5;
}

.btn-primary {
    background: #f9b91c;
    color: black;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* ========================================
   HERO SECTION - Rediseñado
   ======================================== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: var(--gray);
}

.cta-section {
    margin: 2rem 0;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.micro-copy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.micro-copy span {
    margin: 0 0.5rem;
}

/* Features */
.features {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 5rem 2rem;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: #f9b91c;
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f9b91c;
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
}

/* Tagline */
.tagline-section {
    background: linear-gradient(135deg, #f9b91c 0%, var(--primary-dark) 100%);
    padding: 5rem 2rem;
    color: var(--white);
    text-align: center;
}

.tagline-content {
    max-width: 800px;
    margin: 0 auto;
}

.tagline-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tagline-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.tagline-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.tagline-visual {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.transformation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.before, .after {
    text-align: center;
}

.label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.chaos, .clarity {
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
}

.arrow {
    font-size: 3rem;
    font-weight: bold;
}

/* Testimonial */
.testimonial {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.testimonial-box::before {
    content: """;
    font-size: 6rem;
    color: #f9b91c;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--gray);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #B2BEC3;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f9b91c;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #636E72;
    text-align: center;
    color: #B2BEC3;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: #f9b91c;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .btn-large {
        width: 100%;
        display: block;
    }

    .tagline-title {
        font-size: 1.8rem;
    }
}
/* ========================================
   REGISTRO - Estilos específicos
   ======================================== */

.registro-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.registro-header {
    text-align: center;
    margin-bottom: 2rem;
}

.registro-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.registro-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* Formulario */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #f9b91c;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input.error {
    border-color: var(--error);
}

.form-group input.success {
    border-color: var(--success);
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--gray);
    font-size: 0.85rem;
}

.form-group small.error {
    color: var(--error);
}

.form-group small.success {
    color: var(--success);
}

.form-group small.password-hint {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 0.5rem;
    height: 4px;
    background: #E0E0E0;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s, background-color 0.3s;
}

.password-strength-bar.weak {
    width: 33%;
    background: var(--error);
}

.password-strength-bar.medium {
    width: 66%;
    background: #F39C12;
}

.password-strength-bar.strong {
    width: 100%;
    background: var(--success);
}

/* Honeypot (Oculto) */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Alertas */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
}

.alert-error {
    background: #FDEDEC;
    border: 1px solid var(--error);
    color: var(--error);
}

.alert-success {
    background: #E8F8F0;
    border: 1px solid var(--success);
    color: var(--success);
}

/* Botón Submit */
.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-primary:disabled {
    background: #BDC3C7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Términos */
.terminos {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.terminos a {
    color: #f9b91c;
    text-decoration: none;
}

.terminos a:hover {
    text-decoration: underline;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
    color: var(--gray);
}

.login-link a {
    color: #f9b91c;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .registro-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .registro-header h1 {
        font-size: 1.5rem;
    }
}
/* ========================================
   LOGIN - Estilos específicos
   ======================================== */

.login-container {
    max-width: 450px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--dark);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f9b91c;
}

.checkbox-label span {
    font-size: 0.95rem;
}

/* Forgot Password */
.forgot-password {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-password a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    color: #f9b91c;
    text-decoration: underline;
}

/* Registro Link */
.registro-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
    color: var(--gray);
}

.registro-link a {
    color: #f9b91c;
    text-decoration: none;
    font-weight: 600;
}

.registro-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .login-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }
}
/* ========================================
   RECUPERAR CONTRASEÑA - Estilos
   ======================================== */

.recuperar-container {
    max-width: 450px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.recuperar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.recuperar-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.recuperar-header p {
    color: var(--gray);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .recuperar-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .recuperar-header h1 {
        font-size: 1.5rem;
    }
}