/**
 * GE·HO Custom Styles 2026
 * Fonts: Syne (Titles/Headers) & Manrope (Body)
 */

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

:root {
    --font-titles: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

body {
    font-family: var(--font-body);
}

/* --- TYPOGRAPHY & BRANDING --- */
h1, h2, h3, h4, h5, h6, 
.title, 
.section-title, 
.hero-title, 
.label, 
.numbers-large .amount,
.footer__slogan {
    font-family: var(--font-titles) !important;
    text-transform: lowercase !important;
    letter-spacing: -0.02em;
}

.label {
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.title {
    font-weight: 600;
}

/* Menus */
.menu-header li a, 
.menu__navigation li a,
.footer__legal a,
.social-links a {
    font-family: var(--font-titles) !important;
    text-transform: lowercase !important;
    font-weight: 500;
}

/* Logo and Brand naming */
.logo-text, 
.brand-name {
    text-transform: lowercase !important;
    font-weight: 700;
}

/* --- FOOTER REDESIGN --- */
.footer--new {
    background-color: #fff;
    padding: 20px 0 10px; /* Reducción drástica del relleno */
    text-align: center;
    border-top: none; /* Quitamos la línea superior (borde) */
}

footer .container {
    border-top: none !important;
    padding-top: 0 !important;
}

.footer__top {
    max-width: 600px;
    margin: 0 auto 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer__logo {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 45px;
}

.footer__logo img {
    height: auto;
    max-width: 150px; /* Más pequeño para mayor elegancia */
    display: block;
    margin: 0 auto;
}

.footer__logo .logo {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.footer__slogan {
    font-size: 0.95rem;
    color: #1870B8;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    text-align: center;
}

.footer__separator {
    width: 50px;
    height: 1px;
    background-color: #eee;
    margin: 10px auto;
}

.footer__info p {
    margin: 4px 0;
    color: #333;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer__city {
    font-weight: 600;
}

.footer__phone a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer__phone a:hover {
    color: #1870B8;
}


.footer__bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}


.footer__copyright {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__legal a:hover {
    color: #1870B8;
}

.footer__social-creds {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #1870B8;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.credits a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .footer__bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .footer__copyright {
        flex-direction: column;
        gap: 15px;
    }
    .footer__legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}
