/* ============================================
   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%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}
.promo-img-slide:hover {
    transform: scale(1.02);
}
.promo-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f5f0eb;
    display: block;
    border-radius: 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; }
}


/* Carousel responsive */
@media (max-width: 768px) {
    .promo-carousel-section {
        padding: 12px 0 10px;
    }
    .promo-img-carousel-wrap {
        gap: 0;
    }
    .promo-img-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
        position: absolute;
        z-index: 10;
    }
    .promo-img-arrow:first-child {
        left: 8px;
    }
    .promo-img-arrow:last-child {
        right: 8px;
    }
    .promo-img-slide {
        aspect-ratio: 16 / 9;
        border-radius: 8px;
    }
    .promo-img-slide img {
        border-radius: 8px;
    }
    .promo-img-carousel {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .promo-carousel-section {
        padding: 8px 0;
    }
    .promo-img-arrow {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Blog Index */
.blog-index {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
}
.blog-index h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
}
.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.blog-index-item {
    display: flex;
    flex-direction: column;
    padding: 14px 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.blog-index-item:hover {
    border-color: #F47B20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244,123,32,0.15);
}
.blog-index-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #F47B20;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.blog-index-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .blog-index-grid {
        grid-template-columns: 1fr;
    }
    .blog-index {
        padding: 20px 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-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; }
}
