/* Profiles Section */
.profiles-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.profiles-table {
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 700;
    padding: 20px;
    text-align: center;
}

.profile-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.profile-row:last-child {
    border-bottom: none;
}

.profile-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Papyrus', fantasy, serif;
    font-weight: 700;
    color: var(--text-primary);
}

.profile-col {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Principles Section */
.principles-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.principle-allowed {
    background: var(--card-bg);
    border-color: #10b981;
}

.principle-forbidden {
    background: var(--card-bg);
    border-color: #ef4444;
}

.principle-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-allowed .principle-icon {
    background: #10b981;
    color: white;
}

.principle-forbidden .principle-icon {
    background: #ef4444;
    color: white;
}

.principle-text h4 {
    font-family: 'Papyrus', fantasy, serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.principle-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Final Download Section */
.final-download {
    padding: 120px 0;
    text-align: center;
}

.final-download-title {
    font-family: 'Papyrus', fantasy, serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.final-download-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

.final-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 400px;
    margin: 0 auto 32px;
}

.final-download-accent {
    font-family: 'Papyrus', fantasy, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

.gallery-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.gallery-frame:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(201, 147, 58, 0.15);
}

.gallery-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-primary);
}

.about-title {
    font-family: 'Papyrus', fantasy, serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.about-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* DAW Section */
.daw-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.daw-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .daw-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.daw-visual {
    text-align: center;
}

.daw-logo {
    max-width: 240px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.daw-info .section-label {
    margin-left: 0;
}

@media (max-width: 768px) {
    .daw-info .section-label {
        margin-left: auto;
        margin-right: auto;
    }
}

.daw-title {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.daw-subtitle {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
}

.daw-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.daw-status {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 768px) {
    .daw-status {
        justify-content: center;
    }
}

.daw-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Impronta Section */
.impronta-section {
    padding: 140px 0;
    background: var(--bg-primary);
}

.impronta-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impronta-visual {
    margin-bottom: 56px;
}

.impronta-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.impronta-screenshot:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(201, 147, 58, 0.2);
}

.impronta-info .section-label {
    margin-left: auto;
    margin-right: auto;
}

.impronta-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.impronta-subtitle {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 28px;
    font-weight: 500;
}

.impronta-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impronta-status {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.impronta-badge {
    display: inline-flex;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reactions Section */
.reactions-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.reactions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .reactions-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.reactions-info .section-label {
    margin-left: 0;
}

@media (max-width: 768px) {
    .reactions-info .section-label {
        margin-left: auto;
        margin-right: auto;
    }
}

.reactions-title {
    font-family: 'Papyrus', fantasy, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.reactions-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.reactions-visual {
    text-align: center;
}

.reactions-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.reactions-frame:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(201, 147, 58, 0.15);
}

.reactions-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero compact (para las subpaginas como Pay) */
.hero-compact {
    min-height: auto;
    padding: 120px 0 60px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #c9933a, #e5c29f, #c9933a);
    padding: 2px;
    box-shadow: 0 0 12px rgba(201, 147, 58, 0.4);
}

.footer-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
}

.footer-title {
    font-family: 'Papyrus', fantasy, serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-motto {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.motto-text {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--accent);
    font-style: italic;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}
