/* ── Estilos específicos de la página Hogar ── */

/* Hero Hogar */
.hero-hogar {
    position: relative;
    padding: 70px 0 100px;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-hogar .hero-image-bg {
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0) 100%),
        url('../img/hero-hogar-desktop.jpeg');
    background-size: cover;
    background-position: center top;
}

@media (max-width: 992px) {
    .hero-hogar .hero-image-bg {
        background-image:
            linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%),
            url('../img/hero-hogar-mobile.jpeg');
    }
}

/* USP strip */
.usp-strip {
    background: var(--adt-navy);
    padding: 20px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
}

.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.usp-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .usp-item {
        flex-direction: column;
        gap: 8px;
        font-size: 0.75rem;
    }
}

/* Hogar features */
.hogar-features {
    padding: 80px 0;
}

.hogar-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .hogar-features-grid {
        grid-template-columns: 1fr;
    }
}

.hogar-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray);
    border-radius: var(--radius-card);
    padding: 35px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hogar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.hogar-card-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.hogar-card h4 {
    color: var(--adt-navy);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.hogar-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* Showcase split */
.hogar-showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.hogar-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .hogar-split {
        grid-template-columns: 1fr;
    }
}

.hogar-split img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hogar-split-text h2 {
    color: var(--adt-navy);
    font-size: 2rem;
    margin-bottom: 20px;
}

.hogar-split-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    margin: 25px 0 30px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--adt-cyan);
    font-weight: 900;
    font-size: 1rem;
}

/* "Un día con ADT" section */
.un-dia-section {
    padding: 80px 0;
    background: var(--adt-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.un-dia-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/comunicacion-background.jpg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.un-dia-section>* {
    position: relative;
    z-index: 1;
}

.un-dia-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.un-dia-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 40px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
    flex-wrap: wrap;
}

.timeline-item {
    text-align: center;
    padding: 0 30px;
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.timeline-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -5px;
    top: 28px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 15px;
    color: white;
}

.timeline-item h3 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item::after {
        display: none;
    }
}

/* CRA section */
.cra-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.cra-grid img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Comparison table */
.comparison-section {
    padding: 80px 0;
}

.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: var(--radius-card);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.comparison-table th {
    padding: 18px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--bg-light);
    color: var(--adt-navy);
    border-bottom: 2px solid var(--bg-gray);
}

.comparison-table th.featured-col {
    background: var(--adt-cyan);
    color: white;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--bg-gray);
    color: var(--text-dark);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table td.featured-col {
    background: rgba(0, 97, 170, 0.04);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check-yes {
    color: var(--adt-cyan);
    font-weight: 800;
    font-size: 1.1rem;
}

.comparison-table .check-no {
    color: #ccc;
    font-size: 1.1rem;
}

.comparison-table .price-row td {
    background: var(--adt-navy);
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table .price-row td.featured-col {
    background: var(--adt-cyan);
    color: white;
}

/* Personas mayores section */
.senior-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.senior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.senior-grid img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* CTA banner */
.cta-hogar {
    background: #245fa4;
    padding: 70px 0;
    text-align: center;
}

.cta-hogar h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-hogar p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



.btn-white {
    background: white;
    color: var(--adt-navy);
    border-color: white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: white;
    color: var(--adt-navy);
    border-color: white;
}
