/* ===============================
   HERO WORDPRESS
=============================== */

.hero-wordpress {
    background: linear-gradient(135deg, #3b1c75, #1b0f3a);
    padding: 120px 20px;
    color: #ffffff;
}

.hero-wordpress-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* BADGE */

.hero-wordpress-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #d7b8ff;
}

/* TITULO */

.hero-wordpress h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-wordpress h1 span {
    color: #a970ff;
}

/* TEXTO */

.hero-wordpress p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 35px;
    color: #e6e6e6;
}

/* BOTONES */

.hero-wordpress-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-wordpress-primary {
    background: #a970ff;
    color: #fff;
    padding: 16px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    font-size: 1.4rem;
}

.btn-wordpress-primary:hover {
    background: #8a4dff;
}

.btn-wordpress-outline {
    border: 2px solid #a970ff;
    color: #a970ff;
    padding: 16px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    font-size: 1.4rem;
}

.btn-wordpress-outline:hover {
    background: #a970ff;
    color: #fff;
}

/* IMAGEN */

.hero-wordpress-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */

@media(max-width:900px) {

    .hero-wordpress-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-wordpress p {
        margin: auto auto 30px;
    }

    .hero-wordpress-buttons {
        justify-content: center;
    }

    .hero-wordpress h1 {
        font-size: 38px;
    }

    .hero-wordpress-image img {
        display: none;
    }

    .hero-wordpress {
        padding: 70px 0;
    }
}

/* ===============================
PLANES WORDPRESS
=============================== */

.wp-plans {
    padding: 100px 20px;
    background: #f7f8fc;
}

.plans-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
}

.plans-carousel::-webkit-scrollbar {
    display: none;
}

.plan-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
    position: relative;
    transition: .3s;
}

.plan-card:hover {
    transform: translateY(-8px);
}

.plan-badge {
    display: inline-block;
    background: #e9f0ff;
    color: #316cff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0b1a3c;
}

.plan-price span {
    font-size: 14px;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.plan-features li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

.btn-plan {
    display: inline-block;
    background: #0b1a3c;
    color: #fff;
    padding: 10px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-plan:hover {
    background: #316cff;
}

.primary {
    background: #316cff;
}

.recommended {
    border: 2px solid #f5b400;
}

.plan-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f5b400;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* flechas */

/* CONTENEDOR RELATIVO */

.wp-plans .container {
    position: relative;
}


/* CONTROLES CARRUSEL */

.carousel-controls {
    position: absolute;
    top: 60px;
    right: 0;
    display: flex;
    gap: 12px;
    z-index: 5;
}


/* BOTONES */

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #081a45;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.carousel-btn:hover {
    background: #f5b400;
    color: #000;
    transform: scale(1.05);
}

/* ===============================
BENEFICIOS WORDPRESS
=============================== */

.wp-benefits {

    padding: 100px 20px;
    background: #ffffff;

}

.wp-benefits-grid {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

}

.wp-benefit {

    background: #f7f8fc;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

    transition: .3s;

}

.wp-benefit:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

}

.wp-benefit h3 {

    font-size: 24px;
    margin-bottom: 10px;
    color: #0b1a3c;

}

.wp-benefit h4 {

    font-size: 16px;
    margin-bottom: 20px;
    color: #f5b400;
    font-weight: 600;

}

.wp-benefit p {

    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;

}

/* RESPONSIVE */

@media(max-width:900px) {

    .wp-benefits-grid {

        grid-template-columns: 1fr;

    }

}

/* ===============================
PROCESO WORDPRESS
=============================== */

.wp-process {

    padding: 110px 20px;
    background: linear-gradient(135deg, #f7f8fc, #ffffff);

}

.section-subtitle {

    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #0b1a3c;
    font-size: 17px;

}

.process-grid {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;

}

/* CARD */

.process-card {

    background: #ffffff;

    padding: 40px 30px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    transition: .35s;

    position: relative;

}

.process-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

}

/* ICONO */

.process-icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    background: linear-gradient(135deg, #316cff, #5a8cff);

    color: white;

    border-radius: 50%;

}

/* TITULO */

.process-card h3 {

    font-size: 20px;
    margin-bottom: 15px;
    color: #0b1a3c;

}

/* TEXTO */

.process-card p {

    font-size: 15px;
    color: #555;
    line-height: 1.6;

}

/* RESPONSIVE */

@media(max-width:1000px) {

    .process-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .process-grid {

        grid-template-columns: 1fr;

    }

}

/* ===============================
FAQ WORDPRESS
=============================== */

.wp-faq {
    padding: 110px 20px;
    background: #f7f8fc;
}

.wp-faq .container {
    max-width: 1000px;
    margin: auto;
}

/* LISTA */

.faq-list {
    width: 100%;
    margin: auto;
}

/* ITEM */

.faq-item {

    background: #ffffff;

    border-radius: 14px;

    margin-bottom: 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition: .3s;

    border: 1px solid #e8e8e8;

}

/* HOVER */

.faq-item:hover {

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);

}

/* PREGUNTA */

.faq-question {

    width: 100%;

    padding: 22px 28px;

    font-size: 18px;

    font-weight: 600;

    background: #ffffff;

    border: none;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    color: #0b1a3c;

}

/* ICONO */

.faq-question::after {

    content: "+";

    font-size: 24px;

    font-weight: 700;

    color: #f5b400;

    transition: .3s;

}

/* RESPUESTA */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;

}

/* TEXTO */

.faq-answer p {

    padding: 0 28px 24px;

    margin: 0;

    font-size: 16px;

    line-height: 1.7;

    color: #555;

}

/* ACTIVO */

.faq-item.active {

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

}

.faq-item.active .faq-answer {

    max-height: 300px;

}

.faq-item.active .faq-question::after {

    content: "–";

}

/* RESPONSIVE */

@media(max-width:768px) {

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

}

/* ===============================
CTA WORDPRESS
=============================== */

.wp-cta {

    padding: 120px 20px;

    background: linear-gradient(135deg, #0b1a3c, #1d3ea6);

    color: white;

    text-align: center;

}

.wp-cta .container {

    max-width: 1000px;
    margin: auto;

}

/* CAJA */

.cta-box {

    padding: 60px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 18px;

    backdrop-filter: blur(8px);

}

/* TITULO */

.wp-cta h2 {

    font-size: 40px;

    font-weight: 700;

    margin-bottom: 20px;

    line-height: 1.3;
    color: #ffffff;

}

.wp-cta span {

    color: #ffb400;

}

/* TEXTO */

.wp-cta p {

    font-size: 18px;

    max-width: 700px;

    margin: auto;

    margin-bottom: 40px;

    opacity: .9;

    line-height: 1.7;
    color: yellow;

}

/* BOTONES */

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

/* BOTON PRINCIPAL */

.btn-cta-primary {

    background: #ffb400;

    color: #0b1a3c;

    padding: 16px 34px;

    font-size: 17px;

    font-weight: 600;

    border-radius: 50px;

    text-decoration: none;

    transition: .3s;

}

.btn-cta-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

}

/* BOTON WHATSAPP */

.btn-cta-secondary {

    border: 2px solid #ffffff;
    color: white;
    padding: 16px 34px;
    font-size: 17px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
    background-color: #142d6a;
}

.btn-cta-secondary:hover {
    background: #3b82f6;
    color: #ffffff;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .wp-cta h2 {
        font-size: 30px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .wp-cta p {
        font-size: 16px;
    }

}

.hero-dev {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 0;
    color: white;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    background: #1e40af;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-text h1 span {
    color: #60a5fa;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #cbd5f5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    border: 2px solid #3b82f6;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #3b82f6;
}

.hero-image img {
    width: 520px;
    border-radius: 16px;
}

@media(max-width:992px) {
    .hero-container {
        padding: 80px 0;
    }
}

@media(max-width:900px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .hero-image img {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

}

/* ===============================
PLANES DISEÑO WEB
=============================== */

.web-plans {
    padding: 110px 20px;
    background: #f6f7fb;
    position: relative;
}

.web-plans .container {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* TITULO */

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.section-title span {
    color: #f4b400;
}

@media (max-width:900px) {
    .section-title {
        font-size: 32px;
    }
}

/* ===============================
BOTONES CARRUSEL
=============================== */

.carousel-controls {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #0b1a3c;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    transform: translateY(-2px);
    background: #142d6a;
}

@media (max-width:1024px) {
    .carousel-controls {
        top: -50px;
    }
}

/* ===============================
CARRUSEL
=============================== */

.plans-carousel {

    display: flex;

    gap: 30px;

    overflow-x: auto;

    scroll-behavior: smooth;

    padding-top: 40px;

    padding-bottom: 20px;

    scrollbar-width: none;

}

.plans-carousel::-webkit-scrollbar {
    display: none;
}


/* ===============================
CARD
=============================== */

.plan-card {

    min-width: 300px;

    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    position: relative;

    text-align: center;

    transition: .3s;

}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


/* ===============================
PLAN RECOMENDADO
=============================== */

.plan-card.recommended {

    border: 2px solid #f4b400;

}

.plan-ribbon {

    position: absolute;

    top: -12px;

    left: 50%;

    transform: translateX(-50%);

    background: #f4b400;

    padding: 6px 18px;

    border-radius: 20px;

    font-size: 13px;

    font-weight: 600;

}


/* ===============================
BADGE
=============================== */

.plan-badge {

    background: #e9eef9;

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 13px;

    display: inline-block;

    margin-bottom: 15px;

    color: #3366ff;

}


/* ===============================
TITULO
=============================== */

.plan-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}


/* ===============================
DESCRIPCION
=============================== */

.plan-desc {
    color: #666;
    margin-bottom: 20px;
}


/* ===============================
PRECIO
=============================== */

.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 14px;
    color: #777;
}


/* ===============================
FEATURES
=============================== */

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 10px;
    color: #555;
}


/* ===============================
BOTON
=============================== */

.btn-plan {

    display: inline-block;

    border-radius: 40px;

    background: #0b1a3c;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.btn-plan:hover {
    background: #142d6a;
    color: #ffffff;
}

.btn-plan.primary {
    background: #f4b400;
    color: #0b1a3c;
}


/* ===============================
RESPONSIVE
=============================== */

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .carousel-controls {
        top: -70px;
    }

    .plan-card {
        min-width: 260px;
        padding: 28px;
    }

}

/* ===============================
PROCESO DESARROLLO
=============================== */

.wp-process {

    padding: 120px 20px;

    background: #f7f8fc;

    text-align: center;

}

.wp-process .container {

    max-width: 1200px;

    margin: auto;

}


/* SUBTITULO */

.process-subtitle {

    max-width: 650px;

    margin: 20px auto 80px;

    font-size: 18px;

    color: #666;

}


/* GRID */

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    position: relative;

}


/* LINEA CONECTORA */

.process-grid::before {

    content: "";

    position: absolute;

    top: 60px;

    left: 8%;

    width: 84%;

    height: 3px;

    background: #dfe3f2;

    z-index: 0;

}


/* CARD */

.process-card {

    background: white;

    padding: 45px 30px;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    position: relative;

    z-index: 1;

    transition: .3s;

    opacity: 0;

    transform: translateY(40px);

}


/* HOVER */

.process-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);

}


/* ICONO */

.process-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #0b1a3c;

    color: white;

    font-size: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

}


/* TITULO */

.process-card h3 {

    font-size: 20px;

    margin-bottom: 10px;

    color: #0b1a3c;

}


/* TEXTO */

.process-card p {

    font-size: 15px;

    color: #666;

    line-height: 1.6;

}


/* ANIMACION */

.process-card.show {

    opacity: 1;

    transform: translateY(0);

    transition: all .8s ease;

}


/* RESPONSIVE */

@media(max-width:900px) {

    .process-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .process-grid::before {

        display: none;

    }

}

@media(max-width:600px) {

    .process-grid {

        grid-template-columns: 1fr;

    }

}