:root {
    --acr-blue: #000033;
    --acr-dark: #111111;
    --acr-gray: #666666;
    --acr-light: #f5f6f8;
    --acr-white: #ffffff;
}

/* CABECERA */
#header {
    background: var(--acr-white);
    border-bottom: 1px solid #e5e5e5;
}

#header .navbar {
    min-height: 78px;
    align-items: center;
}

#header .navbar-brand img {
    height: 50px;
    width: auto;
    display: block;
}

/* MENU */
#header .navigation > li > a {
    color: var(--acr-dark);
    font-weight: 600;
    text-decoration: none;
}

#header .navigation > li > a:hover,
#header .navigation > li > a.active {
    color: var(--acr-blue);
}

/* CONTENIDO */
body {
    background: var(--acr-white);
    color: var(--acr-dark);
}

/* HOME AGENCIACR */

.acr-hero {
    padding: 90px 0 70px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f4f7fb 55%, #eef3f9 100%);
}

.acr-hero-content {
    max-width: 1180px;
    margin: 0 auto;
}

.acr-hero-copy {
    max-width: 780px;
}

.acr-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--acr-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.acr-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: .98;
    letter-spacing: -0.04em;
    color: var(--acr-dark);
}

.acr-hero h2 {
    margin: 18px 0 0;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    color: var(--acr-blue);
}

.acr-hero p {
    max-width: 700px;
    margin-top: 24px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--acr-gray);
}

.acr-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.acr-btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.acr-btn-primary {
    background: var(--acr-blue);
    color: #fff;
}

.acr-btn-secondary {
    border: 1px solid #cfd6df;
    background: #fff;
    color: var(--acr-dark);
}

.acr-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.acr-service-card {
    padding: 28px;
    background: #fff;
    border: 1px solid #e5e8ec;
    border-radius: 10px;
}

.acr-service-card h3 {
    margin-top: 0;
    color: var(--acr-dark);
}

.acr-service-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
}

.acr-conversemos {
    margin-top: 70px;
    padding: 50px 0 10px;
    border-top: 1px solid #e3e6ea;
}

.acr-conversemos h2 {
    margin-bottom: 10px;
}

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

@media (max-width: 600px) {
    .acr-hero {
        padding: 55px 0 45px;
    }

    .acr-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HOME AGENCIACR V2 ===== */

.acr-home {
    background: #fff;
}

.acr-hero {
    padding: 0;
    background: #fff;
}

.acr-hero-main {
    padding: 80px 0 70px;
    max-width: 1180px;
    margin: 0 auto;
}

.acr-hero-text {
    max-width: 760px;
}

.acr-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #000033;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.acr-hero-main h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: .95;
    letter-spacing: -.04em;
    color: #111;
}

.acr-hero-main h1 span {
    color: #d30000;
}

.acr-hero-main h2 {
    margin: 20px 0 0;
    color: #000033;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.acr-hero-main p {
    max-width: 680px;
    margin-top: 22px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666;
}

.acr-main-services {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 0 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.acr-main-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e3e7ec;
    border-radius: 12px;
}

.acr-main-card .acr-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #000033;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.acr-main-card-red .acr-icon {
    background: #d30000;
}

.acr-main-card h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    color: #111;
}

.acr-main-card p {
    color: #666;
    line-height: 1.6;
}

.acr-main-card a {
    font-weight: 700;
    color: #000033;
    text-decoration: none;
}

.acr-main-card-red a {
    color: #d30000;
}

.acr-digital-media {
    background: #f7f8fa;
    padding: 70px 0;
}

.acr-section-title {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.acr-section-title span {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #000033;
}

.acr-section-title h2 {
    margin: 10px 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #111;
}

.acr-section-title p {
    color: #666;
}

.acr-services-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.acr-service-card {
    background: #fff;
    border-radius: 10px;
    border-top: 4px solid #000033;
}

.acr-service-card:nth-child(2),
.acr-service-card:nth-child(4) {
    border-top-color: #d30000;
}

.acr-contact-strip {
    padding: 48px max(5vw, 30px);
    background: linear-gradient(115deg, #002b66 0%, #000033 65%, #d30000 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.acr-contact-strip span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.acr-contact-strip h2 {
    margin: 5px 0;
    color: #fff;
    font-size: 2.4rem;
}

.acr-contact-strip p {
    margin: 0;
    color: rgba(255,255,255,.9);
}

.acr-btn-light {
    background: #fff;
    color: #000033;
}

@media (max-width: 900px) {
    .acr-main-services {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .acr-contact-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .acr-hero-main {
        padding: 55px 20px 45px;
    }
}

/* ===== HOME AGENCIACR V2 ===== */

.acr-home {
    background: #fff;
}

.acr-hero {
    padding: 0;
    background: #fff;
}

.acr-hero-main {
    padding: 80px 0 70px;
    max-width: 1180px;
    margin: 0 auto;
}

.acr-hero-text {
    max-width: 760px;
}

.acr-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #000033;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.acr-hero-main h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: .95;
    letter-spacing: -.04em;
    color: #111;
}

.acr-hero-main h1 span {
    color: #d30000;
}

.acr-hero-main h2 {
    margin: 20px 0 0;
    color: #000033;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.acr-hero-main p {
    max-width: 680px;
    margin-top: 22px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666;
}

.acr-main-services {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 0 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.acr-main-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e3e7ec;
    border-radius: 12px;
}

.acr-main-card .acr-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #000033;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.acr-main-card-red .acr-icon {
    background: #d30000;
}

.acr-main-card h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    color: #111;
}

.acr-main-card p {
    color: #666;
    line-height: 1.6;
}

.acr-main-card a {
    font-weight: 700;
    color: #000033;
    text-decoration: none;
}

.acr-main-card-red a {
    color: #d30000;
}

.acr-digital-media {
    background: #f7f8fa;
    padding: 70px 0;
}

.acr-section-title {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.acr-section-title span {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #000033;
}

.acr-section-title h2 {
    margin: 10px 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #111;
}

.acr-section-title p {
    color: #666;
}

.acr-services-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.acr-service-card {
    background: #fff;
    border-radius: 10px;
    border-top: 4px solid #000033;
}

.acr-service-card:nth-child(2),
.acr-service-card:nth-child(4) {
    border-top-color: #d30000;
}

.acr-contact-strip {
    padding: 48px max(5vw, 30px);
    background: linear-gradient(115deg, #002b66 0%, #000033 65%, #d30000 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.acr-contact-strip span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.acr-contact-strip h2 {
    margin: 5px 0;
    color: #fff;
    font-size: 2.4rem;
}

.acr-contact-strip p {
    margin: 0;
    color: rgba(255,255,255,.9);
}

.acr-btn-light {
    background: #fff;
    color: #000033;
}

@media (max-width: 900px) {
    .acr-main-services {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .acr-contact-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .acr-hero-main {
        padding: 55px 20px 45px;
    }
}

/* ===== SECCIONES DE SERVICIOS ===== */

.acr-service-section {
    padding: 75px 20px;
}

.acr-section-white {
    background: #ffffff;
}

.acr-section-light {
    background: #f5f7fa;
}

.acr-service-section .acr-section-title {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.acr-service-section .acr-section-title span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #000033;
}

.acr-service-section .acr-section-title h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: #111;
}

.acr-service-section .acr-section-title p {
    margin: 0;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.acr-service-section .acr-services-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.acr-service-section .acr-service-card {
    background: #fff;
    padding: 28px;
    border: 1px solid #e3e7ec;
    border-top: 4px solid #000033;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.acr-service-section .acr-service-card:nth-child(2),
.acr-service-section .acr-service-card:nth-child(4) {
    border-top-color: #d30000;
}

.acr-service-section .acr-service-card h3 {
    margin: 0 0 12px;
    color: #111;
    font-size: 1.2rem;
}

.acr-service-section .acr-service-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: .96rem;
}

@media (max-width: 950px) {
    .acr-service-section .acr-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .acr-service-section {
        padding: 55px 20px;
    }

    .acr-service-section .acr-services-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== ACERCA DE ===== */

.acr-about-section {
    padding: 85px 20px 65px;
    background: #ffffff;
}

.acr-about-section .acr-section-title {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.acr-about-section .acr-section-title span {
    color: #d30000;
}

.acr-about-section .acr-section-title h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.acr-about-section .acr-section-title p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #666;
}


/* ===== CONTACTO ===== */

.acr-contact-section {
    padding: 75px 20px 90px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.acr-contact-intro {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.acr-contact-intro > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #000033;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.acr-contact-intro h2 {
    margin: 0 0 16px;
    color: #111;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.acr-contact-intro p {
    max-width: 680px;
    margin: 0 auto;
    color: #666;
    font-size: 1.08rem;
    line-height: 1.7;
}

.acr-contact-list {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 40px;
}

.acr-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 10px 0;
    border-bottom: 1px solid #e4e8ee;
    color: #111;
    text-decoration: none;
}

.acr-contact-item:hover {
    text-decoration: none;
}

.acr-contact-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

.acr-contact-icon.acr-blue {
    background: #000033;
}

.acr-contact-icon.acr-red {
    background: #d30000;
}

.acr-contact-item small {
    display: block;
    margin-bottom: 3px;
    color: #777;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.acr-contact-item strong {
    display: block;
    color: #111;
    font-size: 1.03rem;
    font-weight: 700;
}

.acr-contact-item[href]:hover strong {
    color: #000033;
}

@media (max-width: 700px) {
    .acr-contact-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .acr-contact-intro {
        text-align: left;
    }

    .acr-about-section .acr-section-title {
        text-align: left;
    }
}



/* ===== ESTADÍSTICAS ===== */

.acr-stats-page {
    width: 100%;
    min-height: calc(100vh - 120px);
    margin: 0;
    padding: 70px 5vw 90px;
    background: #fff;
}

.acr-stats-page .acr-section-title {
    width: 100%;
    margin: 0 0 45px;
    text-align: left;
}

.acr-stats-page .acr-section-title > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #000033;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.acr-stats-page .acr-section-title h1 {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.acr-stats-page .acr-section-title p {
    margin: 0;
    color: #666;
    font-size: 1.06rem;
}

.acr-stats-grid {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.acr-stats-item {
    width: 100%;
    min-height: 92px;
    padding: 20px 28px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 35px;

    background: rgba(11,78,162,.055);
    border: 1px solid rgba(11,78,162,.12);
    border-radius: 18px;

    text-decoration: none;
}

.acr-stats-item:nth-child(even) {
    background: rgba(227,27,35,.04);
    border-color: rgba(227,27,35,.11);
}

.acr-stats-text {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    align-items: center;
    gap: 35px;

    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

.acr-stats-text strong {
    color: #111;
    font-size: 1.08rem;
    font-weight: 750;
}

.acr-stats-text small {
    color: #666;
    font-size: .95rem;
    line-height: 1.45;
}

.acr-stats-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    padding: 10px 18px;

    border: 1px solid rgba(11,78,162,.35);
    border-radius: 999px;

    color: #000033;
    font-size: .86rem;
    font-weight: 700;
    white-space: nowrap;
}

.acr-stats-item:nth-child(even) .acr-stats-button {
    border-color: rgba(227,27,35,.35);
    color: #d30000;
}

.acr-stats-item:hover {
    text-decoration: none;
}

@media (max-width: 800px) {

    .acr-stats-page {
        padding: 55px 20px 70px;
    }

    .acr-stats-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .acr-stats-text {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .acr-stats-button {
        justify-self: start;
    }
}

/* ===== ESTADÍSTICAS: ALINEACIÓN CON HOME ===== */

.acr-stats-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 20px 90px;
}

.acr-stats-page .acr-section-title {
    max-width: 820px;
    margin: 0 0 42px;
}

.acr-stats-grid {
    width: 100%;
    max-width: 1180px;
}

.acr-stats-item {
    min-height: 86px;
    padding: 18px 24px;
    border-radius: 12px;
}

.acr-stats-text {
    grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
    gap: 28px;
}

@media (max-width: 800px) {
    .acr-stats-page {
        padding: 55px 20px 70px;
    }

    .acr-stats-text {
        grid-template-columns: 1fr;
    }
}

/* ===== BANNER WEB ===== */

.acr-banner-page {
    width: 100%;
    max-width: 1180px;
    min-height: calc(100vh - 120px);
    margin: 0 auto;
    padding: 70px 20px 90px;
    background: #ffffff;
}

.acr-banner-page .acr-section-title {
    max-width: 820px;
    margin: 0 0 42px;
    text-align: left;
}

.acr-banner-page .acr-section-title span {
    display: inline-block;
    margin-bottom: 10px;
    color: #000033;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.acr-banner-page .acr-section-title h1 {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.acr-banner-page .acr-section-title p {
    margin: 0;
    color: #666;
    font-size: 1.06rem;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .acr-banner-page {
        padding: 55px 20px 70px;
    }
}

/* Croquis Banner Web */
.acr-banner-croquis {
    width: 100%;
    margin: 45px auto 0;
}

.acr-banner-croquis img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ===== TEXTO BANNER WEB ===== */

.acr-banner-copy {
    margin: 45px 0 0;
}

.acr-banner-copy h2 {
    margin: 0 0 16px;
    color: #111;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.acr-banner-copy > p {
    max-width: 900px;
    margin: 0 0 30px;
    color: #666;
    font-size: 1.04rem;
    line-height: 1.7;
}

.acr-banner-placements {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 30px;
    margin-bottom: 10px;
}

.acr-banner-placement {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e8ec;
}

.acr-banner-placement strong {
    color: #111;
}

.acr-banner-placement span {
    color: #000033;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .acr-banner-placements {
        grid-template-columns: 1fr;
    }
}

/* ===== BANNER WEB: UBICACIONES COMPACTAS ===== */

.acr-banner-copy > p {
    max-width: 980px;
    margin: 0 0 16px;
}

.acr-banner-placements {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
}

.acr-banner-placement {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
    padding: 11px 0;
    border-bottom: 1px solid #e5e8ec;
}

.acr-banner-placement > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.acr-banner-placement strong {
    color: #111;
    font-size: .96rem;
}

.acr-banner-placement small {
    color: #000033;
    font-size: .9rem;
    font-weight: 800;
    white-space: nowrap;
}

.acr-banner-number {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
}

.acr-number-red {
    background: #d30000;
}

.acr-number-blue {
    background: #000033;
}

@media (max-width: 700px) {
    .acr-banner-placements {
        grid-template-columns: 1fr;
    }

    .acr-banner-placement > div {
        align-items: flex-start;
    }
}

/* ===== AJUSTE BANNER WEB ===== */

.acr-banner-placements {
    max-width: 920px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
}

.acr-banner-placement {
    padding: 10px 0;
}

.acr-banner-placement > div {
    gap: 12px;
}

.acr-banner-number {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    font-size: .82rem;
}

/* Colores según croquis */
.acr-banner-placement:nth-child(1) .acr-banner-number,
.acr-banner-placement:nth-child(2) .acr-banner-number {
    background: #d30000;
}

.acr-banner-placement:nth-child(3) .acr-banner-number,
.acr-banner-placement:nth-child(4) .acr-banner-number {
    background: #000033;
}

.acr-banner-placement strong {
    font-size: .92rem;
}

.acr-banner-placement small {
    font-size: .86rem;
}

@media (max-width: 700px) {
    .acr-banner-placements {
        max-width: 100%;
        grid-template-columns: 1fr;
    }
}

/* ===== BANNER WEB: LISTADO VERTICAL ===== */

.acr-banner-placements {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
}

.acr-banner-placement {
    width: 100%;
    min-height: 58px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #e5e8ec;
}

.acr-banner-placement > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.acr-banner-number {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: .86rem;
    font-weight: 800;
}

.acr-banner-placement:nth-child(1) .acr-banner-number,
.acr-banner-placement:nth-child(2) .acr-banner-number {
    background: #d30000;
}

.acr-banner-placement:nth-child(3) .acr-banner-number,
.acr-banner-placement:nth-child(4) .acr-banner-number {
    background: #000033;
}

@media (max-width: 600px) {
    .acr-banner-placement > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

/* Ajuste ancho croquis Banner Web */
.acr-banner-croquis {
    max-width: 980px;
    margin: 45px 0 0;
}

.acr-banner-croquis img {
    width: 100%;
    height: auto;
}

/* ===== STREAMING ===== */

.acr-streaming-page {
    width: 100%;
    max-width: 1180px;
    min-height: calc(100vh - 120px);
    margin: 0 auto;
    padding: 70px 20px 90px;
    background: #ffffff;
}

.acr-streaming-page .acr-section-title {
    max-width: 820px;
    margin: 0 0 42px;
    text-align: left;
}

.acr-streaming-page .acr-section-title span {
    display: inline-block;
    margin-bottom: 10px;
    color: #000033;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.acr-streaming-page .acr-section-title h1 {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.acr-streaming-page .acr-section-title p {
    margin: 0;
    color: #666;
    font-size: 1.06rem;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .acr-streaming-page {
        padding: 55px 20px 70px;
    }
}

/* ===== CONTENIDO STREAMING ===== */

.acr-streaming-content {
    max-width: 900px;
    margin-top: 45px;
}

.acr-streaming-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid #e5e8ec;
}

.acr-streaming-number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000033;
    color: #fff;
    font-weight: 800;
}

.acr-streaming-block:nth-child(2) .acr-streaming-number {
    background: #d30000;
}

.acr-streaming-block h2 {
    margin: 0 0 10px;
    color: #111;
    font-size: 1.45rem;
}

.acr-streaming-block p {
    max-width: 780px;
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== OPCIONES PUBLICIDAD EN VIDEO ===== */

.acr-video-options {
    margin-top: 22px;
    max-width: 780px;
}

.acr-video-options > div {
    padding: 12px 0;
    border-bottom: 1px solid #e5e8ec;
}

.acr-video-options strong {
    display: block;
    margin-bottom: 3px;
    color: #111;
    font-size: .96rem;
}

.acr-video-options span {
    display: block;
    color: #666;
    font-size: .92rem;
    line-height: 1.5;
}

/* ===== IMAGEN PROGRAMAS STREAMING ===== */

.acr-streaming-image {
    max-width: 900px;
    margin: 10px 0 35px;
}

.acr-streaming-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 700px) {
    .acr-streaming-image {
        max-width: 100%;
        margin-bottom: 28px;
    }
}

/* Ajuste tamaño imagen Streaming */
.acr-streaming-image {
    max-width: 760px;
}

/* ===== IMAGEN PUBLICIDAD RADIO ===== */

.acr-radio-image {
    max-width: 760px;
    margin: 45px 0 15px;
}

.acr-radio-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 700px) {
    .acr-radio-image {
        max-width: 100%;
        margin-top: 35px;
    }
}

/* ===== IMAGEN ESTADÍSTICAS ===== */

.acr-stats-image {
    width: 100%;
    max-width: 760px;
    margin: 0 0 45px;
}

.acr-stats-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 700px) {
    .acr-stats-image {
        max-width: 100%;
        margin-bottom: 35px;
    }
}

/* ===== IMÁGENES SERVICIOS WEB ===== */

.acr-service-image {
    display: block;
    width: 100%;
    max-width: 190px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto 18px;
}

/* ===== EVITAR PALABRAS CORTADAS ===== */
.acr-home,
.acr-home p,
.acr-home h1,
.acr-home h2,
.acr-home h3,
.acr-home h4 {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}



/* ===== HERO HOME ===== */

.acr-hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
    align-items: center;
    gap: 70px;
    min-height: 570px;
}

.acr-hero-text {
    position: relative;
    z-index: 2;
    animation: acrHeroTextIn .75s ease-out both;
}

.acr-hero-visual {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: acrHeroVisualIn .9s ease-out both;
}

.acr-hero-img {
    position: absolute;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,.10));
}

.acr-hero-img-main {
    width: 390px;
    z-index: 2;
    animation: acrFloatMain 6s ease-in-out infinite;
}

.acr-hero-img-left {
    width: 180px;
    left: 0;
    bottom: 35px;
    z-index: 3;
    animation: acrFloatLeft 5.5s ease-in-out infinite;
}

.acr-hero-img-right {
    width: 185px;
    right: 0;
    top: 25px;
    z-index: 1;
    animation: acrFloatRight 6.5s ease-in-out infinite;
}

@keyframes acrHeroTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes acrHeroVisualIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes acrFloatMain {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes acrFloatLeft {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-8px) rotate(0deg); }
}

@keyframes acrFloatRight {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50%      { transform: translateY(9px) rotate(0deg); }
}

@media (max-width: 900px) {

    .acr-hero-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .acr-hero-visual {
        height: 330px;
    }

    .acr-hero-img-main {
        width: 320px;
    }

    .acr-hero-img-left,
    .acr-hero-img-right {
        width: 145px;
    }
}

@media (max-width: 600px) {

    .acr-hero-visual {
        height: 270px;
    }

    .acr-hero-img-main {
        width: 260px;
    }

    .acr-hero-img-left,
    .acr-hero-img-right {
        width: 110px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .acr-hero-text,
    .acr-hero-visual,
    .acr-hero-img {
        animation: none !important;
    }
}

/* ===== AJUSTE PORTADA HERO ===== */

.acr-hero-main {
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    gap: 30px;
    min-height: 520px;
}

.acr-hero-visual {
    justify-content: flex-start;
    overflow: visible;
}

.acr-hero-portada {
    width: 118%;
    max-width: 700px;
    margin-left: -35px;
}

@media (max-width: 900px) {
    .acr-hero-main {
        grid-template-columns: 1fr;
    }

    .acr-hero-portada {
        width: 100%;
        max-width: 560px;
        margin-left: 0;
    }
}

/* ===== FLOTACION SUAVE PORTADA ===== */
.acr-hero-portada {
    animation: acrPortadaFloat 6s ease-in-out infinite;
}

@keyframes acrPortadaFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .acr-hero-portada {
        animation: none !important;
    }
}

/* ===== EXPERIENCIA INTERACTIVA SERVICIOS ===== */

.acr-motion-ready .acr-service-card {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .65s ease,
        transform .65s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease;
    transition-delay: var(--acr-delay, 0ms);
    will-change: transform;
}

.acr-motion-ready .acr-service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.acr-service-image {
    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        filter .35s ease;
    will-change: transform;
}

/* Escritorio */
@media (hover: hover) and (pointer: fine) {

    .acr-service-card.is-visible:hover {
        transform:
            perspective(900px)
            rotateX(var(--acr-rx, 0deg))
            rotateY(var(--acr-ry, 0deg))
            translateY(-8px);
        box-shadow: 0 18px 38px rgba(0,0,0,.10);
    }

    .acr-service-card:hover .acr-service-image {
        transform:
            translate(
                var(--acr-img-x, 0px),
                var(--acr-img-y, -5px)
            )
            scale(1.055);
        filter: drop-shadow(0 12px 12px rgba(0,0,0,.10));
    }
}

/* Entrada de los títulos de cada sección */
.acr-motion-ready .acr-section-title {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

.acr-motion-ready .acr-section-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .acr-service-card,
    .acr-service-image,
    .acr-section-title {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ===== HEADER ROJO AGENCIACR ===== */
#header,
#header .navbar {
    background: #d30000 !important;
}

#header .navigation > li > a {
    color: #ffffff !important;
}

#header .navigation > li > a:hover,
#header .navigation > li > a.active {
    color: #ffffff !important;
    opacity: .78;
}

#header .navbar-brand img {
    height: 50px;
    width: auto;
}

/* ===== MENU ACTIVO ===== */
#header .navigation > li > a.active,
#header .navigation > li.active > a {
    background: #ffffff !important;
    color: #d30000 !important;
    opacity: 1 !important;
}

#header .navigation > li > a.active:hover,
#header .navigation > li.active > a:hover {
    color: #d30000 !important;
}

/* ===== ESTADISTICAS · COLORES UNIFICADOS ===== */

.acr-stats-item {
    background: rgba(11, 78, 162, .06) !important;
    border-color: rgba(11, 78, 162, .18) !important;
}

.acr-stats-item:hover {
    background: rgba(11, 78, 162, .10) !important;
    border-color: rgba(11, 78, 162, .28) !important;
}

.acr-stats-button {
    color: #d30000 !important;
    border-color: rgba(211, 0, 0, .45) !important;
}

.acr-stats-item:hover .acr-stats-button {
    color: #d30000 !important;
    border-color: #d30000 !important;
}


/* ===== SECCIONES HOME SIN FONDOS GRISES ===== */
.acr-service-section.acr-section-light,
.acr-service-section.acr-section-white {
    background: transparent !important;
}


/* ===== FONDO GENERAL SOLO HOME ===== */
.acr-home,
.acr-home .acr-hero {
    background: #f5f5f5 !important;
}


/* ===== FOOTER GRIS DIFERENCIADO ===== */
#footer {
    background: #e8e8e8 !important;
}


/* ===== NOSOTROS Y CONTACTO INTEGRADOS AL FONDO DEL HOME ===== */
.acr-home .acr-about-section,
.acr-home .acr-contact-section {
    background: transparent !important;
}


/* ===== ELIMINAR RAYAS DECORATIVAS EN NOSOTROS Y CONTACTO ===== */
.acr-about-section .acr-section-title::before,
.acr-about-section .acr-section-title::after,
.acr-contact-section .acr-contact-intro::before,
.acr-contact-section .acr-contact-intro::after {
    content: none !important;
    display: none !important;
}


/* ===== QUITAR BARRAS DECORATIVAS EN NOSOTROS Y CONTACTO ===== */
.acr-about-section h2::before,
.acr-about-section h2::after,
.acr-contact-section h2::before,
.acr-contact-section h2::after {
    content: none !important;
    display: none !important;
}


/* ===== HOME SIN BARRAS DECORATIVAS DE BLADES ===== */
.acr-home.breakout-all h2::before,
.acr-home .breakout-all h2::before,
.breakout-all .acr-home h2::before {
    content: none !important;
    display: none !important;
}


/* ===== ELIMINAR BARRAS DECORATIVAS DE TITULOS EN HOME ===== */
.breakout-all .acr-home h2:not([class])::before,
.breakout-all .acr-home h3:not([class])::before,
.breakout-all .acr-home h4:not([class])::before,
.breakout-all .acr-home h5:not([class])::before,
.breakout-all .acr-home h6:not([class])::before {
    content: none !important;
    display: none !important;
}


/* ===== QUITAR GUIONES EN SECCIONES DE SERVICIOS ===== */
.acr-service-section h2::before,
.acr-service-section h2::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}


/* ===== AJUSTE ESPACIADO ENTRE SECCIONES DE SERVICIOS ===== */
.acr-service-section {
    padding: 50px 20px !important;
}


/* ===== AJUSTES HERO ===== */

/* Atrévete a ser diferente */
.acr-hero-text h2 {
    color: #444444 !important;
}

/* Botón Ver servicios */
.acr-btn-primary {
    background: #d30000 !important;
    border-color: #d30000 !important;
    color: #ffffff !important;
}

.acr-btn-primary:hover {
    background: #b80000 !important;
    border-color: #b80000 !important;
    color: #ffffff !important;
}


/* ===== QUITAR BARRAS DECORATIVAS EN PAGINAS INTERNAS ===== */
main h2::before,
main h2::after {
    content: none !important;
    display: none !important;
}


/* ===== BANNER WEB · COMPACTAR CONTENIDO ===== */
.acr-banner-copy {
    margin-top: 20px !important;
}

.acr-banner-copy > p:first-child {
    margin-top: 0 !important;
}


/* ===== BANNER WEB · ESPACIO ENTRE INTRO Y CONTENIDO ===== */
.acr-banner-page .acr-section-title {
    margin-bottom: 20px !important;
}

.acr-banner-page .acr-banner-copy {
    margin-top: 0 !important;
}

