/* CODIGO CSS DE LA PAGINA DEL BOOTCAMP */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --danger: #dc2626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Corregir scroll lateral */
body, html {
    overflow-x: hidden;
    max-width: 100%;
}

header {
    background-color: var(--dark);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.sticky {
    padding: 0.7rem 1rem;
    background-color: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.job-guarantee {
    background-color: var(--danger);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

/* Para hacer el botón de TRABAJO GARANTIZADO más destacado */
.job-guarantee.destacado {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    background-color: var(--danger);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
    }
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.courses {
    padding: 5rem 0;
}

/* Corregir la imagen de Java y el tamaño del título */
.section-title {
    font-size: 2.5rem; /* Restauramos el tamaño original */
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--primary);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Mejoras en la presentación de imágenes de bootcamp */
.course-card {
    padding: 0;
    margin-bottom: 2rem;
}

.course-content {
    padding: 2rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 90%;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
    width: auto;
    padding-right: 2rem;
}

.course-card:hover {
    transform: translateY(-10px);
}

/* Tarjetas visuales de cursos */
.course-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px 14px 0 0;
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.course-img-cyber {
    background: linear-gradient(135deg, #050d1a 0%, #0a1f3d 60%, #051525 100%);
}
.course-img-cyber::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 50%, rgba(0, 212, 255, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 75% 25%, rgba(0, 80, 180, 0.12) 0%, transparent 45%);
}
.course-img-cyber::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0,212,255,0.04) 28px, rgba(0,212,255,0.04) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(0,212,255,0.04) 28px, rgba(0,212,255,0.04) 29px);
}

.course-img-java {
    background: linear-gradient(135deg, #0f0800 0%, #2a1200 60%, #180b00 100%);
}
.course-img-java::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 55%, rgba(248, 152, 32, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 70% 20%, rgba(220, 100, 0, 0.1) 0%, transparent 45%);
}

.img-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.img-icon {
    font-size: 3.8rem;
    line-height: 1;
}
.course-img-cyber .img-icon {
    color: #00d4ff;
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.6));
}
.course-img-java .img-icon {
    color: #f89820;
    filter: drop-shadow(0 0 18px rgba(248, 152, 32, 0.6));
}

.img-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.img-tags span {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.course-img-cyber .img-tags span {
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}
.course-img-java .img-tags span {
    background: rgba(248, 152, 32, 0.12);
    border: 1px solid rgba(248, 152, 32, 0.3);
    color: #f89820;
}

.course-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.dates {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.date-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.date-card {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.date-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.date-card .date {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.date-card .modality {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--light-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.date-card .instructor-tag {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: bold;
    margin-top: 1rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 0.8rem;
    text-align: center;
}

.syllabus {
    padding: 5rem 0;
}

.tab-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
    position: sticky;
    top: 120px;
    background-color: white;
    z-index: 89;
    padding: 1rem 0;
    border-radius: 10px 10px 0 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: var(--gray);
    position: relative;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active {
    display: block;
}

.module {
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
}

.module h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 180px;
    background-color: white;
    padding: 1rem;
    margin: -1rem -1rem 1rem -1rem;
    z-index: 88;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.module-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.module-topics {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
    padding-left: 1rem;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.module-topics li {
    margin-bottom: 0.8rem;
    break-inside: avoid;
    position: relative;
    padding-left: 1.5rem;
}

.module-topics li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.testimonials {
    padding: 5rem 0;
    background-color: var(--dark);
    color: white;
}

.testimonial-title {
    color: white;
}

.testimonial-title span {
    color: var(--secondary);
}

.testimonial-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: "\201C"; /* Comilla Unicode correcta */
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.instructor-section {
    padding: 3rem 0;
    text-align: center;
    background-color: #f0f7ff; /* Nuevo color de fondo azul muy claro */
}

.instructor-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    max-width: 800px; /* Ancho máximo para mejor control */
}

.instructor-image {
    width: 300px;
    height: 380px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    background-color: #f0f4f8;
    border: 2px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Quita cualquier contenido actual */
.instructor-image img, 
.instructor-image::after {
    display: none;
}

/* Icono simple de imagen para indicar donde va la foto */
.instructor-image::before {
    content: "+";
    font-size: 40px;
    color: #cbd5e0;
}


.instructor-img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
}

.instructor-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem; /* Añadir un poco de padding */
}

.instructor-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    text-align: center;
}

.instructor-position {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.instructor-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

.instructor-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark);
    border-left: 4px solid var(--secondary);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.instructor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.badge {
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gray);
    margin-right: 1rem;
    background-image: url('/api/placeholder/50/50');
    background-size: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.guarantee {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.guarantee p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--light);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray);
}

.payment-info {
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
    color: var(--gray);
    opacity: 0.8;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-contact {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: var(--secondary);
}

.instructor-banner {
    background-color: rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 80%;
}

.instructor-banner p {
    font-weight: bold;
    color: var(--secondary);
}

.social-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
}

.copyright {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

.sticky-bootcamp-title {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.8rem 1rem;
    z-index: 90;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: none; /* Oculto por defecto */
}

.section-title-sticky {
    position: sticky;
    top: 60px;
    background-color: var(--light);
    z-index: 90;
    padding: 1rem 0;
    margin: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plazas-disponibles {
    color: var(--danger);
    font-weight: bold;
    margin-top: 1rem;
    animation: pulse 2s infinite;
    text-align: center;
}

/* Corregir problema de plazas duplicadas */
.plazas-disponibles + .plazas-disponibles {
    display: none;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    /* Navegación móvil */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: var(--dark);
        width: 100%;
        padding: 2rem;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Ajustes de contenido */
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Asegurar que los botones estén centrados */
    .btn {
        text-align: center;
        transform: none !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    /* Ajustes para secciones */
    section {
        padding: 3rem 0;
        margin: 0;
        text-align: center;
    }
    
    /* Ajustes para la sección instructor */
    .instructor-section {
        padding-top: 0;
        margin-top: 0;
    }
    
    .instructor-section .container {
        padding: 0;
        width: 100%;
    }

    .instructor-info {
        width: 100%;
        padding: 0 1rem;
    }
    
    .instructor-description {
        padding: 0 1rem;
        text-align: center;
    }
}
    
    /* Ajustes para temario */
    .module-topics {
        columns: 1;
        width: 100%;
        padding-left: 0;
    }
    
    .module-topics li {
        width: 100%;
        display: block;
        text-align: left;
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
    }
    
    /* Ajustes para listas */
    .features li::before,
    .module-topics li::before {
        position: absolute;
        left: 0;
        top: 0.25rem;
    }
    
    /* Ajustes para grid en footer */
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }


/* Ajustes para dispositivos muy pequeños */
@media (max-width: 480px) {
    /* Ajustes generales */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    /* Ajustes de títulos */
    .section-title {
        font-size: 2rem;
    }
    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem; /* Ajustamos a un tamaño más razonable para móviles muy pequeños */
        }
    }
    /* Ajustes de botones */
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Ajustes de tabs */
    .tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Ajustes de módulos */
    .module {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Ajustes de navegación */
    .nav-menu {
        width: 100%;
        left: -100%;
    }
    
    .nav-menu.active {
        width: 100%;
    }
    
    /* Ajustes de instructor */
    .instructor-profile {
        padding: 1rem;
    }
    
}
@media (min-width: 769px) {
    .sticky-bootcamp-title {
        max-width: 80%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0 0 8px 8px;
    }
}

/* Adaptación para móviles */
@media (max-width: 768px) {
    .course-img {
        width: 85%;
        height: 180px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .course-card {
        padding: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .course-img {
        width: 90%;
        height: 150px;
        padding: 10px;
    }
}
/* ── Bootcamp WhatsApp CTA block ─────────────────────────────── */
.bootcamp-wa-block {
    background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, rgba(37,211,102,0.04) 100%);
    border: 2px solid rgba(37,211,102,0.35);
    border-radius: 18px;
    padding: 28px 32px;
    margin: 32px auto;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.bootcamp-wa-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bootcamp-wa-icon {
    font-size: 2.8rem;
    color: #25D366;
    filter: drop-shadow(0 0 8px rgba(37,211,102,0.5));
    flex-shrink: 0;
}
.bootcamp-wa-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}
.bootcamp-wa-text strong {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
.bootcamp-wa-text span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}
.btn-bootcamp-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    width: 100%;
    justify-content: center;
}
.btn-bootcamp-wa i { font-size: 1.25rem; }
.btn-bootcamp-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}
.bootcamp-wa-nota {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.bootcamp-cta-sep {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin: 8px 0 16px;
    font-style: italic;
}
