.elementor-3 .elementor-element.elementor-element-2ffb3d3c{--display:flex;--padding-top:100px;--padding-bottom:1005px;--padding-left:25px;--padding-right:25px;}/* Start custom CSS for html, class: .elementor-element-5007e58 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* Variables de Color e Identidad */
:root {
    --p-primary: #111111;
    --p-accent: #d2fb39; /* Verde lima de 562 Agency */
    --p-text: #333333;
    --p-muted: #666666;
    --p-border: #e5e7eb;
    --p-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--p-shadow);
    border: 1px solid var(--p-border);
    font-family: 'Inter', sans-serif;
    color: var(--p-text);
    line-height: 1.6;
}

/* Encabezado */
.privacy-header {
    border-bottom: 2px solid var(--p-border);
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.privacy-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--p-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.privacy-header .update-date {
    font-size: 0.9rem;
    color: var(--p-muted);
    font-weight: 500;
}

.privacy-header .badge-ccpa {
    display: inline-block;
    background-color: var(--p-accent);
    color: var(--p-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* Secciones generales */
.privacy-section {
    margin-bottom: 32px;
}

.privacy-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--p-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 18px;
    background-color: var(--p-accent);
    margin-right: 12px;
    border-radius: 2px;
}

.privacy-section p {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 12px;
}

.privacy-section ul {
    list-style-type: none;
    padding-left: 0;
    margin: 15px 0;
}

.privacy-section ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #4b5563;
}

.privacy-section ul li::before {
    content: "•";
    color: var(--p-primary);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 6px;
    top: -2px;
}

/* Caja Especial CCPA / California */
.ccpa-box {
    background-color: #fafafa;
    border-left: 4px solid var(--p-primary);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.ccpa-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--p-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ccpa-box p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Tarjetas de Derechos Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.right-card {
    background: #ffffff;
    border: 1px solid var(--p-border);
    padding: 16px;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.right-card:hover {
    border-color: var(--p-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.right-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--p-primary);
    margin-bottom: 6px;
}

.right-card p {
    font-size: 0.85rem;
    color: var(--p-muted);
    margin-bottom: 0;
}

/* Caja de Contacto */
.contact-box {
    background-color: var(--p-primary);
    color: #ffffff;
    padding: 28px;
    border-radius: 12px;
    margin-top: 35px;
    text-align: center;
}

.contact-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #ffffff;
}

.contact-box p {
    color: #d1d5db;
    font-size: 0.92rem;
}

.contact-box a.btn-ccpa {
    display: inline-block;
    background-color: var(--p-accent);
    color: var(--p-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.contact-box a.btn-ccpa:hover {
    opacity: 0.9;
}

/* Responsive Elementor */
@media (max-width: 768px) {
    .privacy-container { padding: 25px 18px; }
    .privacy-header h1 { font-size: 1.6rem; }
    .privacy-section h2 { font-size: 1.15rem; }
}/* End custom CSS */