@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

/* ================= CONFIGURACIÓN GLOBAL ================= */
* {
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    margin: 0;
    background: #fff;
    padding-top: 70px; /* ajuste para navbar fijo */
}

::selection {
    background-color: #c3e8dc;
}

/* ================= BOTÓN NAV ================= */
.btnperfil {
    color: #86bca4;
    border: 2px solid #86bca4;
    border-radius: 50px;
    padding: 6px 20px;
    transition: all 0.3s ease;
    margin-left: 12px;
    text-decoration: none;
    display: inline-block;
}

.btnperfil:hover {
    background-color: #86bca4;
    color: #fff;
    text-decoration: none;
}

/* ================= CONTENEDOR PRINCIPAL ================= */
.blog-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;

    display: flex;
    flex-direction: column; /* 🔥 texto arriba, imagen abajo */

    gap: 30px;
}

/* ================= TEXTO ================= */
.blog-text {
    width: 100%;
}

.blog-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2e2a29;
}

.blog-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

/* ================= IMAGEN ================= */
.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* ================= FOOTER ================= */
.footer-vet {
    background: #cde8e0;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    width: 190px;
    margin-bottom: 12px;
}

.footer-brand h4 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #2c3e50;
}

.footer-brand p {
    font-size: 14px;
    color: #4a4a4a;
}

.footer-links h5,
.footer-contact h5 {
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4fae96;
    padding-left: 6px;
}

.contact-box {
    background: #e9f7f7;
    padding: 18px;
    border-radius: 12px;
}

.contact-box p {
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
    .blog-container {
        padding: 25px;
        gap: 25px;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .blog-container {
        margin: 20px auto;
        padding: 20px;
    }

    .blog-image img {
        display: none !important;
    }

    .blog-text h1 {
        font-size: 24px;
    }

    .blog-text p {
        font-size: 16px;
    }

    .footer {
        padding: 50px 20px 30px;
        background-color: #d9f2eb;
    }

    .footer-contenido {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand img {
        width: 160px;
    }
}