.breadcrumb {
    display: none;
}

.site-nosotros {
    background: #121212;
    width: 100%;
}

.page-hero {
    position: relative;
    background: linear-gradient(150deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 90px 20px 70px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(242, 183, 5, 0.2);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(242, 183, 5, 0.03) 0, transparent 1px, transparent 60px, rgba(242, 183, 5, 0.03) 61px),
        repeating-linear-gradient(180deg, rgba(242, 183, 5, 0.03) 0, transparent 1px, transparent 60px, rgba(242, 183, 5, 0.03) 61px);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(242, 183, 5, 0.1);
    border: 1px solid rgba(242, 183, 5, 0.3);
    border-radius: 30px;
    color: #F2B705;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 6px 16px;
    margin-bottom: 22px;
}

.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #F2F2F2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.page-hero-title .accent {
    color: #F2B705;
    text-shadow: 0 0 25px rgba(242, 183, 5, 0.35);
}

.page-hero-subtitle {
    color: #C8C8C8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.section-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F2B705;
    margin-bottom: 16px;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F2B705, rgba(242, 183, 5, 0.2));
    border-radius: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-label::after {
    background: linear-gradient(90deg, rgba(242, 183, 5, 0.2), #F2B705, rgba(242, 183, 5, 0.2));
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #F2F2F2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-title .accent {
    color: #F2B705;
}

.about-section {
    background: #121212;
}

.about-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-intro-text p {
    color: #C8C8C8;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-text p strong {
    color: #F2B705;
}

.about-highlight-box {
    background: #161616;
    border: 1px solid rgba(242, 183, 5, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.highlight-item>i {
    font-size: 1.75rem;
    color: #F2B705;
    width: 44px;
    height: 44px;
    background: rgba(242, 183, 5, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    color: #F2F2F2;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item p {
    color: #8A8A8A;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
}

.offer-section {
    background: #0E0E0E;
    border-top: 1px solid rgba(242, 183, 5, 0.08);
    border-bottom: 1px solid rgba(242, 183, 5, 0.08);
}

.offer-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 20px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: #1A1A1A;
    border: 1px solid rgba(242, 183, 5, 0.1);
    border-radius: 14px;
    padding: 30px 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F2B705, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 183, 5, 0.3);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-icon {
    width: 52px;
    height: 52px;
    background: rgba(242, 183, 5, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2B705;
    font-size: 1.75rem;
    margin-bottom: 18px;
    transition: background 0.3s ease;
}

.offer-card:hover .offer-icon {
    background: rgba(242, 183, 5, 0.15);
}

.offer-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F2F2F2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.offer-card p {
    color: #8A8A8A;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.values-section {
    background: #121212;
}

.values-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.values-text p {
    color: #C8C8C8;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.btn-about-contact {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F2B705 0%, #C98A00 100%);
    color: #111 !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-about-contact:hover {
    box-shadow: 0 8px 25px rgba(242, 183, 5, 0.4);
    transform: translateY(-2px);
    color: #111 !important;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #161616;
    border: 1px solid rgba(242, 183, 5, 0.08);
    border-radius: 12px;
    padding: 22px;
    transition: border-color 0.25s ease;
}

.value-row:hover {
    border-color: rgba(242, 183, 5, 0.25);
}

.value-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(242, 183, 5, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2B705;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F2F2F2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}

.value-content p {
    font-size: 1.05rem;
    color: #8A8A8A;
    margin: 0;
    line-height: 1.5;
}

.about-cta-section {
    background: #0A0A0A;
    border-top: 1px solid rgba(242, 183, 5, 0.15);
}

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
}

.about-cta-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #F2F2F2;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.about-cta-inner p {
    color: #8A8A8A;
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F2B705 0%, #C98A00 100%);
    color: #111 !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-primary-hero:hover {
    box-shadow: 0 8px 25px rgba(242, 183, 5, 0.4);
    transform: translateY(-2px);
    color: #111 !important;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F2B705 !important;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 13px 24px;
    border-radius: 6px;
    border: 2px solid #F2B705;
    text-decoration: none !important;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary-hero:hover {
    background: #F2B705;
    color: #111 !important;
}

@media (max-width: 1000px) {
    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {

    .about-intro,
    .values-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}