/* CSS Document */

/* =========================
   BLOQUES SEO CATEGORIA
   ========================= */

.seo-content,
.faq-estufas {
    max-width: 980px;
    margin: 40px auto 0;
    padding: 32px 36px;
    background: #fff;
    border: 1px solid #ece7e4;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    color: #3d2d2b;
    line-height: 1.65;
    font-size: 18px;
}

.seo-content {
    border-radius: 10px 10px 0 0;
}

.faq-estufas {
    margin-top: 0;
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.seo-content h2,
.faq-estufas h2 {
    margin: 0 0 22px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: #2e2220;
}

.seo-content h3 {
    margin: 28px 0 10px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    color: #7d2d26;
}

.seo-content p,
.faq-estufas p {
    margin: 0 0 16px;
}

.seo-content ul {
    margin: 0 0 18px 0;
    padding: 0;
    list-style: none;
}

.seo-content li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 22px;
}

.seo-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4473c;
}

.seo-content a,
.faq-estufas a {
    color: #8f2018;
    text-decoration: none;
    font-weight: 600;
}

.seo-content a:hover,
.faq-estufas a:hover {
    text-decoration: underline;
}

.seo-content strong,
.faq-estufas strong {
    color: #2c1d1b;
    font-weight: 700;
}

.seo-content .seo-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #4b3734;
    margin-bottom: 22px;
}

.seo-boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0;
}

.seo-box {
    padding: 18px 18px 16px;
    background: #faf7f5;
    border: 1px solid #eee5e2;
    border-radius: 8px;
}

.seo-box h3 {
    margin-top: 0;
    font-size: 21px;
}

/* =========================
   FAQ ACORDEON
   ========================= */

.faq-estufas .faq-item {
    border-top: 1px solid #ece7e4;
}

.faq-estufas .faq-item:first-of-type {
    border-top: 0;
}

.faq-estufas .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}

.faq-estufas .faq-question:hover {
    opacity: 0.92;
}

.faq-estufas .faq-question-text {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #7d2d26;
}

.faq-estufas .faq-icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 1px solid #e6d8d3;
    border-radius: 50%;
    background: #faf7f5;
}

.faq-estufas .faq-icon:before,
.faq-estufas .faq-icon:after {
    content: "";
    position: absolute;
    background: #8f2018;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-estufas .faq-icon:before {
    width: 12px;
    height: 2px;
}

.faq-estufas .faq-icon:after {
    width: 2px;
    height: 12px;
}

.faq-estufas .faq-item.is-open .faq-icon:after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-estufas .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-estufas .faq-answer-inner {
    padding: 0 0 18px;
}

.faq-estufas .faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .seo-content,
    .faq-estufas {
        max-width: 100%;
        margin: 28px 0 0;
        padding: 26px 22px;
        font-size: 17px;
    }

    .seo-content h2,
    .faq-estufas h2 {
        font-size: 28px;
    }

    .seo-content h3 {
        font-size: 22px;
    }

    .seo-content .seo-lead {
        font-size: 18px;
    }

    .seo-boxes {
        grid-template-columns: 1fr;
    }

    .faq-estufas .faq-question-text {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .seo-content,
    .faq-estufas {
        padding: 22px 16px;
        font-size: 16px;
        line-height: 1.6;
        border-radius: 0;
        box-shadow: none;
    }

    .seo-content {
        margin-top: 22px;
    }

    .seo-content h2,
    .faq-estufas h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .seo-content h3 {
        font-size: 20px;
        margin-top: 24px;
    }

    .seo-content li {
        padding-left: 18px;
    }

    .seo-content li:before {
        top: 10px;
        width: 7px;
        height: 7px;
    }

    .faq-estufas .faq-question {
        padding: 16px 0;
    }

    .faq-estufas .faq-question-text {
        font-size: 18px;
    }

    .faq-estufas .faq-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
}
/* =========================
   HERO CATEGORIA NUEVO
   ========================= */

.cat-hero{
    display:grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap:40px;
    align-items:start;
    margin:24px 0 28px;
}

.cat-hero__media{
    display:flex;
    flex-direction:column;
    gap:16px;
    min-width:0;
}

.cat-hero__image-wrap{
    width:100%;
}

.cat-hero__picture{
    display:block;
    width:100%;
}

.cat-hero__image{
    display:block;
    width:100%;
    height:auto;
    border-radius:12px;
    box-shadow:0 10px 28px rgba(0,0,0,0.10);
    background:#fff;
}

.cat-hero__promos{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.cat-hero__promos img,
.cat-hero__promos picture,
.cat-hero__promos a{
    display:block;
    width:100%;
    height:auto;
}

.cat-hero__content{
    min-width:0;
    max-width:860px;
}

.cat-hero__title{
    margin:0 0 8px;
    font-size:32px;
    line-height:.95;
    font-weight:800;
    color:#4d0907;
    letter-spacing:-1px;
}

.cat-hero__subtitle{
    margin:4px 0 6px;
    font-size:20px;
    line-height:1.35;
    color:#3c1f1d;
    font-weight:700;
}

.cat-hero__intro{
    max-width:700px;
    margin:0 0 22px;
}

.cat-hero__intro p{
    margin:0 0 14px;
    font-size:16px;
    line-height:1.5;
    color:#4b2b29;
}

.cat-hero__intro strong{
    font-weight:800;
    color:#3d0b08;
}

.cat-hero__brand-text{
    margin:12px 0 0;
    font-size:18px;
    line-height:1.55;
    color:#5b3c39;
}

.cat-hero__brand-text p{
    margin:0 0 12px;
}

.cat-hero__filters{
    margin-top:22px;
    max-width:760px;
}

.cat-hero__select-wrap{
    margin-bottom:18px;
}

.cat-hero__label{
    display:block;
    margin:0 0 8px;
    font-size:14px;
    font-weight:700;
    color:#5b2a27;
}

.cat-hero__select{
    width:100%;
    height:56px;
    padding:0 48px 0 16px;
    border:1px solid #ead7d5;
    background:#f3dedd;
    color:#3d2b29;
    font-size:16px;
    border-radius:0;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%233b2726' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat:no-repeat;
    background-position:right 16px center;
    background-size:18px;
}

.cat-hero__select:focus{
    outline:none;
    border-color:#c47e77;
    box-shadow:0 0 0 3px rgba(196,126,119,0.15);
}

.cat-hero__brands{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:12px;
}

.cat-hero__brand-card{
    min-width:0;
}

.cat-hero__brand-link{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:84px;
    padding:10px 12px;
    text-decoration:none;
    border:1px solid #e5dfdc;
    border-radius:10px;
    background:#f8f6f5;
    transition:all .15s ease;
}

.cat-hero__brand-link:hover{
    background:#fff;
    border-color:#d7c7c3;
    box-shadow:0 6px 14px rgba(0,0,0,0.04);
    transform:translateY(-1px);
}

.cat-hero__brand-logo{
    width:100%;
    max-width:135px;
    height:48px;
    object-fit:contain;
    display:block;
    margin:0 auto;
}

.cat-hero__brand-fallback{
    display:none;
    width:100%;
    min-height:48px;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:13px;
    line-height:1.1;
    font-weight:800;
    text-transform:uppercase;
    color:#2c2221;
    padding:0 6px;
}

.cat-hero__brand-fallback.is-visible{
    display:flex;
}

@media (max-width: 1199px){
    .cat-hero{
        grid-template-columns:300px minmax(0,1fr);
        gap:30px;
    }

    .cat-hero__title{
        font-size:42px;
    }

    .cat-hero__content{
        max-width:none;
    }

    .cat-hero__intro,
    .cat-hero__filters{
        max-width:none;
    }
}

@media (max-width: 991px){
    .cat-hero{
        grid-template-columns:1fr;
        gap:22px;
    }

    .cat-hero__media{
        max-width:420px;
    }

    .cat-hero__title{
        font-size:40px;
    }

    .cat-hero__intro p{
        font-size:16px;
    }

    .cat-hero__brands{
        grid-template-columns:repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 640px){
    .cat-hero{
        gap:18px;
    }

    .cat-hero__media{
        max-width:100%;
    }

    .cat-hero__title{
        font-size:34px;
    }

    .cat-hero__intro p{
        font-size:15px;
        line-height:1.45;
    }

    .cat-hero__brands{
        grid-template-columns:repeat(2, minmax(0,1fr));
        gap:10px;
    }

    .cat-hero__brand-link{
        min-height:76px;
        padding:8px 10px;
    }

    .cat-hero__brand-logo{
        max-width:120px;
        height:42px;
    }
}


			.category-highlights{
			display:grid;
			grid-template-columns:repeat(2,1fr);
			gap:10px;
			margin:20px 0 18px;
			}

			.highlight{
			background:#f6f3f2;
			border:1px solid #eadede;
			padding:10px 14px;
			border-radius:8px;
			font-size:14px;
			line-height:1.4;
			}

			@media (max-width:768px){

			.category-highlights{
			grid-template-columns:1fr;
			}

			}		

		.category-trust{
		margin:30px 0;
		padding:22px 26px;
		background:#faf7f6;
		border:1px solid #eadede;
		border-radius:10px;
		}

		.category-trust h3{
		margin:0 0 12px;
		font-size:22px;
		font-weight:700;
		color:#4d0907;
		}

		.category-trust p{
		margin:0 0 14px;
		font-size:16px;
		line-height:1.55;
		color:#4a3a38;
		}

		.category-benefits{
		margin:0;
		padding-left:18px;
		}

		.category-benefits li{
		margin-bottom:6px;
		font-size:15px;
		line-height:1.45;
		}			
.cat-hero--brand {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: start;
}

.cat-hero--brand .cat-hero__media {
    display: block;
}

.cat-hero--brand .cat-hero__content {
    display: block;
}

.cat-hero--brand .cat-hero__image-wrap {
    margin-bottom: 0;
}

.cat-hero--brand .category-trust--brand {
    margin-top: 24px;
}

.cat-hero--brand .category-highlights {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .cat-hero--brand {
        grid-template-columns: 1fr;
    }
}

.cat-hero__more-brands {
    margin-top: 14px;
    text-align: center;
}

.cat-hero__more-brands-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #e6dbcf;
    border-radius: 999px;
    background: #fff;
    color: #4a1712;
    text-decoration: none;
    font-weight: 600;
    transition: all .18s ease;
}

.cat-hero__more-brands-link:hover {
    border-color: #c9b7a2;
    background: #fffaf5;
    text-decoration: none;
    transform: translateY(-1px);
}
