/* Políticas de Privacidad Specific Styles */

/* Hero búnefe Legal */
.hero-legal {
    margin-top: 60px;
    background: var(--bg-white);
    padding-bottom: 0;
}

.hero-legal-content {
    padding: 80px 0 60px;
}

.hero-legal-image {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay-legal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(45, 95, 93, 0.3) 0%,
        rgba(45, 95, 93, 0.6) 100%);
    z-index: 1;
}

.hero-legal-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 2rem;
}

.hero-legal-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-legal-text p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.placeholder-legal {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-align: center;
}

.placeholder-legal i {
    font-size: 2rem;
}

/* Aviso de Privacidad Section */
.aviso-privacidad {
    padding: 100px 0;
    background: var(--bg-light);
}

.aviso-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.aviso-left h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.aviso-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.aviso-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.aviso-section {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aviso-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.aviso-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.aviso-section p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
    gap: 0.8rem;
}

.read-more i {
    font-size: 0.9rem;
}

/* Certeza Legal Section */
.certeza-legal {
    padding: 100px 0;
    background: var(--bg-white);
}

.certeza-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.certeza-left h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 2rem;
}

.certeza-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.certeza-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.certeza-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certeza-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: var(--bg-white);
}

.certeza-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.certeza-text h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.certeza-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more-certeza {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.read-more-certeza:hover {
    color: var(--accent-color);
    gap: 0.8rem;
}

.read-more-certeza i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-legal-image {
        height: 400px;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
    }

    .hero-legal-text h1 {
        font-size: 3rem;
    }

    .hero-legal-text p {
        font-size: 1.1rem;
    }

    .aviso-content,
    .certeza-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aviso-left h2,
    .certeza-left h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .certeza-left {
        text-align: center;
    }

    .underline {
        margin: 0 auto 2rem;
    }

    .aviso-description,
    .certeza-description {
        text-align: center;
    }

    .certeza-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-legal-content {
        padding: 60px 0 40px;
    }

    .hero-legal-image {
        height: 350px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .hero-legal-text h1 {
        font-size: 2rem;
    }

    .hero-legal-text p {
        font-size: 1rem;
    }

    .placeholder-legal {
        bottom: 15px;
        right: 15px;
        font-size: 0.75rem;
    }

    .placeholder-legal i {
        font-size: 1.5rem;
    }

    .aviso-privacidad,
    .certeza-legal {
        padding: 60px 0;
    }

    .aviso-left h2,
    .certeza-left h2 {
        font-size: 2rem;
    }

    .aviso-section {
        padding: 2rem;
    }

    .aviso-section h3 {
        font-size: 1.5rem;
    }

    .certeza-card {
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .certeza-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .certeza-text h3 {
        font-size: 1.2rem;
    }
}
