.rep2-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: white;
    padding: 100px 0 60px;
}
.rep2-hero .container {
    max-width: 800px;
}
.rep2-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}
.rep2-trust-badge .trust-label {
    color: var(--primary-color);
    font-weight: 600;
}
.rep2-trust-stars {
    display: inline-flex;
    gap: 2px;
}
.rep2-trust-stars span {
    display: inline-block;
    color: #fbbc04;
    font-size: 20px;
    line-height: 1;
}
.rep2-trust-brand {
    color: #666;
    font-size: 0.9rem;
}
.rep2-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}
.rep2-hero h1 .highlight-word {
    background: var(--highlight-color);
    color: white;
    padding: 2px 12px;
    border-radius: 6px;
    display: inline-block;
}
.rep2-hero .subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}
.rep2-search-box {
    display: flex;
    align-items: center;
    max-width: 500px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.rep2-search-box:focus-within {
    border-color: var(--highlight-color);
}
.rep2-search-box input {
    flex: 1;
    border: none;
    padding: 16px 25px;
    font-size: 1rem;
    outline: none;
    color: #333;
    background: transparent;
}
.rep2-search-box input::placeholder {
    color: #999;
}
.rep2-search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: background 0.3s;
    white-space: nowrap;
}
.rep2-search-box button:hover {
    background: var(--highlight-color);
}
.rep2-counter {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}
.rep2-counter strong {
    color: var(--primary-color);
}

.rep2-features {
    padding: 80px 0;
    background: #f8f9fa;
}
.rep2-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.rep2-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.rep2-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.rep2-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(233,69,96,0.1) 0%, rgba(233,69,96,0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.rep2-feature-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.rep2-feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.rep2-how {
    padding: 80px 0;
    background: white;
}
.rep2-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}
.rep2-step {
    text-align: center;
    position: relative;
}
.rep2-step-number {
    width: 50px;
    height: 50px;
    background: var(--highlight-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}
.rep2-step h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.rep2-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.rep2-stats {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
}
.rep2-stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
.rep2-stat {
    text-align: center;
}
.rep2-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 0;
}
.rep2-stat p {
    font-size: 1rem;
    opacity: 0.85;
    margin: 5px 0 0;
}

.rotating-word {
    display: inline-block;
    position: relative;
    color: var(--highlight-color);
}
.rotating-word.fade-out {
    animation: fadeOut 0.3s ease forwards;
}
.rotating-word.fade-in {
    animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-15px); }
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .rep2-hero h1 {
        font-size: 2.2rem;
    }
    .rep2-features-grid,
    .rep2-steps {
        grid-template-columns: 1fr;
    }
    .rep2-stats-grid {
        gap: 40px;
    }
    .rep2-search-box {
        flex-direction: column;
        border-radius: 12px;
    }
    .rep2-search-box input {
        text-align: center;
    }
    .rep2-search-box button {
        border-radius: 0 0 12px 12px;
        width: 100%;
    }
    .problem-grid { grid-template-columns: 1fr; }
}

.problem-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.problem-card.accent-red::before { background: var(--highlight-color); }
.problem-card.accent-navy::before { background: var(--primary-color); }
.problem-icon-red {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(233,69,96,0.12) 0%, rgba(233,69,96,0.05) 100%);
    display: flex; align-items: center; justify-content: center;
}
.problem-icon-navy {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26,26,46,0.1) 0%, rgba(26,26,46,0.04) 100%);
    display: flex; align-items: center; justify-content: center;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.problem-grid > :nth-child(1) { animation: fadeSlideUp 0.5s ease both; }
.problem-grid > :nth-child(2) { animation: fadeSlideUp 0.5s ease 0.1s both; }
.problem-grid > :nth-child(3) { animation: fadeSlideUp 0.5s ease 0.2s both; }
.problem-grid > :nth-child(4) { animation: fadeSlideUp 0.5s ease 0.3s both; }
.problem-grid > :nth-child(5) { animation: fadeSlideUp 0.5s ease 0.4s both; }
.problem-grid > :nth-child(6) { animation: fadeSlideUp 0.5s ease 0.5s both; }
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.impact-card {
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.impact-card .impact-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}
.impact-card .impact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.impact-tab {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.impact-tab.active-tab-empresas {
    background: var(--primary-color);
    color: white;
}
.impact-tab.active-tab-personas {
    background: var(--highlight-color);
    color: white;
}
.impact-tab.inactive-tab {
    background: transparent;
    color: #888;
    border-color: #ddd;
}
.impact-tab:hover {
    opacity: 0.85;
}
.impact-panel { display: none; }
.impact-panel.active { display: block; }

.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.sol-item {
    padding: 40px 30px;
    position: relative;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.sol-item:nth-child(-n+3) { border-bottom: 1px solid rgba(0,0,0,0.06); }
.sol-item:nth-child(3n+2) { border-left: 1px solid rgba(0,0,0,0.06); border-right: 1px solid rgba(0,0,0,0.06); }
.sol-item:hover { background: rgba(233,69,96,0.03); }
.sol-item:hover .sol-arrow { transform: translateX(5px); }
.sol-item .sol-ico {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--highlight-color) !important;
}
.sol-item h3 { font-size: 1.1rem; color: var(--primary-color); font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.sol-item p { font-size: 0.88rem; color: #777; line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }
.sol-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
