﻿.publica-ciudadana-section {
    min-height: 800px;
    display: flex;
    align-items: center;
}
.tip-section {
    padding: 60px 8%;
    background: #f5f7fa;
}

.tip-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    padding-bottom:30px;
}

/* Columna izquierda */
.tip-content h2 {
    font-size: 28px;
    color: #192854;
    margin-bottom: 20px;
}

.tip-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

/* Columna derecha */
.tip-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 14px;
    text-decoration: none;
    border-left: 6px solid #bbd000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .tip-card h4 {
        margin: 0;
        font-size: 18px;
        color: #192854;
    }

    .tip-card span {
        font-size: 14px;
        color: #666;
    }

    .tip-card .arrow {
        font-size: 20px;
        color: #192854;
        transition: transform 0.3s ease;
    }

    .tip-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

        .tip-card:hover .arrow {
            transform: translateX(5px);
        }

/* Responsive */
@media (max-width: 992px) {
    .tip-container {
        grid-template-columns: 1fr;
    }
}
/* CONTENEDOR */
.tip-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* TARJETA */
.tip-card-pro {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 25px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #192854 0%, #223a7a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

    /* Variante secundaria */
    .tip-card-pro.secondary {
        background: linear-gradient(135deg, #1f6f5e 0%, #2d9c84 100%);
    }

/* Ícono circular */
.tip-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    backdrop-filter: blur(4px);
}

/* Texto */
.tip-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.tip-info span {
    font-size: 14px;
    opacity: 0.85;
}

/* Flecha */
.tip-arrow {
    margin-left: auto;
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* Hover elegante */
.tip-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

    .tip-card-pro:hover .tip-arrow {
        transform: translateX(6px);
    }

/* Efecto brillo sutil */
.tip-card-pro::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 60%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tip-card-pro:hover::after {
    opacity: 1;
}