/* ============================================================
   HOME - PERFUMES BARATOS
   ============================================================ */

.home-perfumes {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- HERO ---- */
.home-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 64px 0 56px;
    text-align: center;
    color: #fff;
}

.home-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
    color: #fff;
}

.home-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.home-hero-sub strong {
    color: #fff;
}

/* Hero tags */
.home-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.home-hero-tags span {
    font-size: 12px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.75);
}

/* Hero search */
.home-hero-search {
    max-width: 520px;
    margin: 0 auto;
}

.home-hero-search form {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.home-hero-search input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #333;
}

.home-hero-search input::placeholder {
    color: #999;
}

.home-hero-search button {
    padding: 14px 28px;
    background: #3483fa;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.home-hero-search button:hover {
    background: #2968c8;
}

/* ---- SECTIONS ---- */
.home-section {
    padding: 48px 0;
}

.home-section-alt {
    background: #f8f9fa;
}

.home-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    text-align: center;
}

.home-section-desc {
    font-size: 15px;
    color: #666;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.home-section-desc strong {
    color: #444;
}

/* ---- PRODUCT GRID ---- */
.home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.home-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ---- PRODUCT CARD ---- */
.home-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.home-card-img {
    background: #fafafa;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.home-card-img img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.home-card h3 {
    font-size: 13.5px;
    font-weight: 600;
    color: #333;
    padding: 14px 16px;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.home-card:hover h3 {
    color: #3483fa;
}

/* Ver mas */
.home-ver-mas {
    display: inline-block;
    margin: 8px auto 0;
    padding: 10px 28px;
    background: #1a1a2e;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    text-align: center;
}

.home-section .home-ver-mas {
    display: block;
    width: fit-content;
    margin: 8px auto 0;
}

.home-ver-mas:hover {
    background: #3483fa;
}

/* ---- SEO CONTENT ---- */
.home-seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-seo-block {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.home-section-alt .home-seo-block {
    background: #fff;
}

.home-seo-block h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.home-seo-block p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 10px;
}

.home-seo-block p:last-child {
    margin-bottom: 0;
}

.home-seo-block strong {
    color: #333;
}

/* ---- FAQ ---- */
.home-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.home-faq-list details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.home-faq-list details[open] {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.home-faq-list summary {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    color: #999;
    transition: transform 0.2s;
}

.home-faq-list details[open] summary::after {
    content: "-";
}

.home-faq-list summary:hover {
    background: #f8f9fa;
}

.home-faq-list details p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    padding: 0 20px 16px;
    margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
    .home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 40px 0 36px;
    }

    .home-hero h1 {
        font-size: 26px;
    }

    .home-hero-sub {
        font-size: 15px;
    }

    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-section {
        padding: 32px 0;
    }

    .home-section h2 {
        font-size: 21px;
    }

    .home-seo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-card-img {
        min-height: 140px;
        padding: 16px;
    }

    .home-card-img img {
        max-height: 120px;
    }

    .home-card h3 {
        font-size: 12.5px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .home-hero h1 {
        font-size: 22px;
    }

    .home-hero-tags span {
        font-size: 11px;
    }
}

/* ---- FULL WIDTH HOME ---- */
.home-fullwidth .site-content,
.home-fullwidth .site-content .content-area,
.home-fullwidth .site-content .site-main,
.home-fullwidth .inside-article,
.home-fullwidth .entry-content,
.home-fullwidth .grid-container,
.home-fullwidth .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
}

.home-fullwidth #right-sidebar,
.home-fullwidth .sidebar,
.home-fullwidth .entry-header,
.home-fullwidth .entry-meta,
.home-fullwidth .post-image,
.home-fullwidth .featured-image {
    display: none !important;
}
