* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: #fff;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.btn-whatsapp {
    background: #ff9800;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
}

.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
        url('https://images.unsplash.com/photo-1517849845537-4d257902454a?q=80&w=2070');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    color: white;
}

.hero h1 {
    font-size: 70px;
    max-width: 700px;
}

.hero p {
    margin-top: 20px;
    font-size: 22px;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #ff9800;
    color: white;
}

.btn-secondary {
    background: #1f2fa3;
    color: white;
}

.services,
.products,
.testimonials,
.contact {
    padding: 100px 0;
}

.services h2,
.products h2,
.testimonials h2,
.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 45px;
}

.services-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card,
.product-card,
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.service-card:hover,
.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer {
    background: #1f2fa3;
    color: white;
    text-align: center;
    padding: 50px 0;
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 45px;
    }

    nav {
        display: none;
    }
}

/************************************************** inicio profesionales ********************************************/
/************************************************** inicio profesionales ********************************************/
/************************************************** inicio profesionales ********************************************/
/************************************************** inicio profesionales ********************************************/
/************************************************** inicio profesionales ********************************************/
/************************************************** inicio profesionales ********************************************/

.professionals-list {

    padding: 180px 0 100px;

    background: #f7f7f7;
}

.professionals-list-container {

    display: flex;

    flex-direction: column;

    gap: 60px;
}

.professional-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    background: white;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.professional-row.reverse .professional-image {

    order: 2;
}

.professional-row.reverse .professional-content {

    order: 1;
}

.professional-image {

    height: 500px;
}

.professional-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.professional-content {

    padding: 60px;
}

.professional-content span {

    background: #ff9800;

    color: white;

    padding: 10px 22px;

    border-radius: 50px;

    font-weight: bold;

    display: inline-block;

    margin-bottom: 25px;
}

.professional-content h2 {

    font-size: 55px;

    color: #1f2fa3;

    margin-bottom: 25px;
}

.professional-content p {

    font-size: 20px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 35px;
}

.professional-btn {

    display: inline-block;

    background: #1f2fa3;

    color: white;

    text-decoration: none;

    padding: 16px 35px;

    border-radius: 50px;

    transition: .3s;

    font-weight: bold;
}

.professional-btn:hover {

    background: #ff9800;

    transform: translateY(-5px);
}

@media(max-width:992px) {

    .professional-row {

        grid-template-columns: 1fr;
    }

    .professional-row.reverse .professional-image,
    .professional-row.reverse .professional-content {

        order: initial;
    }

    .professional-content {

        padding: 40px;
    }

    .professional-content h2 {

        font-size: 40px;
    }

    .professional-image {

        height: 350px;
    }
}

/************************************************** fin profesionales ********************************************/
/************************************************** fin profesionales ********************************************/
/************************************************** fin profesionales ********************************************/
/************************************************** fin profesionales ********************************************/
/************************************************** fin profesionales ********************************************/
/************************************************** fin profesionales ********************************************/

/************************************************** inicio testimonios ********************************************/
/************************************************** inicio testimonios ********************************************/
/************************************************** inicio testimonios ********************************************/
/************************************************** inicio testimonios ********************************************/
/************************************************** inicio testimonios ********************************************/
/************************************************** inicio testimonios ********************************************/

.testimonials-page {

    padding: 180px 0 100px;

    background: #f7f7f7;
}

.testimonials-container {

    display: flex;

    flex-direction: column;

    gap: 60px;
}

.testimonial-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    background: white;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.testimonial-row.reverse .testimonial-image {

    order: 2;
}

.testimonial-row.reverse .testimonial-content {

    order: 1;
}

.testimonial-image {

    height: 500px;
}

.testimonial-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.testimonial-content {

    padding: 60px;
}

.testimonial-content span {

    background: #ff9800;

    color: white;

    padding: 10px 22px;

    border-radius: 50px;

    font-weight: bold;

    display: inline-block;

    margin-bottom: 25px;
}

.testimonial-content h2 {

    font-size: 50px;

    color: #1f2fa3;

    margin-bottom: 25px;
}

.testimonial-text {

    font-size: 20px;

    line-height: 1.9;

    color: #666;

    position: relative;
}

.testimonial-text::before {

    content: '“';

    position: absolute;

    left: -20px;

    top: -50px;

    font-size: 120px;

    color: #ff9800;

    opacity: .15;
}

@media(max-width:992px) {

    .testimonial-row {

        grid-template-columns: 1fr;
    }

    .testimonial-row.reverse .testimonial-image,
    .testimonial-row.reverse .testimonial-content {

        order: initial;
    }

    .testimonial-image {

        height: 350px;
    }

    .testimonial-content {

        padding: 40px;
    }

    .testimonial-content h2 {

        font-size: 36px;
    }
}


/************************************************** fin testimonios ********************************************/
/************************************************** fin testimonios ********************************************/
/************************************************** fin testimonios ********************************************/
/************************************************** fin testimonios ********************************************/
/************************************************** fin testimonios ********************************************/


/************************************************** inicio servicios ********************************************/
/************************************************** inicio servicios ********************************************/
/************************************************** inicio servicios ********************************************/
/************************************************** inicio servicios ********************************************/
/************************************************** inicio servicios ********************************************/
.services-page {

    padding: 180px 0 120px;

    background: #f7f7f7;
}

.container {

    width: 90%;

    max-width: 1200px;

    margin: auto;
}

/* TITULO */

.section-title {

    text-align: center;

    margin-bottom: 80px;
}

.section-title span {

    background: #ff9800;

    color: white;

    padding: 12px 25px;

    border-radius: 50px;

    display: inline-block;

    font-weight: bold;

    margin-bottom: 25px;

    letter-spacing: 1px;
}

.section-title h1 {

    font-size: 65px;

    color: #1f2fa3;

    margin-bottom: 25px;

    line-height: 1.1;
}

.section-title p {

    font-size: 22px;

    color: #666;

    max-width: 850px;

    margin: auto;

    line-height: 1.8;
}

/* WRAPPER */

.services-wrapper {

    display: flex;

    flex-direction: column;

    gap: 45px;
}

/* CARD */

.service-row {

    position: relative;

    background: white;

    border-radius: 35px;

    overflow: hidden;

    transition: .4s;

    box-shadow: 0 15px 45px rgba(0,0,0,.08);

    border: 1px solid rgba(0,0,0,.04);
}

.service-row::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 8px;

    height: 100%;

    background: linear-gradient(
        to bottom,
        #ff9800,
        #ffb74d
    );
}

.service-row:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* CONTENT */

.service-content.full {

    padding: 70px;
}

.service-content span {

    background: rgba(255,152,0,.12);

    color: #ff9800;

    padding: 12px 24px;

    border-radius: 50px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: bold;

    margin-bottom: 30px;

    font-size: 15px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.service-content h2 {

    font-size: 55px;

    color: #1f2fa3;

    margin-bottom: 30px;

    line-height: 1.15;

    max-width: 800px;
}

.service-text {

    font-size: 20px;

    color: #666;

    line-height: 2;

    margin-bottom: 45px;

    max-width: 950px;
}

/* BOTON */

.service-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #1f2fa3;

    color: white;

    text-decoration: none;

    padding: 18px 38px;

    border-radius: 60px;

    font-weight: bold;

    font-size: 16px;

    transition: .3s;

    box-shadow: 0 10px 25px rgba(31,47,163,.25);
}

.service-btn:hover {

    background: #ff9800;

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(255,152,0,.35);
}

/* EFECTO DECORATIVO */

.service-row::after {

    content: '';

    position: absolute;

    right: -80px;

    bottom: -80px;

    width: 250px;

    height: 250px;

    background: rgba(255,152,0,.05);

    border-radius: 50%;
}

/* RESPONSIVE */

@media(max-width: 992px) {

    .services-page {

        padding: 140px 0 80px;
    }

    .section-title h1 {

        font-size: 42px;
    }

    .section-title p {

        font-size: 18px;
    }

    .service-content.full {

        padding: 45px;
    }

    .service-content h2 {

        font-size: 38px;
    }

    .service-text {

        font-size: 18px;

        line-height: 1.9;
    }
}

@media(max-width: 576px) {

    .service-content.full {

        padding: 35px 25px;
    }

    .section-title h1 {

        font-size: 34px;
    }

    .service-content h2 {

        font-size: 30px;
    }

    .service-btn {

        width: 100%;
    }
}
/************************************************** fin servicios ********************************************/
/************************************************** fin servicios ********************************************/
/************************************************** fin servicios ********************************************/
/************************************************** fin servicios ********************************************/
/************************************************** fin servicios ********************************************/


.contact-page {

    padding: 180px 0 120px;

    background: #f7f7f7;
}

.contact-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

/* INFO */

.contact-info h1 {

    font-size: 65px;

    color: #1f2fa3;

    margin: 25px 0;
}

.contact-info p {

    font-size: 20px;

    line-height: 1.9;

    color: #666;
}

.contact-badge {

    background: #ff9800;

    color: white;

    padding: 12px 24px;

    border-radius: 50px;

    display: inline-block;

    font-weight: bold;
}

.contact-items {

    margin-top: 50px;

    display: flex;

    flex-direction: column;

    gap: 30px;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 20px;
}

.contact-item .icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    color: #ff9800;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-item h3 {

    color: #1f2fa3;

    margin-bottom: 8px;
}

/* FORM */

.contact-form-box {

    background: white;

    padding: 50px;

    border-radius: 35px;

    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.kayros-form .form-group {

    margin-bottom: 25px;
}

.kayros-form input,
.kayros-form textarea,
.kayros-form select {

    width: 100%;

    padding: 18px 22px;

    border: 1px solid #ddd;

    border-radius: 18px;

    font-size: 16px;

    outline: none;

    transition: .3s;

    font-family: inherit;
}

.kayros-form textarea {

    height: 180px;

    resize: none;
}

.kayros-form input:focus,
.kayros-form textarea:focus,
.kayros-form select:focus {

    border-color: #ff9800;

    box-shadow: 0 0 0 4px rgba(255,152,0,.15);
}

.kayros-form input[type=submit] {

    background: #1f2fa3;

    color: white;

    border: none;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: bold;

    cursor: pointer;

    transition: .3s;
}

.kayros-form input[type=submit]:hover {

    background: #ff9800;

    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:992px) {

    .contact-wrapper {

        grid-template-columns: 1fr;
    }

    .contact-info h1 {

        font-size: 42px;
    }

    .contact-form-box {

        padding: 35px;
    }
}

/******************************/

.hero-section {

    padding: 180px 0 120px;

    background: #f7f7f7;
}

.container {

    width: 90%;

    max-width: 1200px;

    margin: auto;
}

.hero-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;
}

.hero-badge {

    background: #ff9800;

    color: white;

    padding: 12px 24px;

    border-radius: 50px;

    display: inline-block;

    font-weight: bold;

    margin-bottom: 25px;
}

.hero-content h1 {

    font-size: 75px;

    color: #1f2fa3;

    line-height: 1.1;

    margin-bottom: 25px;
}

.hero-content p {

    font-size: 22px;

    color: #666;

    line-height: 1.8;

    margin-bottom: 40px;
}

.hero-buttons {

    display: flex;

    gap: 20px;
}

.hero-btn {

    padding: 18px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    transition: .3s;
}

.hero-btn.primary {

    background: #1f2fa3;

    color: white;
}

.hero-btn.secondary {

    border: 2px solid #1f2fa3;

    color: #1f2fa3;
}

.hero-btn:hover {

    transform: translateY(-5px);
}

.hero-image img {

    width: 100%;

    border-radius: 40px;

    height: 650px;

    object-fit: cover;
}

/* SECTIONS */

.section-title {

    text-align: center;

    margin-bottom: 60px;
}

.section-title span {

    background: #ff9800;

    color: white;

    padding: 10px 22px;

    border-radius: 50px;

    display: inline-block;

    margin-bottom: 20px;

    font-weight: bold;
}

.section-title h2 {

    font-size: 55px;

    color: #1f2fa3;
}

/* SERVICES */

.home-services,
.home-professionals,
.home-testimonials {

    padding: 120px 0;
}

.services-grid,
.professionals-grid,
.testimonials-grid-home {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;
}

.service-card,
.professional-card-home,
.testimonial-card-home {

    background: white;

    border-radius: 30px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    transition: .4s;
}

.service-card:hover,
.professional-card-home:hover,
.testimonial-card-home:hover {

    transform: translateY(-10px);
}

.service-card h3,
.professional-content-home h3 {

    color: #1f2fa3;

    font-size: 32px;

    margin-bottom: 20px;
}

.service-text,
.professional-content-home p,
.testimonial-card-home p {

    color: #666;

    line-height: 1.8;
}

.professional-image-home img {

    width: 100%;

    height: 350px;

    object-fit: cover;

    border-radius: 25px;

    margin-bottom: 25px;
}

.professional-content-home a {

    display: inline-block;

    margin-top: 25px;

    color: #ff9800;

    font-weight: bold;

    text-decoration: none;
}

.testimonial-image-home {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    overflow: hidden;

    margin-bottom: 25px;
}

.testimonial-image-home img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.testimonial-card-home h4 {

    margin-top: 25px;

    color: #1f2fa3;
}

/* CTA */

.cta-section {

    padding: 120px 0;
}

.cta-box {

    background: #1f2fa3;

    color: white;

    text-align: center;

    padding: 80px;

    border-radius: 40px;
}

.cta-box h2 {

    font-size: 55px;

    margin-bottom: 25px;
}

.cta-box p {

    font-size: 20px;

    margin-bottom: 35px;
}

.cta-btn {

    display: inline-block;

    background: #ff9800;

    color: white;

    text-decoration: none;

    padding: 18px 40px;

    border-radius: 50px;

    font-weight: bold;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper {

        grid-template-columns: 1fr;
    }

    .hero-content h1 {

        font-size: 48px;
    }

    .section-title h2 {

        font-size: 40px;
    }

    .cta-box {

        padding: 50px 30px;
    }

    .cta-box h2 {

        font-size: 38px;
    }
}






/**************************inicio tienda *****************************/
/**************************inicio tienda *****************************/
/**************************inicio tienda *****************************/
/**************************inicio tienda *****************************/

.shop-page {

    padding: 180px 0 120px;

    background: #f7f7f7;
}

.container {

    width: 90%;

    max-width: 1300px;

    margin: auto;
}

/* TITULO */

.section-title {

    text-align: center;

    margin-bottom: 80px;
}

.section-title span {

    background: #ff9800;

    color: white;

    padding: 12px 24px;

    border-radius: 50px;

    display: inline-block;

    margin-bottom: 25px;

    font-weight: bold;
}

.section-title h1 {

    font-size: 65px;

    color: #1f2fa3;

    margin-bottom: 25px;

    line-height: 1.1;
}

.section-title p {

    font-size: 21px;

    color: #666;

    max-width: 850px;

    margin: auto;

    line-height: 1.8;
}

/* GRID */

.products-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

    gap: 35px;
}

/* CARD */

.product-card {

    background: white;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0,0,0,.08);

    transition: .4s;

    position: relative;
}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* IMAGE */

.product-image {

    position: relative;

    height: 320px;

    overflow: hidden;
}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.product-card:hover .product-image img {

    transform: scale(1.08);
}

/* BADGE */

.sale-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: #ff9800;

    color: white;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: bold;
}

/* CONTENT */

.product-content {

    padding: 35px;
}

.product-category {

    font-size: 14px;

    color: #ff9800;

    text-transform: uppercase;

    font-weight: bold;

    letter-spacing: 1px;

    display: block;

    margin-bottom: 15px;
}

.product-category a {

    color: #ff9800;

    text-decoration: none;
}

.product-content h2 {

    font-size: 28px;

    margin-bottom: 20px;

    line-height: 1.3;
}

.product-content h2 a {

    color: #1f2fa3;

    text-decoration: none;
}

.product-price {

    font-size: 28px;

    color: #111;

    font-weight: bold;

    margin-bottom: 30px;
}

.product-price del {

    color: #999;

    margin-right: 10px;
}

.product-price ins {

    text-decoration: none;

    color: #ff9800;
}

/* BUTTONS */

.product-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.view-btn,
.product-buttons .button {

    flex: 1;

    text-align: center;

    text-decoration: none;

    padding: 16px 20px;

    border-radius: 50px;

    font-weight: bold;

    transition: .3s;
}

.view-btn {

    background: #1f2fa3;

    color: white;
}

.view-btn:hover {

    background: #16227a;
}

.product-buttons .button {

    background: #ff9800 !important;

    color: white !important;

    border: none !important;
}

.product-buttons .button:hover {

    transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:992px) {

    .shop-page {

        padding: 140px 0 80px;
    }

    .section-title h1 {

        font-size: 42px;
    }

    .section-title p {

        font-size: 18px;
    }
}

@media(max-width:576px) {

    .product-buttons {

        flex-direction: column;
    }

    .product-content {

        padding: 25px;
    }

    .product-content h2 {

        font-size: 24px;
    }
}


/**************************final tienda *****************************/
/**************************final tienda *****************************/
/**************************final tienda *****************************/
/**************************final tienda *****************************/

/* SINGLE PRODUCT */

.single-product-page {

    padding: 180px 0 120px;

    background: #f7f7f7;
}

.single-product-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.single-product-image img {

    width: 100%;

    border-radius: 40px;

    background: white;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.product-category-single {

    display: inline-block;

    background: #ff9800;

    color: white;

    padding: 10px 22px;

    border-radius: 50px;

    margin-bottom: 25px;

    font-weight: bold;
}

.product-category-single a {

    color: white;

    text-decoration: none;
}

.single-product-content h1 {

    font-size: 60px;

    color: #1f2fa3;

    margin-bottom: 25px;

    line-height: 1.1;
}

.single-price {

    font-size: 40px;

    color: #111;

    font-weight: bold;

    margin-bottom: 35px;
}

.single-price ins {

    color: #ff9800;

    text-decoration: none;
}

.single-description {

    font-size: 20px;

    color: #666;

    line-height: 1.9;

    margin-bottom: 40px;
}

/* BOTON WOOCOMMERCE */

.single-cart {

    margin-bottom: 25px;
}

.single-cart .quantity input {

    padding: 12px;

    border-radius: 12px;

    border: 1px solid #ddd;

    margin-right: 15px;
}

.single-cart button {

    background: #1f2fa3 !important;

    color: white !important;

    border: none !important;

    padding: 16px 35px !important;

    border-radius: 50px !important;

    font-weight: bold !important;

    transition: .3s;
}

.single-cart button:hover {

    background: #ff9800 !important;

    transform: translateY(-3px);
}

/* WHATSAPP */

.whatsapp-btn {

    display: inline-block;

    background: #25D366;

    color: white;

    text-decoration: none;

    padding: 16px 35px;

    border-radius: 50px;

    font-weight: bold;

    transition: .3s;
}

.whatsapp-btn:hover {

    transform: translateY(-5px);
}

/* CART */

.cart-page {

    padding: 180px 0 120px;

    background: #f7f7f7;
}

.cart-wrapper {

    background: white;

    padding: 40px;

    border-radius: 35px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/* WOOCOMMERCE TABLE */

.woocommerce table.shop_table {

    border-radius: 20px;

    overflow: hidden;

    border: none;
}

.woocommerce table.shop_table th {

    background: #1f2fa3;

    color: white;

    padding: 18px;
}

.woocommerce table.shop_table td {

    padding: 20px;
}

.woocommerce .button {

    background: #ff9800 !important;

    color: white !important;

    border-radius: 50px !important;

    padding: 14px 25px !important;

    border: none !important;
}

.woocommerce .button:hover {

    opacity: .9;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .single-product-wrapper {

        grid-template-columns: 1fr;
    }

    .single-product-content h1 {

        font-size: 42px;
    }

    .single-description {

        font-size: 18px;
    }

    .cart-wrapper {

        overflow-x: auto;
    }
}


/************nueva tiena*/



.shop-page {

    padding: 180px 0 120px;

    background: #f7f7f7;
}

.container {

    width: 90%;

    max-width: 1300px;

    margin: auto;
}

/* HEADER */

.shop-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 60px;
}

.section-title span {

    background: #ff9800;

    color: white;

    padding: 12px 24px;

    border-radius: 50px;

    display: inline-block;

    margin-bottom: 25px;

    font-weight: bold;
}

.section-title h1 {

    font-size: 65px;

    color: #1f2fa3;

    margin-bottom: 20px;

    line-height: 1.1;
}

.section-title p {

    font-size: 20px;

    color: #666;

    line-height: 1.8;
}

/* SEARCH */

.shop-search form {

    display: flex;

    gap: 15px;
}

.shop-search input {

    width: 320px;

    padding: 18px 22px;

    border-radius: 50px;

    border: 1px solid #ddd;

    outline: none;

    font-size: 16px;
}

.shop-search button {

    background: #1f2fa3;

    color: white;

    border: none;

    padding: 18px 30px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: bold;

    transition: .3s;
}

.shop-search button:hover {

    background: #ff9800;
}

/* CATEGORIAS */

.shop-categories {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 50px;
}

.shop-categories a {

    background: white;

    color: #1f2fa3;

    text-decoration: none;

    padding: 14px 24px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.shop-categories a:hover,
.shop-categories a.active {

    background: #ff9800;

    color: white;
}

/* GRID */

.products-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

    gap: 35px;
}

/* CARD */

.product-card {

    background: white;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0,0,0,.08);

    transition: .4s;

    position: relative;
}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* IMAGE */

.product-image {

    position: relative;

    height: 320px;

    overflow: hidden;
}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.product-card:hover .product-image img {

    transform: scale(1.08);
}

/* BADGE */

.sale-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: #ff9800;

    color: white;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: bold;
}

/* CONTENT */

.product-content {

    padding: 35px;
}

.product-category {

    font-size: 14px;

    color: #ff9800;

    text-transform: uppercase;

    font-weight: bold;

    letter-spacing: 1px;

    display: block;

    margin-bottom: 15px;
}

.product-category a {

    color: #ff9800;

    text-decoration: none;
}

.product-content h2 {

    font-size: 28px;

    margin-bottom: 20px;

    line-height: 1.3;
}

.product-content h2 a {

    color: #1f2fa3;

    text-decoration: none;
}

.product-price {

    font-size: 28px;

    color: #111;

    font-weight: bold;

    margin-bottom: 30px;
}

.product-price del {

    color: #999;

    margin-right: 10px;
}

.product-price ins {

    text-decoration: none;

    color: #ff9800;
}

/* BUTTONS */

.product-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.view-btn,
.product-buttons .button {

    flex: 1;

    text-align: center;

    text-decoration: none;

    padding: 16px 20px;

    border-radius: 50px;

    font-weight: bold;

    transition: .3s;
}

.view-btn {

    background: #1f2fa3;

    color: white;
}

.view-btn:hover {

    background: #16227a;
}

.product-buttons .button {

    background: #ff9800 !important;

    color: white !important;

    border: none !important;
}

.product-buttons .button:hover {

    transform: translateY(-3px);
}

/* NO PRODUCTS */

.no-products {

    text-align: center;

    grid-column: 1/-1;

    color: #666;

    font-size: 28px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .shop-header {

        flex-direction: column;

        align-items: start;
    }

    .section-title h1 {

        font-size: 42px;
    }

    .shop-search {

        width: 100%;
    }

    .shop-search form {

        width: 100%;
    }

    .shop-search input {

        width: 100%;
    }
}

@media(max-width:576px) {

    .product-buttons {

        flex-direction: column;
    }

    .product-content {

        padding: 25px;
    }

    .product-content h2 {

        font-size: 24px;
    }

    .shop-search form {

        flex-direction: column;
    }
}

/* =========================================================
   SHOP PAGE PREMIUM MODERNO
========================================================= */

.shop-page {

    padding: 140px 0 100px;

    background: #f5f5f7;

    min-height: 100vh;
}

.container {

    width: 92%;

    max-width: 1500px;

    margin: auto;
}

/* =========================================================
   HEADER
========================================================= */

.shop-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 45px;
}

.section-title h1 {

    font-size: 70px;

    line-height: 1;

    color: #1d2d9c;

    margin-bottom: 18px;

    font-weight: 800;
}

.section-title p {

    font-size: 22px;

    color: #666;

    line-height: 1.7;
}

/* =========================================================
   SEARCH
========================================================= */

.shop-search form {

    display: flex;

    align-items: center;

    gap: 15px;
}

.shop-search {

    min-width: 500px;
}

.shop-search .search-wrapper {

    position: relative;

    flex: 1;
}

.shop-search input {

    width: 100%;

    height: 72px;

    border: none;

    border-radius: 60px;

    padding: 0 30px 0 70px;

    font-size: 18px;

    background: white;

    box-shadow: 0 8px 25px rgba(0,0,0,.05);

    outline: none;
}

.shop-search button {

    height: 72px;

    padding: 0 45px;

    border: none;

    border-radius: 60px;

    background: #1d2d9c;

    color: white;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;
}

.shop-search button:hover {

    background: #ff9800;

    transform: translateY(-3px);
}

.shop-search i {

    position: absolute;

    left: 28px;

    top: 50%;

    transform: translateY(-50%);

    color: #888;

    font-size: 22px;
}

/* =========================================================
   CATEGORIES
========================================================= */

.shop-categories {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 50px;
}

.shop-categories a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 30px;

    border-radius: 22px;

    background: white;

    text-decoration: none;

    color: #1d2d9c;

    font-weight: 700;

    font-size: 18px;

    transition: .3s;

    box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.shop-categories a:hover,
.shop-categories a.active {

    background: #ff9800;

    color: white;

    transform: translateY(-4px);
}

/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fill, minmax(310px, 1fr));

    gap: 30px;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

    background: white;

    border-radius: 35px;

    overflow: hidden;

    transition: .4s;

    position: relative;

    box-shadow: 0 10px 30px rgba(0,0,0,.05);

    display: flex;

    flex-direction: column;

    height: 100%;
}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0,0,0,.10);
}

/* =========================================================
   IMAGE
========================================================= */

.product-image {

    height: 320px;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fafafa;

    position: relative;
}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: .4s;

    opacity: 1 !important;

    filter: none !important;
}

/* ESTO ARREGLA EL EFECTO OPACO */

.product-card:hover .product-image img {

    transform: scale(1.05);

    opacity: 1 !important;

    filter: none !important;
}

/* =========================================================
   BADGE
========================================================= */

.sale-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: #ff9800;

    color: white;

    font-size: 14px;

    font-weight: 700;

    padding: 10px 18px;

    border-radius: 50px;
}

/* =========================================================
   CONTENT
========================================================= */

.product-content {

    padding: 28px;

    display: flex;

    flex-direction: column;

    flex: 1;
}

.product-category {

    font-size: 13px;

    font-weight: 700;

    color: #ff9800;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 14px;
}

.product-category a {

    color: #ff9800;

    text-decoration: none;
}

.product-content h2 {

    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 18px;

    min-height: 90px;
}

.product-content h2 a {

    color: #1d2d9c;

    text-decoration: none;

    transition: .3s;
}

.product-content h2 a:hover {

    color: #ff9800;
}

/* =========================================================
   PRICE
========================================================= */

.product-price {

    font-size: 42px;

    font-weight: 800;

    color: #ff9800;

    margin-bottom: 28px;
}

.product-price del {

    font-size: 24px;

    color: #999;

    margin-left: 12px;
}

.product-price ins {

    text-decoration: none;
}

/* =========================================================
   BUTTONS
========================================================= */

.product-buttons {

    display: flex;

    gap: 15px;

    margin-top: auto;
}

.view-btn,
.product-buttons .button {

    flex: 1;

    height: 65px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.view-btn {

    background: #f4f4f4;

    color: #333;
}

.view-btn:hover {

    background: #1d2d9c;

    color: white;
}

.product-buttons .button {

    background: #1d2d9c !important;

    color: white !important;

    border: none !important;
}

.product-buttons .button:hover {

    background: #ff9800 !important;

    transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

    .shop-header {

        flex-direction: column;

        align-items: start;
    }

    .shop-search {

        width: 100%;

        min-width: 100%;
    }

    .shop-search form {

        width: 100%;
    }

    .section-title h1 {

        font-size: 48px;
    }

    .products-grid {

        grid-template-columns:
        repeat(auto-fill, minmax(250px, 1fr));
    }

    .product-content h2 {

        font-size: 26px;

        min-height: auto;
    }

    .product-price {

        font-size: 32px;
    }
}

@media(max-width:576px) {

    .shop-search form {

        flex-direction: column;
    }

    .shop-search button {

        width: 100%;
    }

    .products-grid {

        grid-template-columns: 1fr;
    }

    .section-title h1 {

        font-size: 38px;
    }
}