/* ===== ESTILOS COMPLETOS PARA PÁGINAS DE POLÍTICAS Y TÉRMINOS ===== */

/* Contenedor principal */
.policies-content {
    padding: 3rem 0;
    background: #ffffff;
}

.policies-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fecha de actualización */
.last-updated {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    border-left: 4px solid #25D366;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.last-updated p {
    margin: 0;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Introducción */
.introduction-box {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.introduction-box h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.introduction-box p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Secciones principales */
.policy-section {
    margin-bottom: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.policy-section h2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid #25D366;
    position: relative;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #25D366;
}

.policy-section > p,
.policy-section > ul {
    padding: 1.5rem 2rem;
    margin: 0;
    line-height: 1.7;
    color: #fff8f8;
}

.policy-section > ul {
    list-style: none;
    padding-left: 2rem;
}

.policy-section > ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.policy-section > ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #25D366;
    font-size: 0.9rem;
    font-weight: bold;
}

.policy-section > ul li strong {
    color: #25D366;
    font-weight: 600;
}

/* Items internos */
.policy-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-item h3 {
    color: #25D366;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.policy-item p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-item ul {
    list-style: none;
    padding-left: 0;
}

.policy-item ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #ffffff;
}

.policy-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Grid de definiciones */
.definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.definition-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #25D366;
    transition: all 0.3s ease;
}

.definition-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.definition-item h3 {
    color: #25D366;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.definition-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Grid de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.service-item {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 12px;
    border-top: 4px solid #25D366;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #ffffff;
}

.service-item h3 {
    color: #00f619;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
}

.service-item ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #25D366;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Requisitos */
.requirements-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.req-column h3 {
    color: #25D366;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.req-column ul {
    list-style: none;
    padding: 0;
}

.req-column ul li {
    background: rgb(0, 0, 0);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 3px solid #25D366;
    transition: all 0.3s ease;
    font-weight: 500;
}

.req-column ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Nota especial */
.special-note {
    background: linear-gradient(135deg, #fff3cd 0%, #fdeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 2rem;
    position: relative;
}

.special-note::before {
    content: "⚠️";
    font-size: 1.5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    background: #fff3cd;
    padding: 0 10px;
}

.special-note p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    line-height: 1.6;
}

/* Proceso paso a paso */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.step-item {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #25D366;
    background: white;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.step-item h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Condiciones financieras */
.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.financial-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.financial-item:hover {
    border-color: #25D366;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.financial-item h3 {
    color: #25D366;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.financial-item p {
    margin: 0.8rem 0;
    color: #ffffff;
    line-height: 1.6;
}

.financial-item strong {
    color: #25D366;
    font-weight: 600;
}

.financial-item em {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Obligaciones */
.obligations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.obligation-group {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 12px;
    border-left: 4px solid #25D366;
    transition: all 0.3s ease;
}

.obligation-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.obligation-group h3 {
    color: #25D366;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.obligation-group ul {
    list-style: none;
    padding-left: 0;
}

.obligation-group ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #333;
}

.obligation-group ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Grid de derechos */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.right-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.right-item h3 {
    color: #25D366;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.right-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Timeline de cobranza */
.collection-timeline {
    padding: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #25D366;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
}

.timeline-date {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.timeline-item div:not(.timeline-date) {
    flex: 1;
}

.timeline-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.collection-note {
    background: linear-gradient(135deg, #e7f3ff 0%, #cce7ff 100%);
    border: 2px solid #4dabf7;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 2rem 0;
    position: relative;
}

.collection-note::before {
    content: "ℹ️";
    font-size: 1.5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    background: #e7f3ff;
    padding: 0 10px;
}

.collection-note p {
    margin: 0;
    color: #1c7ed6;
    font-weight: 500;
    line-height: 1.6;
}

/* Terminación */
.termination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.termination-item {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 12px;
    border-top: 4px solid #25D366;
    transition: all 0.3s ease;
}

.termination-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.termination-item h3 {
    color: #25D366;
    margin-bottom: 1.2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.termination-item ul {
    list-style: none;
    padding-left: 0;
}

.termination-item ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #333;
}

.termination-item ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #25D366;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Protección de datos */
.data-protection {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 2rem;
    border: 2px solid #e9ecef;
}

.data-protection p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #333;
}

.data-protection ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.data-protection ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #333;
}

.data-protection ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
    font-size: 1.1rem;
}

.data-protection a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.data-protection a:hover {
    text-decoration: underline;
    color: #128C7E;
}

/* Resolución de conflictos */
.conflict-resolution {
    padding: 2rem;
}

.resolution-step {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.resolution-step:hover {
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.resolution-step h3 {
    color: #25D366;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resolution-step p {
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.resolution-step strong {
    color: #25D366;
    font-weight: 600;
}

.resolution-step ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.resolution-step ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
}

.resolution-step ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #25D366;
    font-size: 0.9rem;
    font-weight: bold;
}

.resolution-step ul li strong {
    color: #333;
}

/* Derecho de retracto */
.retraction-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.retraction-details {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.retraction-details:hover {
    border-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.retraction-details h3 {
    color: #25D366;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.retraction-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.retraction-details strong {
    color: #25D366;
    font-weight: 600;
}

/* Modificaciones */
.modifications-info {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 2rem;
    border: 2px solid #e9ecef;
}

.modifications-info p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #333;
}

.modifications-info ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.modifications-info ul li {
    background: #ffffff;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #25D366;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.modifications-info ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.modifications-info ul li strong {
    color: #25D366;
    font-weight: 600;
}

/* Información regulatoria */
.regulatory-info {
    padding: 2rem;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.reg-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.reg-item:hover {
    border-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.reg-item h3 {
    color: #25D366;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.reg-item p {
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.reg-item strong {
    color: #25D366;
    font-weight: 600;
}

.reg-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.reg-item ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
}

.reg-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Fuerza mayor */
.force-majeure {
    padding: 2rem;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-radius: 12px;
    border: 2px solid #ffc107;
    margin: 2rem;
}

.force-majeure p {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.force-majeure ul {
    list-style: none;
    padding-left: 0;
}

.force-majeure ul li {
    background: #ffffff;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #ff9800;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.1);
    transition: all 0.3s ease;
}

.force-majeure ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
}

.force-majeure ul li strong {
    color: #e65100;
    font-weight: 600;
}

/* Cláusulas especiales */
.special-clauses {
    padding: 2rem;
}

.clause-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #25D366;
    transition: all 0.3s ease;
}

.clause-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.clause-item h3 {
    color: #25D366;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.clause-item p {
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Aceptación */
.acceptance-section {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.acceptance-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.acceptance-container p {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.95;
}

.acceptance-list {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
}

.acceptance-list li {
    text-align: left;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.acceptance-list li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.acceptance-list li::before {
    content: "✓";
    font-size: 1.5rem;
    color: #ffffff;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Secciones de contacto */
.contact-privacy,
.contact-legal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.contact-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border-top: 4px solid #25D366;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-top-width: 6px;
}

.contact-item h3 {
    color: #25D366;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-item strong {
    color: #25D366;
    font-weight: 600;
}

/* Badges de cumplimiento */
.compliance-badges {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 2rem;
}

.compliance-badges h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.badge-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-item:hover {
    border-color: #25D366;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.badge-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    color: #25D366;
}

.badge-item p {
    color: #333;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.badge-item strong {
    color: #25D366;
    display: block;
    margin-top: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Nota final */
.final-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem;
    text-align: center;
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.final-note p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.final-note p:last-child {
    color: #25D366;
    font-weight: bold;
    margin: 0;
    font-size: 1.1rem;
}

/* Sección de contacto */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1rem;
    margin: 2rem;
}

.contact-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Animaciones */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.policy-section {
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item {
    animation: slideInRight 0.5s ease-out;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .policies-container { padding: 0 15px; }
    .introduction-box { padding: 2rem 1.5rem; }
    .introduction-box h2 { font-size: 1.8rem; }
    
    .definitions-grid,
    .services-grid,
    .financial-grid,
    .rights-grid,
    .reg-grid,
    .requirements-container,
    .obligations-container,
    .termination-grid,
    .process-steps,
    .contact-privacy,
    .contact-legal,
    .retraction-info {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    .timeline-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .policy-section h2 { font-size: 1.3rem; padding: 1rem 1.5rem; }
    .policy-item { padding: 1rem 1.5rem; }
    .policy-section > p,
    .policy-section > ul { padding: 0 1.5rem 1rem; }
    
    .special-note,
    .collection-note,
    .data-protection,
    .modifications-info,
    .force-majeure,
    .acceptance-section,
    .contact-section,
    .compliance-badges,
    .final-note {
        margin: 1.5rem 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .badges-grid { grid-template-columns: 1fr; }
    .step-number { width: 50px; height: 50px; font-size: 1.5rem; }
    .acceptance-list li { flex-direction: column; text-align: center; padding: 1rem; }
    .acceptance-list li::before { margin-bottom: 0.5rem; }
    .introduction-box h2 { font-size: 1.5rem; }
    
    .financial-item,
    .right-item,
    .retraction-details,
    .step-item,
    .definition-item,
    .service-item,
    .obligation-group,
    .termination-item,
    .clause-item {
        padding: 1.5rem;
    }
}

/* Estados de accesibilidad */
@media (prefers-contrast: high) {
    .policy-section h2 { background: #ffffff; border-bottom: 4px solid #25D366; }
    .introduction-box,
    .acceptance-section { background: #25D366; border: 2px solid #000000; }
    .timeline-date { background: #25D366; border: 2px solid #000000; }
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .policies-content { background: #ffffff; color: #ffffff; }
    .policy-section { background: #2d2d2d; border-color: #404040; }
    .policy-section h2 { background: #404040; color: #ffffff; }
    .definition-item,
    .service-item,
    .financial-item,
    .right-item { background: #2d2d2d; border-color: #404040; color: #ffffff; }
    .definition-item p,
    .service-item ul li,
    .right-item p { color: #cccccc; }
}

/* Efectos finales */
.policy-section:hover .policy-section h2::before {
    width: 8px;
    transition: width 0.3s ease;
}

html { scroll-behavior: smooth; }

.policy-section:focus-within {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

/* ===== FIN ESTILOS POLÍTICAS ===== */