.footer-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer-top {
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    border-bottom: 1px solid var(--az-02);
}

/* Columna Marca (Recreación del Logo) */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.logo-circles {
    position: relative;
    width: 38px;
    height: 38px;
}

.circle-out {
    position: absolute;
    top: 0; left: 0;
    width: 26px; height: 26px;
    border: 2px solid var(--text-01);
    border-radius: 50%;
}

.circle-in {
    position: absolute;
    bottom: 0; right: 0;
    width: 20px; height: 20px;
    border: 2px solid var(--tq-01);
    border-radius: 50%;
    background-color: var(--bg-06);
}

.brand-text h2 {
    font-size: 1.4rem;
    color: var(--text-01);
    font-weight: 600;
    line-height: 1.1;
}

.brand-text .slogan {
    font-size: 0.6rem;
    color: var(--tq-01);
    letter-spacing: 1px;
}

.brand-desc {
    font-size: 0.9rem;
    color: var(--text-02);
    line-height: 1.6;
    max-width: 90%;
}

/* Columnas Enlaces */
.footer-heading {
    font-size: 0.95rem;
    color: var(--text-01);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    font-size: 0.9rem;
    color: var(--text-02);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

/* Chevron CSS */
.chevron {
    width: 5px;
    height: 5px;
    border-top: 2px solid var(--tq-04);
    border-right: 2px solid var(--tq-04);
    transform: rotate(45deg);
    transition: border-color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--tq-01);
}

.footer-menu li a:hover .chevron {
    border-color: var(--tq-01);
}

/* Columna Redes Sociales */
.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--tr-dark-55);
}

.social-btn .icon-placeholder {
    border-color: #fff;
    width: 16px;
    height: 16px;
}

/* Colores de marca requeridos para redes */
.fb { background-color: #3b5998; }
.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.yt { background-color: #ff0000; }
.wa { background-color: #25d366; }

.trust-badge {
    border: 1px solid var(--az-01);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-02);
    box-shadow: inset 0 0 10px var(--tr-dark-55);
}

.badge-icon .icon-placeholder {
    width: 26px;
    height: 26px;
    border-color: var(--tq-01);
    border-radius: 4px;
}

.badge-text {
    line-height: 1.3;
}

.badge-title {
    font-size: 0.85rem;
    color: var(--tq-01);
    font-weight: 500;
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--text-03);
}

/* Barra Inferior */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background-color: rgba(3, 20, 31, 0.4);
    font-size: 0.85rem;
    color: var(--text-03);
}

.footer-divider-vert {
    width: 1px;
    height: 15px;
    background-color: var(--az-02);
}

.made-with {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Corazón creado puramente con CSS */
.heart-shape {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid var(--tq-01);
    transform: rotate(45deg);
    margin: 0 4px;
}
