:root {
    --bg-dark: #0D0D0D;
    --bg-medium: #1A1A1A;
    --bg-light: #262626;
    --text-light: #FFFFFF;
    --text-medium: #A3A3A3;
    --accent-primary: #34D399;
    --accent-hover: #10B981;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --border-color: #333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.main-header {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin: 0;
}

.logo-text .dot {
    color: var(--accent-primary);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-primary);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px;
    text-align: center;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(52, 211, 153, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Trial Offer Box */
.trial-offer-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid var(--accent-primary);
    padding: 12px 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(52, 211, 153, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.trial-offer-box p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.sub-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-left: 5px;
    font-weight: 400;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
    transition: all 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.6);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles for Hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-separator {
        width: 40px;
        height: 1px;
    }
    
    .trial-offer-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .sub-text {
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Careers Section */
.careers-section {
    padding: 100px 0;
    background-color: var(--bg-medium);
}

/* About Detail Section */
.about-detail-section {
    padding: 80px 0 120px;
    background-color: var(--bg-dark);
}

.about-content.extended {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Lectura más cómoda */
    padding: 60px;
    background: linear-gradient(145deg, #151515, var(--bg-medium));
}

.about-content.extended h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-light);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-primary);
    padding-left: 15px;
}

.about-content.extended h2:first-child {
    margin-top: 0;
}

.about-content.extended p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.founders-quote {
    margin-top: 60px;
    padding: 40px;
    background: rgba(52, 211, 153, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(52, 211, 153, 0.1);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.founders-quote::before {
    content: '"';
    font-family: serif;
    font-size: 5rem;
    color: var(--accent-primary);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
}

.founders-quote span {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-medium);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.seo-text-block {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-medium);
    font-size: 0.98rem;
    line-height: 1.8;
    text-align: left;
}

.seo-text-block h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-light);
}

/* Manual Section */
.manual-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.manual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* Changelog Preview Section */
.changelog-section {
    padding: 80px 0;
    background-color: var(--bg-medium);
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.changelog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.3;
}

.changelog-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.changelog-preview-card {
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
}

.changelog-preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.changelog-preview-card::after {
    content: 'ÚLTIMA VERSIÓN';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 1px;
    background: rgba(52, 211, 153, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

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

.cl-version {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    line-height: 1;
}

.cl-date {
    color: var(--text-medium);
    font-size: 0.9rem;
    border-left: 1px solid var(--border-color);
    padding-left: 15px;
}

.cl-title {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.cl-desc {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.cl-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.cl-link:hover {
    gap: 15px;
    border-bottom-color: var(--accent-primary);
}

.manual-item {
    background: linear-gradient(145deg, var(--bg-medium), #151515);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.manual-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.manual-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(52, 211, 153, 0.3);
}

.manual-item:hover::before {
    opacity: 1;
}

.manual-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--accent-primary);
    box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.1);
    transition: all 0.3s ease;
}

.manual-item:hover .manual-icon-wrapper {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.manual-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.manual-body p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.manual-list {
    list-style: none;
    padding-left: 0;
}

.manual-list li {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-primary);
    font-size: 0.9rem;
    color: var(--text-medium);
    transition: background 0.2s;
}

.manual-list li:hover {
    background: rgba(255, 255, 255, 0.06);
}

.manual-list strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

/* Suggestions Section */
.suggestions-section {
    padding: 100px 0;
    background: radial-gradient(circle at top center, #1a1a1a, var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.suggestions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-primary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.03;
    pointer-events: none;
}

.suggestion-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.4);
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.6);
    background-color: #2bb582;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-medium);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    background: var(--bg-dark);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    font-size: 1.2rem;
    padding: 20px;
    background: rgba(52, 211, 153, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(52, 211, 153, 0.1);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(52, 211, 153, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--accent-primary);
    font-weight: 600;
}

.social-media {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-medium);
    color: var(--text-light);
}

.social-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.social-btn.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
    box-shadow: 0 5px 15px rgba(0, 242, 234, 0.2);
}

.social-btn.instagram:hover {
    background: #d62976;
    border-color: #d62976;
    box-shadow: 0 5px 15px rgba(214, 41, 118, 0.3);
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, var(--bg-medium), #151515);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

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

/* Footer */
.main-footer {
    background-color: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-logo .dot {
    color: var(--accent-primary);
}

.footer-logo p {
    color: var(--text-medium);
    max-width: 300px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-medium);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-medium);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .manual-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
