/* Estilos generales */
:root {
    --primary-color: #ff69b4;
    --accent-color: #ff1493;
    --text-color: #333;
    --background-color: #fff;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --footer-bg: #fff0f5;
    --section-bg: #fff0f5;
    --hover-color: #ff69b4;
}

/* Estilos del header */
.header {
    background-color: var(--background-color);
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(255, 105, 180, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-a {
    text-decoration: none;
}

.imagen-logo {
    width: 3em;
    border-radius: 1em;
}

@media (max-width: 1200px) {
    .imagen-logo {
        width: 2.5em;
    }
}

/* Estilos del contenido legal */
.legal-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    padding-top: 13rem;
}

.legal-content h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.legal-content section {
    margin-bottom: 1rem;
    background-color: var(--section-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(255, 105, 180, 0.2);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content p, .legal-content ul {
    line-height: 1.6;
    color: var(--text-color);
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Estilos del footer */
.footer {
    background-color: var(--footer-bg);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: var(--hover-color);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.footer-legal {
    padding-top: 1rem;
    margin-top: 2rem;
}

.footer-legal-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-li {
    margin: 0;
}

.footer-legal-a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-legal-a:hover {
    color: var(--hover-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
}

.footer-bottom p {
    color: var(--text-color);
    margin: 0;
}

/* Estilos del botón de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    transition: transform var(--transition-speed);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 24px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-legal-ul {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }

    .legal-content {
        padding-top: 15rem;
        margin: 0 auto;
        position: relative;
    }

    .legal-content h1 {
        font-size: 2rem;
        margin: 0 0 2rem 0;
        padding: 0;
        position: relative;
        z-index: 2;
        background-color: var(--background-color);
    }

    .legal-content section {
        padding: 1.5rem;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 1;
    }
} 