/* === Slider Section Override === */
.slider-section {
    position: relative;
    overflow: hidden;
}

/* Single Slider */
.single-slider {
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Responsivo */
@media (max-width: 991px) {
    .single-slider {
        height: auto;
        flex-direction: column;
        padding: 80px 20px 60px 20px;
    }
}

@media (max-width: 575px) {
    .single-slider {
        padding: 60px 15px 40px 15px;
    }
}

/* Slider Content */
.slider-content,
.slider-content-02 {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 50px;
    /* margem superior */
}

/* Título ajustado */
.slider-content .title,
.slider-content-02 .title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: #313131;
    margin-bottom: 15px;
}

@media (max-width: 991px) {

    .slider-content .title,
    .slider-content-02 .title {
        font-size: 40px;
        text-align: center;
    }
}

@media (max-width: 575px) {

    .slider-content .title,
    .slider-content-02 .title {
        font-size: 28px;
    }
}

/* Parágrafo */
.slider-content p,
.slider-content-02 p {
    font-size: 18px;
    font-weight: 400;
    color: #313131;
    margin-top: 12px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {

    .slider-content p,
    .slider-content-02 p {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 575px) {

    .slider-content p,
    .slider-content-02 p {
        font-size: 14px;
    }
}

/* Botão */
.slider-content .btn,
.slider-content-02 .btn {
    margin-top: 25px;
    max-width: 200px;
    align-self: flex-start;
}

@media (max-width: 991px) {

    .slider-content .btn,
    .slider-content-02 .btn {
        align-self: center;
    }
}

/* Slider Images Responsivas */
.slider-images {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    /* container da imagem */
    margin-top: 50px;
    /* margem superior */
}

.slider-images img {
    width: 100%;
    /* ocupa todo o container */
    height: auto;
    /* mantém proporção */
    max-width: 707px;
    /* limite máximo desktop */
    max-height: 477px;
    /* limite máximo desktop */
    object-fit: contain;
    /* mantém imagem inteira */
    display: block;
    margin: 0 auto;
}

/* Swiper Pagination (Dots) */
.slider-section .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-section .swiper-pagination-bullet {
    background: #000;
    opacity: 0.4;
}

.slider-section .swiper-pagination-bullet-active {
    background: #ff9800;
    opacity: 1;
}

/* Preserve Animation */
.animation-style-01 .slider-images,
.animation-style-01 .slider-content,
.animation-style-01 .slider-content-02 {
    opacity: 0;
}

.animation-style-01.swiper-slide-active .slider-content,
.animation-style-01.swiper-slide-active .slider-content-02 {
    opacity: 1;
}

.animation-style-01.swiper-slide-active .slider-content .title,
.animation-style-01.swiper-slide-active .slider-content-02 .title {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content p,
.animation-style-01.swiper-slide-active .slider-content-02 p {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content .btn,
.animation-style-01.swiper-slide-active .slider-content-02 .btn {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Responsividade final */
@media (max-width: 991px) {
    .slider-images {
        max-width: 100%;
        margin-top: 30px;
    }

    .slider-content,
    .slider-content-02 {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .slider-images {
        margin-top: 20px;
    }

    .slider-content,
    .slider-content-02 {
        margin-top: 20px;
    }
}

/* === Categories Section Override === */
.categories-section {
    margin-top: -55px;
}

.categories-section {
    padding: 100px 0;
    color: #4C4C4C;
    background-color: #fafafa;
}

/* Título */
.categories-title {
    text-align: center;
    margin-bottom: 60px;
}

.categories-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #313131;
    margin-bottom: 10px;
}

.categories-title p {
    font-size: 16px;
    color: #777;
}

/* Grid */
/* GRID */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CARD */
.category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

/* HOVER */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE WRAPPER */
.category-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* IMAGE AUTO ADAPT */
.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TITLE */
.category-title {
    font-size: 17px;
    font-weight: 600;
    color: #313131;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

/* TITLE HOVER */
.category-card:hover .category-title {
    color: #F2A100;
}

/* =========================================================
   RESPONSIVE – CATEGORIES SECTION
   Ordem: Desktop → Tablet → Mobile → Mobile Small
   ========================================================= */


/* <= 1199px | Large devices */
@media (max-width: 1199px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* <= 991px | Tablets */
@media (max-width: 991px) {
    .categories-section {
        padding: 80px 0;
    }

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

/* <= 767px | Mobile */
@media (max-width: 767px) {
    .categories-section {
        margin-top: -25px;
        padding: 70px 0;
    }

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

    .category-image {
        height: 100px;
    }

    .category-title {
        font-size: 15px;
    }
}


/* <= 575px | Mobile small */
@media (max-width: 575px) {
    .categories-section {
        padding: 60px 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-title h2 {
        font-size: 28px;
    }
}


/* =========================================================
   PRODUCT SECTION – OVERRIDE
   ========================================================= */
.section-padding-02 {
    margin-top: -55px;
}

/* Card */
.single-product-02 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

/* Hover */
.single-product-02:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Image wrapper */
/* =========================================================
   PRODUCT IMAGE – FIXED RATIO OVERRIDE
   Força comportamento visual 270x303
   ========================================================= */

/* Wrapper da imagem */
.product-images {
    position: relative;
    width: 100%;
    aspect-ratio: 270 / 303;
    /* proporção exata */
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

/* Imagem */
.product-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* nunca corta, nunca estoura */
    object-position: center;
    max-width: 100%;
    max-height: 100%;
}

/* Content */
.product-content {
    text-align: center;
}

/* Title */
.product-content .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
}

.product-content .title a {
    color: #313131;
    transition: color 0.3s ease;
}

.product-content .title a:hover {
    color: #c7a17a;
}

/* Price */
.price {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #c7a17a;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}



/*== Mode Work  ==*/
.section-padding-03 {
    margin-top: 70px;
}





/*== About ==*/


/* SECTIONS */
.section-about {
    padding: 80px 60px;
    color: #313131;
    background-color: #fafafa;
}

.section-light {
    padding: 80px 60px;
    background: white;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-2 img {
    width: 100%;
    border-radius: 12px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
}

/* DIFERENCIAIS */
.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    font-weight: bold;
}

/* PROCESSO */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.steps div {
    background: #111;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

blockquote {
    background: white;
    padding: 25px;
    border-left: 5px solid #caa45a;
}

blockquote span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}


/* CTA */
.cta {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}


/* IMAGENS – ESTILO MODERNO PREMIUM */

/* IMAGENS DE CONTEÚDO */
.grid-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER MODERNO */
.grid-2 img:hover {
    transform: scale(1.03);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

/* IMAGENS RESPONSIVAS */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 65vh;
        background-attachment: scroll;
    }
}

/* VIDEO ESTILO PREMIUM */
.video video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}



/* =========================================================
   SINGLE BANNER 03 – IMAGE FIX
   ========================================================= */

.single-banner-03 {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
    /* opcional */
}

.single-banner-03 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}


/* Container principal da galeria */
.details-gallery-images {
    width: 100%;
    max-width: 570px;
}

/* Swiper */
.details-gallery-images .swiper-container {
    width: 100%;
    height: 100%;
}

/* Cada slide */
.details-gallery-images .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Wrapper da imagem */
.details-gallery-images .single-img {
    width: 100%;
    height: 604px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f5f5;
}

/* Imagem */
.details-gallery-images .single-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}


.details-gallery-images .zoom {
    overflow: hidden;
    cursor: zoom-in;
}

.details-gallery-images .zoom img {
    transition: transform 0.4s ease;
    transform-origin: center center;
}

.details-gallery-images .zoom:hover img {
    transform: scale(1.2);
}




.details-gallery-images .zoom img {
    transform: none !important;
    transition: none !important;
}

.details-gallery-images .zoom:hover img {
    transform: none !important;
}
