/* Start custom CSS for html, class: .elementor-element-47f071c *//* ============================================
   POLÍTICA DE PRIVACIDAD - MECHANIC PRO
   ============================================ */

/* ============================================
   RESET Y ESTILOS BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}

/* ============================================
   BANNER / HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 60px 20px 50px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.05), transparent 70%);
    border-radius: 50%;
}

.hero h2 {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
}

.hero h2 span {
    color: #e30613;
}

.hero p {
    font-size: 17px;
    color: #aaaaaa;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.hero .badge-legal {
    display: inline-block;
    background: rgba(227, 6, 19, 0.15);
    border: 1px solid rgba(227, 6, 19, 0.3);
    color: #e30613;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* ============================================
   CONTENIDO PRINCIPAL
   ============================================ */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px 60px;
}

/* ============================================
   INDICE / TABLA DE CONTENIDO
   ============================================ */
.toc {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px 35px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 30px;
}

.toc h3 {
    grid-column: 1 / -1;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 2px solid #e30613;
    padding-bottom: 12px;
}

.toc a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc a i {
    color: #e30613;
    font-size: 11px;
}

.toc a:hover {
    color: #e30613;
}

/* ============================================
   SECCIONES DE POLÍTICAS
   ============================================ */
.policy-section {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 28px;
    transition: border-color 0.3s ease;
}

.policy-section:hover {
    border-color: #e30613;
}

.policy-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.policy-section h3 i {
    color: #e30613;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(227, 6, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-section p {
    color: #cccccc;
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.8;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 14px;
}

.policy-section ul li {
    margin-bottom: 6px;
}

.policy-section ul li::marker {
    color: #e30613;
}

.policy-section .highlight-box {
    background: rgba(227, 6, 19, 0.06);
    border-left: 4px solid #e30613;
    padding: 16px 22px;
    border-radius: 8px;
    margin: 16px 0;
}

.policy-section .highlight-box strong {
    color: #e30613;
}

.policy-section .highlight-box a {
    color: #e30613;
    text-decoration: none;
}

.policy-section .highlight-box a:hover {
    text-decoration: underline;
}

/* Listas con íconos */
.icon-list {
    list-style: none;
    padding-left: 0 !important;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}

.icon-list li i {
    color: #e30613;
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 36px;
    }

    .policy-section {
        padding: 28px 25px;
    }

    .toc {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero .badge-legal {
        font-size: 11px;
        padding: 4px 14px;
    }

    .policy-section {
        padding: 22px 18px;
    }

    .policy-section h3 {
        font-size: 18px;
    }

    .policy-section h3 i {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .toc {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .toc a {
        font-size: 14px;
    }

    .policy-section .highlight-box {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 24px;
    }

    .hero .badge-legal {
        font-size: 10px;
        padding: 4px 12px;
    }

    .policy-section {
        padding: 18px 14px;
    }

    .policy-section h3 {
        font-size: 16px;
    }

    .policy-section h3 i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .policy-section p {
        font-size: 14px;
    }

    .policy-section ul {
        font-size: 14px;
    }
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.policy-section:nth-child(1) { animation-delay: 0.05s; }
.policy-section:nth-child(2) { animation-delay: 0.10s; }
.policy-section:nth-child(3) { animation-delay: 0.15s; }
.policy-section:nth-child(4) { animation-delay: 0.20s; }
.policy-section:nth-child(5) { animation-delay: 0.25s; }
.policy-section:nth-child(6) { animation-delay: 0.30s; }
.policy-section:nth-child(7) { animation-delay: 0.35s; }
.policy-section:nth-child(8) { animation-delay: 0.40s; }
.policy-section:nth-child(9) { animation-delay: 0.45s; }
.policy-section:nth-child(10) { animation-delay: 0.50s; }
.policy-section:nth-child(11) { animation-delay: 0.55s; }/* End custom CSS */