/**
 * Typography - Estilos de texto y tipografía
 */

/* Hero Typography */
.hero-title {
    font-size: 4.75rem;
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 32px;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 56px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.012em;
    max-width: 580px;
}

/* Features Typography */
.features-intro {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.feature-title {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.1;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Benefits Typography */
.benefits-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.benefit-description {
    font-size: 0.95rem;
    color: #6e6e73;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Integration Typography */
.integration-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.integration-description {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Companies Typography */
.companies-text {
    text-align: center;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.company-logo {
    color: #FF6B35;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FF6B35, #FF8C42, #FF6B35);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Respaldame Works Typography */
.respaldame-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-question {
    color: #FF6B35;
}

.respaldame-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.step-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 400;
}

/* Company logos now use infinite scroll animation */

/* Animation delays for benefit icons */
.benefit-item:nth-child(1) .benefit-icon { animation-delay: 0.1s; }
.benefit-item:nth-child(2) .benefit-icon { animation-delay: 0.2s; }
.benefit-item:nth-child(3) .benefit-icon { animation-delay: 0.3s; }
.benefit-item:nth-child(4) .benefit-icon { animation-delay: 0.4s; }
.benefit-item:nth-child(5) .benefit-icon { animation-delay: 0.5s; }
.benefit-item:nth-child(6) .benefit-icon { animation-delay: 0.6s; }

/* Power Pitch Typography */
.pitch-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.pitch-accent {
    color: #FF6B35;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.pitch-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    border-radius: 1px;
    opacity: 0.3;
}

/* Footer Typography */
.footer-pitch {
    font-size: 1.25rem;
    font-weight: 500;
    color: #f5f5f7;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 0;
}

.footer-accent {
    color: #FF6B35;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #86868b;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.01em;
}

/* About Page Typography */
.about-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1d1d1f;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
    text-align: center;
    background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.375rem;
    color: #6e6e73;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mission-description {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.highlights-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.team-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}

.member-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.member-role {
    font-size: 1rem;
    font-weight: 500;
    color: #FF6B35;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.member-description {
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.trusted-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.trusted-subtitle {
    font-size: 1.125rem;
    color: #a1a1a6;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}
