@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Barlow', sans-serif;
    /*background: blue !important;*/
}

footer {
    border-top: 1px solid #e0e0e0;
    padding: 48px 40px 40px;
    background: #fff;
}

/* ---- COLUMN 1: Subscribe ---- */
.subscribe-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 6px;
    color: #111;
}

.subscribe-subtitle {
    font-size: 11px;
    color: #888;
    font-weight: 300;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.subscribe-input {
    display: block;
    width: 100%;
    border: 1px solid #b0b0b0;
    border-radius: 0;
    padding: 9px 12px;
    font-size: 11px;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    outline: none;
    background: #fff;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.subscribe-input:focus {
    border-color: #555;
}

.privacy-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.privacy-row input[type="checkbox"] {
    width: 13px;
    height: 13px;
    accent-color: #111;
    flex-shrink: 0;
}

.privacy-row label {
    font-size: 11px;
    color: #333;
    font-weight: 300;
}

.privacy-row label a {
    color: #333;
    text-decoration: underline;
}

.privacy-row label a:hover {
    color: #000;
}

.arrow-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    color: #111;
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* ---- COLUMN 2: Seen On ---- */
.section-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 22px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: none;
    font-weight: 400;
    transition: opacity 0.15s;
}

.social-link:hover {
    opacity: 0.6;
    color: #111;
}

.social-link .arrow {
    font-size: 13px;
    margin-left: 8px;
    letter-spacing: -1px;
}

/* ---- COLUMN 3: Contacto ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.contact-item .contact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 3px;
}

.contact-item .contact-value {
    font-size: 11px;
    color: #444;
    font-weight: 300;
    line-height: 1.4;
}

/* ---- COLUMN 4: Informacion ---- */
.info-link {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    padding: 5px 0;
    font-weight: 400;
    transition: opacity 0.15s;
}

.info-link:hover {
    opacity: 0.6;
    color: #111;
}

/* Divider between col groups */
.col-divider {
/*       border-left: 1px solid #e0e0e0; */
}

/* Scroll-to-top button */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s;
    z-index: 100;
}

.scroll-top:hover {
    background: #444;
}

/* Responsive */
@media (max-width: 991px) {
    footer {
        padding: 36px 24px 32px;
    }

    .col-divider {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 28px;
        margin-top: 8px;
    }

    .footer-col {
        margin-bottom: 28px;
    }
}

@media (max-width: 575px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px 16px;
    }
}
 