:root {
    --accent: #B41B70;
    --morado: #30245B;
    --text: #000;
    --muted: #6b7280;
    --bg: #f7f7fb;
    --card: #ffffff;
    --radius: 8px;
    font-family: "Poppins", sans-serif, Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

button, input, select, textarea 
{
    font-family: inherit;
}


.bg-color-fucsia
{
    background-color: #B41B70 !important;
}

.bg-color-morado
{
    background-color: #30245B !important;
}

.bg-color-celeste
{
    background-color: #67B8CC !important;
}

.bg-color-celeste-oscuro
{
    background-color: #00A0C1 !important;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    background-image: url(../images/background.png);
    background-size: cover;
    color: #111827;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.35;
}

header {
    background: linear-gradient(90deg, #8F0E57 0%, #B41B71 100%);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 20;
    color:white;
}

header .logo
{
    display: flex;
    align-items: center;
}

a
{
    text-decoration: none;
}

main {
    max-width: 1100px;
    margin: 26px auto;
    padding: 0 18px 80px
}

h2.section-title {
    font-size: 20px;
    margin: 24px 0px;
    color: #0f1724;
}

section
{
    margin-bottom: 48px;
}

/**** Buttons ****/
.btn {
    padding: 8px 12px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 18px rgba(255, 107, 107, 0.12)
}

.btn-ghost {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: var(--muted)
}

.btn-morado {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: var(--morado)
}



footer {
    background: #30245B;
    padding: 20px;
    margin-top: 36px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-direction: column;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    font-size: .95rem;
    color:white !important;
}

.socials {
    display: flex;
    gap: 8px;
    align-items: center
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #30245B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    text-decoration: none
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 12px;
    color: var(--muted);
    font-size: .92rem
}



.back-floating
{
    position: absolute;
    top: 24px;
    background-color: white;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 8px;
}

@media (max-width:600px) {
    header {
        padding: 12px
    }
}

/********************/

