/* ============================================
   PET LAND - Landing Page + Blog
   Colores: Naranja #FF6B00, Negro #1A1A1A
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1A1A1A;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-whatsapp-header {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp-header:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-tienda {
    background: #FF6B00;
    color: #fff;
}
.btn-tienda:hover { background: #e65f00; transform: translateY(-1px); }
.btn-banner {
    background: #1A1A1A;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
}
.btn-banner:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.btn-outline {
    background: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
    padding: 12px 32px;
    font-size: 15px;
}
.btn-outline:hover { background: #FF6B00; color: #fff; }

/* ===== HEADER ===== */
.header {
    background: #1A1A1A;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-img {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    object-fit: contain;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-title {
    font-size: 36px;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1.1;
}
.logo-sub {
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.header-nav {
    display: flex;
    gap: 8px;
}
.nav-link {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(255,107,0,0.15);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== PROMO IMAGE CAROUSEL ===== */
.promo-carousel-section {
    background: #1A1A1A;
    padding: 20px 0 16px;
    overflow: hidden;
}
.promo-img-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.promo-img-carousel {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
}
.promo-img-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}
.promo-img-slide {
    flex-shrink: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    background: #fff;
    aspect-ratio: 21 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-img-slide:hover {
    transform: scale(1.02);
}
.promo-img-slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    padding: 20px;
}
@media (max-width: 768px) {
    .promo-img-slide { aspect-ratio: 4 / 3; }
    .promo-img-slide img { padding: 12px; }
}
.promo-img-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #FF6B00;
    background: rgba(0,0,0,0.6);
    color: #FF6B00;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    z-index: 2;
}
.promo-img-arrow:hover {
    background: #FF6B00;
    color: #fff;
}
.promo-note {
    color: #888;
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 8px;
}
.section-header p {
    font-size: 16px;
    color: #666;
}

/* ===== CATEGORIAS ===== */
.categorias-section {
    padding: 72px 0 60px;
    background: #fafafa;
}
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    justify-items: center;
}
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: transform 0.3s ease;
}
.cat-item:hover { transform: translateY(-8px); }
.cat-icon-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid #d4c4b0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 0;
}
.cat-item:hover .cat-icon-wrap {
    border-color: #FF6B00;
    box-shadow: 0 8px 30px rgba(255,107,0,0.2);
    transform: scale(1.08);
}
.cat-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.cat-item:hover .cat-icon-wrap img { transform: scale(1.1); }
.cat-label {
    font-size: 16px;
    font-weight: 700;
    color: #FF6B00;
    line-height: 1.3;
}

/* ===== BANNER TIENDA ===== */
.banner-tienda {
    background: linear-gradient(135deg, #FF6B00 0%, #ff8c42 50%, #FF6B00 100%);
    padding: 80px 0;
    text-align: center;
}
.banner-content h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.banner-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ===== ENVIOS ===== */
.envios-section {
    padding: 72px 0;
    background: #fff;
}
.envios-single {
    max-width: 800px;
    margin: 0 auto;
}
.envio-card-full {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.envio-card-full:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: #FF6B00;
}
.envio-img-wrap {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}
.envio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.envio-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 16px;
}
.envio-conditions {
    list-style: none;
    padding: 0;
}
.envio-conditions li {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    padding-left: 20px;
    position: relative;
}
.envio-conditions li:last-child { border-bottom: none; }
.envio-conditions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B00;
    font-weight: 700;
}

@media (max-width: 768px) {
    .envio-card-full { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; }
    .envio-img-wrap { width: 120px; height: 120px; }
}

/* ===== SUCURSALES ===== */
.sucursales-section {
    padding: 72px 0;
    background: #fafafa;
}
.sucursales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sucursal-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}
.sucursal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: #FF6B00;
}
.sucursal-icon { font-size: 36px; margin-bottom: 12px; }
.sucursal-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 6px;
}
.sucursal-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}
.sucursal-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.sucursal-link {
    color: #FF6B00;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}
.sucursal-link:hover { color: #e65f00; }

.sucursal-logo-round {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #FF6B00;
    overflow: hidden;
    margin: 0 auto 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.sucursal-logo-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.sucursal-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}
.sucursal-wa {
    background: #25D366;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}
.sucursal-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

.urgencias-card {
    margin-top: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
}
.urgencias-icon { font-size: 40px; margin-bottom: 8px; }
.urgencias-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.urgencias-card p { font-size: 14px; opacity: 0.9; margin-bottom: 16px; }
.btn-urgencias {
    background: #fff;
    color: #cc0000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-urgencias:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn-urgencias svg { fill: #25D366; }

/* ===== BLOG PREVIEW ===== */
.blog-section {
    padding: 72px 0;
    background: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.blog-img {
    height: 180px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-body { padding: 20px; }
.blog-tag {
    display: inline-block;
    background: #fff3e6;
    color: #FF6B00;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}
.blog-read {
    font-size: 13px;
    font-weight: 600;
    color: #FF6B00;
}
.blog-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-carousel {
    overflow: hidden;
    flex: 1;
}
.blog-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}
.blog-slide {
    flex-shrink: 0;
    width: calc(33.333% - 14px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.blog-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.blog-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-slide-body {
    padding: 16px;
}
.blog-slide-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #FF6B00;
    background: #fff;
    color: #FF6B00;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.blog-arrow:hover {
    background: #FF6B00;
    color: #fff;
}
.blog-cta {
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .blog-slide { width: calc(100% - 0px); }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-slide { width: calc(50% - 10px); }
}

/* ===== FOOTER ===== */
.footer {
    background: #1A1A1A;
    color: #ccc;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 16px;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
}
.footer-col h4 {
    color: #FF6B00;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col a {
    display: block;
    color: #999;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: #FF6B00; }
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: #666;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: wpPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
@keyframes wpPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
    background: #1A1A1A;
    padding: 48px 0;
    text-align: center;
}
.blog-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.blog-hero p {
    font-size: 16px;
    color: #aaa;
}
.blog-page-content {
    padding: 60px 0;
}
.blog-articles {
    max-width: 800px;
    margin: 0 auto;
}
.blog-article {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}
.blog-article:last-child { border-bottom: none; }
.blog-article-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    height: 350px;
}
.blog-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-article-tag {
    display: inline-block;
    background: #fff3e6;
    color: #FF6B00;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-article h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.3;
}
.blog-article p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}
.blog-article h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 28px 0 12px;
}
.blog-article ul {
    margin: 12px 0 16px 24px;
    color: #444;
    line-height: 2;
    font-size: 16px;
}
.blog-article .blog-cta-inline {
    background: #fff3e6;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    text-align: center;
}
.blog-article .blog-cta-inline p {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .categorias-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .sucursales-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1A1A1A;
        padding: 16px 20px;
        border-top: 1px solid #333;
        z-index: 999;
    }
    .mobile-toggle { display: flex; }
    .btn-whatsapp-header { display: none; }
    .btn-tienda { padding: 8px 16px; font-size: 13px; }
    .logo-title { font-size: 18px; }
    .logo-img { width: 40px; height: 40px; }

    .categorias-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .cat-icon-wrap { width: 85px; height: 85px; }
    .cat-icon-wrap img { width: 50px; height: 50px; }
    .cat-label { font-size: 12px; }

    .envios-grid { grid-template-columns: 1fr; gap: 16px; }
    .sucursales-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .banner-content h2 { font-size: 28px; }
    .banner-content p { font-size: 15px; }
    .section-header h2 { font-size: 26px; }

    .banner-tienda { padding: 50px 0; }
    .categorias-section, .envios-section, .sucursales-section, .blog-section { padding: 50px 0; }

    .blog-article-img { height: 220px; }
    .blog-article h2 { font-size: 22px; }
    .blog-hero h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .categorias-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .cat-icon-wrap { width: 72px; height: 72px; }
    .cat-icon-wrap img { width: 42px; height: 42px; }
    .promo-item { min-width: 170px; padding: 12px 16px; }
    .header-inner { padding: 10px 16px; }
}

/* ============================================
   PETAPP SECTION & PAGE
   ============================================ */

/* Nav link PetApp highlight */
.nav-link-petapp {
    background: #FF6B00;
    color: #fff !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
}
.nav-link-petapp:hover { background: #e65f00; }

/* PetApp Banner on index */
.petapp-section { padding: 60px 0; }
.petapp-banner-big {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #1A1A1A;
    border: 2px solid #eee;
}
.petapp-banner-logo { height: 120px; margin: 0 auto 1.5rem; }
.petapp-banner-big h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem; color: #FF6B00; }
.petapp-banner-big p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 1.5rem; color: #1A1A1A; }
.petapp-banner-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}
.petapp-banner-features span {
    background: #FFF3E8;
    color: #FF6B00;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}
.petapp-banner-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-petapp-primary {
    background: #fff;
    color: #FF6B00;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
}
.btn-petapp-primary:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-petapp-secondary {
    background: transparent;
    color: #1A1A1A;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid #1A1A1A;
}
.btn-petapp-secondary:hover { border-color: #FF6B00; color: #FF6B00; transform: translateY(-2px); }

/* PetApp Hero (petapp.html) */
.petapp-hero {
    background: #fff;
    padding: 80px 0 60px;
    text-align: center;
    color: #1A1A1A;
}
.petapp-hero-circle {
    margin: 0 auto 2rem;
    text-align: center;
}
.petapp-hero-logo {
    height: 280px;
    width: auto;
    margin: 0 auto;
    display: block;
}
.petapp-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; color: #FF6B00; }
.petapp-hero-sub { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; color: #1A1A1A; }
.btn-petapp-hero {
    background: #FF6B00;
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
}
.btn-petapp-hero:hover { background: #e65f00; transform: translateY(-2px); }

/* Features Grid */
.petapp-features { padding: 60px 0; background: #f8f9fa; }
.petapp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
}
.petapp-feat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.petapp-feat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.petapp-feat-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.petapp-feat-icon img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto; border-radius: 50%; }
.petapp-feat-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.petapp-feat-card p { font-size: 0.9rem; color: #6c757d; line-height: 1.5; }

/* Planes Grid */
.petapp-planes { padding: 60px 0; }
.petapp-planes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.petapp-plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.petapp-plan-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.petapp-plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1A1A1A;
    margin: 0.75rem 0;
}
.petapp-plan-price span { font-size: 1rem; font-weight: 400; color: #6c757d; }
.petapp-plan-list { list-style: none; margin: 1.25rem 0; }
.petapp-plan-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.petapp-plan-list li::before {
    content: '\2713';
    color: #FF6B00;
    font-weight: 700;
    flex-shrink: 0;
}
.petapp-plan-list li.disabled::before { content: '\2717'; color: #adb5bd; }
.petapp-plan-list li.disabled { color: #adb5bd; text-decoration: line-through; }
.petapp-plan-premium {
    border-color: #FF6B00;
    position: relative;
}
.petapp-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B00;
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.btn-petapp-free {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #f8f9fa;
    color: #1A1A1A;
    border: 2px solid #dee2e6;
    margin-top: 1rem;
}
.btn-petapp-free:hover { background: #e9ecef; }
.btn-petapp-premium {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #FF6B00;
    color: #fff;
    margin-top: 1rem;
}
.btn-petapp-premium:hover { background: #e65f00; }
.petapp-plan-note { text-align: center; color: #6c757d; font-size: 0.85rem; margin-top: 0.5rem; }

/* Marcas */
.petapp-marcas {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.petapp-marcas h3 { margin-bottom: 0.5rem; }
.petapp-marcas p { font-size: 1.1rem; }
.petapp-marcas-sub { font-weight: 700; color: #FF6B00; margin-top: 0.25rem; }

/* Ebook */
.petapp-ebook { padding: 60px 0; background: #f8f9fa; }
.petapp-ebook-card {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    max-width: 700px;
    margin: 0 auto;
}
.petapp-ebook-icon { font-size: 3rem; margin-bottom: 1rem; }
.petapp-ebook-card h2 { margin-bottom: 0.75rem; }
.petapp-ebook-card p { color: #6c757d; margin-bottom: 1.5rem; }
.btn-petapp-ebook {
    background: #FF6B00;
    color: #fff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-petapp-ebook:hover { background: #e65f00; transform: translateY(-2px); }

/* Download / Steps */
.petapp-download { padding: 60px 0; }
.petapp-download-card {
    text-align: center;
    background: #1A1A1A;
    color: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.petapp-download-card h2 { color: #FF6B00; margin-bottom: 0.75rem; }
.petapp-download-card > p { opacity: 0.9; margin-bottom: 2rem; }
.petapp-download-steps { text-align: left; }
.petapp-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.5rem;
}
.petapp-step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #FF6B00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}
.petapp-step strong { font-size: 1.05rem; }
.petapp-step p { font-size: 0.9rem; opacity: 0.8; margin-top: 0.2rem; }

/* Responsive PetApp */
@media (max-width: 768px) {
    .petapp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .petapp-planes-grid { grid-template-columns: 1fr; }
    .petapp-hero h1 { font-size: 1.8rem; }
    .petapp-hero-circle { width: 260px; height: 260px; padding: 1.5rem; }
    .petapp-hero-logo { height: 120px; }
    .petapp-banner-big h2 { font-size: 1.8rem; }
    .petapp-banner-logo { height: 80px; }
}
@media (max-width: 480px) {
    .petapp-features-grid { grid-template-columns: 1fr; }
    .petapp-hero { padding: 50px 0 40px; }
    .petapp-hero h1 { font-size: 1.5rem; }
    .petapp-hero-circle { width: 220px; height: 220px; padding: 1.25rem; }
    .petapp-hero-logo { height: 90px; }
    .petapp-hero-slogan { font-size: 0.9rem; }
    .petapp-banner-big { padding: 2rem 1.25rem; }
}

/* ============================================
   MODERNIZACION 2026 - Hero, Beneficios,
   Marcas, Destacados, Floating CTA
   ============================================ */

/* ===== HERO ===== */
.hero-section {
    background: radial-gradient(circle at 80% 0%, rgba(255,107,0,0.18), transparent 55%),
                radial-gradient(circle at 0% 100%, rgba(255,140,66,0.12), transparent 50%),
                #0f0f0f;
    color: #fff;
    padding: 70px 0 80px;
    overflow: hidden;
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,107,0,0.15);
    color: #FFB070;
    border: 1px solid rgba(255,107,0,0.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-accent {
    background: linear-gradient(135deg, #FF6B00 0%, #ffa15c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 18px;
    color: #cfcfcf;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-hero-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #ff8c42 100%);
    color: #fff;
    padding: 16px 34px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255,107,0,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255,107,0,0.55);
}
.btn-hero-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,107,0,0.5);
}
.hero-trust {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust div {
    display: flex;
    flex-direction: column;
}
.hero-trust strong {
    font-size: 24px;
    font-weight: 800;
    color: #FF6B00;
}
.hero-trust span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    min-height: 420px;
}
.hero-brand-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}
.hero-brand-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.4);
    padding: 16px 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 1 / 1;
}
.hero-brand-card:nth-child(1) { transform: rotate(-3deg); }
.hero-brand-card:nth-child(2) { transform: rotate(2deg); }
.hero-brand-card:nth-child(3) { transform: rotate(2deg); }
.hero-brand-card:nth-child(4) { transform: rotate(-3deg); }
.hero-brand-card:hover {
    transform: rotate(0deg) translateY(-6px) scale(1.04);
    box-shadow: 0 20px 50px rgba(255,107,0,0.35);
}
.hero-brand-card img {
    width: 100%;
    height: 78%;
    object-fit: contain;
}
.hero-brand-card span {
    font-size: 13px;
    font-weight: 800;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-floating-tag {
    position: absolute;
    background: #fff;
    color: #1A1A1A;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 4;
    animation: floatY 3s ease-in-out infinite;
}
.tag-1 {
    top: 15%;
    right: -10px;
    color: #FF6B00;
}
.tag-2 {
    bottom: 8%;
    left: 30%;
    background: #1A1A1A;
    color: #FF6B00;
    border: 2px solid #FF6B00;
    animation-delay: 1.5s;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== STRIP DE BENEFICIOS ===== */
.benefits-strip {
    background: #fafafa;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
}
.benefit-item:hover {
    border-color: #FF6B00;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255,107,0,0.15);
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8c42 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.benefit-item:hover .benefit-icon { transform: scale(1.08) rotate(-4deg); }
.benefit-icon svg {
    width: 24px;
    height: 24px;
}
.benefit-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
}
.benefit-item span {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 3px;
    line-height: 1.35;
}

/* ===== MARCAS ===== */
.marcas-section {
    background: #fafafa;
    padding: 50px 0 40px;
    border-top: 1px solid #f0f0f0;
}
.marcas-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}
.marcas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.marca-pill {
    background: #fff;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: default;
}
.marca-pill:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.15);
}

/* ===== DESTACADOS ===== */
.destacados-section {
    padding: 80px 0 70px;
    background: #fff;
}
.destacados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.destacado-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}
.destacado-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: #FF6B00;
}
.destacado-img {
    height: 200px;
    overflow: hidden;
    background: #fafafa;
}
.destacado-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.destacado-card:hover .destacado-img img { transform: scale(1.06); }
.destacado-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.destacado-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8c42 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}
.destacado-body h3 {
    font-size: 19px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 6px;
}
.destacado-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}
.destacado-cta {
    color: #FF6B00;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s;
}
.destacado-card:hover .destacado-cta { transform: translateX(4px); }
.destacados-cta-wrap {
    text-align: center;
    margin-top: 16px;
}
.btn-tienda-big {
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 28px rgba(255,107,0,0.35);
}
.btn-tienda-big:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255,107,0,0.5);
}

/* ===== SHOP FLOATING ===== */
.shop-float {
    position: fixed;
    bottom: 24px;
    right: 100px;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8c42 100%);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 6px 22px rgba(255,107,0,0.45);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    animation: shopPulse 2.5s infinite;
}
.shop-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,107,0,0.6);
}
.shop-float-icon { font-size: 18px; }
@keyframes shopPulse {
    0%, 100% { box-shadow: 0 6px 22px rgba(255,107,0,0.45); }
    50% { box-shadow: 0 6px 32px rgba(255,107,0,0.75); }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: reveal-fallback 0.8s 1.2s forwards;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}
@keyframes reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE MODERNIZACION ===== */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 42px; }
    .destacados-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-section { padding: 50px 0 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 36px; }
    .hero-text p { font-size: 16px; }
    .hero-trust { gap: 20px; flex-wrap: wrap; }
    .hero-trust strong { font-size: 20px; }
    .hero-visual { height: 320px; }
    .hero-card-1 { width: 70%; height: 78%; }
    .hero-floating-tag { font-size: 11px; padding: 8px 14px; }
    .benefit-item { padding: 8px 4px; }
    .benefit-item strong { font-size: 13px; }
    .benefit-item span { font-size: 11px; }
    .benefit-icon { width: 44px; height: 44px; font-size: 24px; }
    .marca-pill { font-size: 13px; padding: 9px 18px; }
    .destacados-section { padding: 60px 0 50px; }
    .shop-float { right: 90px; padding: 12px 18px; font-size: 14px; }
    .shop-float-text { display: none; }
    .shop-float { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
}
@media (max-width: 480px) {
    .hero-text h1 { font-size: 30px; }
    .destacados-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================
   ENVIOS - Announcement bar + Modal + Highlight cards
   ============================================ */

/* --- Announcement bar (rotating) --- */
.announce-bar {
    position: relative;
    background: linear-gradient(90deg, #FF6B00 0%, #FF8533 100%);
    color: #fff;
    padding: 10px 44px 10px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06) inset;
    z-index: 60;
    overflow: hidden;
}
.announce-bar.hidden { display: none; }
.announce-track {
    position: relative;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announce-msg {
    position: absolute;
    left: 0; right: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}
.announce-msg.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.announce-msg strong { font-weight: 700; }
.announce-close {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    border: 0;
    color: #fff;
    width: 26px; height: 26px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.announce-close:hover { background: rgba(255,255,255,0.32); }
@media (max-width: 600px) {
    .announce-bar { font-size: 12.5px; padding: 9px 38px 9px 14px; }
}

/* --- Highlight cards in #envios section --- */
.envio-highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 22px;
}
.envio-hl-card {
    background: #FFF6EE;
    border: 1px solid #FFD9BD;
    border-radius: 14px;
    padding: 18px 16px;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.envio-hl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255,107,0,0.18);
    border-color: #FF6B00;
}
.envio-hl-icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF6B00;
    color: #fff;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 10px;
}
.envio-hl-card h4 {
    font-size: 16px;
    margin: 0 0 6px;
    color: #1A1A1A;
    font-weight: 700;
}
.envio-hl-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) {
    .envio-highlight-cards { grid-template-columns: 1fr; }
}

/* --- Modal envios --- */
.envios-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.envios-modal.open { display: flex; }
.envios-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(2px);
    animation: enviosFade .25s ease;
}
.envios-modal-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 36px 32px 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    animation: enviosPop .35s cubic-bezier(.2,.9,.3,1.2);
    border-top: 6px solid #FF6B00;
}
@keyframes enviosFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes enviosPop {
    from { opacity: 0; transform: translateY(12px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.envios-modal-close {
    position: absolute;
    top: 12px; right: 14px;
    background: #F4F4F4;
    border: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #555;
    transition: background .2s ease, color .2s ease;
}
.envios-modal-close:hover { background: #FF6B00; color: #fff; }
.envios-modal-header { text-align: center; margin-bottom: 22px; }
.envios-modal-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 8px;
}
.envios-modal-header h3 {
    font-size: 26px;
    line-height: 1.25;
    color: #1A1A1A;
    margin: 0 0 8px;
    font-weight: 800;
}
.envios-modal-header p {
    color: #555;
    font-size: 15px;
    margin: 0;
}
.envios-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.envios-modal-item {
    background: #FFF6EE;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    border: 1px solid #FFE2C9;
}
.envios-modal-icon {
    width: 48px; height: 48px;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF6B00;
    color: #fff;
    border-radius: 14px;
    font-size: 24px;
}
.envios-modal-item h4 {
    font-size: 15px;
    margin: 0 0 6px;
    color: #1A1A1A;
    font-weight: 700;
}
.envios-modal-item p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}
.envios-modal-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.envios-modal-link {
    background: transparent;
    border: 0;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.envios-modal-link:hover { color: #FF6B00; }
@media (max-width: 640px) {
    .envios-modal-card { padding: 30px 20px 22px; border-radius: 16px; }
    .envios-modal-header h3 { font-size: 21px; }
    .envios-modal-grid { grid-template-columns: 1fr; }
}
