/* =========================
   GENERAL
========================= */
body {
    background-color: #F5F1EA;
    font-family: 'Inter', sans-serif;
    color: #1E1A18;
    margin: 0;
    padding: 0;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: linear-gradient(90deg, #5A3E36, #3B2A24) !important;
    padding: 10px 20px;
}

.navbar-brand {
    color: #C8A45D !important;
    font-weight: bold;
    font-size: 1.3rem;
}

.navbar-nav .nav-link {
    color: #F5F1EA !important;
    font-weight: 500;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #C8A45D !important;
}

/* =========================
   TITULOS
========================= */
h1, h2, h3 {
    color: #5A3E36;
    font-weight: bold;
}

/* =========================
   SLIDER CURSOS
========================= */
.course-list-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    
}

/* scrollbar */
.course-list-container::-webkit-scrollbar {
    height: 6px;
}

.course-list-container::-webkit-scrollbar-thumb {
    background: #C8A45D;
    border-radius: 10px;
}

/* =========================
   CARD (UNICA VERSION)
========================= */
.course-card {
    flex: 0 0 280px;
    scroll-snap-align: start;

    border-radius: 18px;
    overflow: hidden;

    background: linear-gradient(180deg, #ffffff, #f8f4ef);

    box-shadow: 0 10px 25px rgba(59, 42, 36, 0.15);

    transition: all 0.4s ease;
}

/* hover elegante */
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(59, 42, 36, 0.25);
}

/* =========================
   IMAGEN
========================= */
.course-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

/* overlay dorado */
.course-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(200, 164, 93, 0.1),
        rgba(90, 62, 54, 0.35)
    );
}

/* =========================
   CONTENIDO
========================= */
.course-content {
    padding: 15px;
    text-align: left;
}

.course-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #5A3E36;
    margin-bottom: 8px;
}

.course-description {
    font-size: 0.9rem;
    color: #5b4636;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* =========================
   PRECIO
========================= */
.course-price {
    font-weight: bold;
    color: #C8A45D;
    margin-bottom: 12px;
}

/* =========================
   BOTON
========================= */
.course-btn {
    display: inline-block;
    background: linear-gradient(90deg, #C8A45D, #5A3E36);
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.course-btn:hover {
    background: linear-gradient(90deg, #5A3E36, #3B2A24);
}

/* =========================
   BOTONES GENERALES
========================= */
.btn {
    border-radius: 12px;
    font-weight: 500;
    padding: 8px 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #C8A45D, #D8B56A) !important;
    border: none !important;
    color: #1E1A18 !important;
}

.btn-success {
    background-color: #5A3E36 !important;
    border: none !important;
    color: #fff !important;
}

/* =========================
   FOOTER
========================= */
footer {
    background: linear-gradient(90deg, #5A3E36, #3B2A24);
    color: #C8A45D;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

/* =========================
   BOTONES GLOBALES (FIX TOTAL)
========================= */

/* TODOS los botones tipo primary */
.btn-primary,
button.btn-primary {
    background: linear-gradient(135deg, #C8A45D, #D8B56A) !important;
    border: none !important;
    color: #1E1A18 !important;
}

/* hover */
.btn-primary:hover {
    background: linear-gradient(135deg, #b8934f, #caa95d) !important;
    transform: scale(1.05);
}

/* botones success (los verdes de bootstrap) */
.btn-success {
    background-color: #5A3E36 !important;
    border: none !important;
    color: #fff !important;
}

.btn-success:hover {
    background-color: #3B2A24 !important;
}

/* botones secundarios (login / register / etc) */
.btn-secondary {
    background-color: #F5F1EA !important;
    border: 1px solid #C8A45D !important;
    color: #5A3E36 !important;
}

.btn-secondary:hover {
    background-color: #EDE4D8 !important;
    color: #C8A45D !important;
}

.btn-volver {
    background-color: #ffffff !important;
    border: 1px solid rgba(200, 164, 93, 0.5) !important;
    color: #5A3E36 !important;
    border-radius: 25px;
    padding: 10px 18px;
    text-decoration: none !important;
    display: inline-block;
}

.btn-volver:hover {
    background-color: #F5F1EA !important;
    color: #C8A45D !important;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.slider-track {
    display: flex;
    gap: 20px;
    animation: scrollSlider 15s linear infinite;
}

/* cada card */
.slider-track .course-card {
    min-width: 30%;
}

/* animación automática */
@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* =========================
   SCROLL PERSONALIZADO GOLDEN
========================= */

/* ancho del scroll */
.course-list-container::-webkit-scrollbar {
    height: 8px;
}

/* fondo del scroll (transparente) */
.course-list-container::-webkit-scrollbar-track {
    background: rgba(90, 62, 54, 0.1);
    border-radius: 10px;
}

/* barra */
.course-list-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #C8A45D, #D8B56A);
    border-radius: 10px;
    opacity: 0.7;
}

/* hover */
.course-list-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #b8934f, #caa95d);
}


.link-golden {
    color: #5A3E36 !important;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.link-golden:hover {
    color: #C8A45D !important;
    text-decoration: underline;
}
.course-description-box {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;

    background: #fff;
    border-radius: 12px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);

    text-align: left;
}

.course-description-box h4 {
    color: #5A3E36;
    margin-bottom: 10px;
}

.course-description-box p {
    line-height: 1.7;
    color: #3B2A24;
}

/* =========================
   CONTACTO / QUIEN SOY
========================= */

.contacto-container {
    display: flex;
    justify-content: center;
}

.contacto-box {
    max-width: 700px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(59, 42, 36, 0.15);
    text-align: center;
}

.contacto-title {
    color: #5A3E36;
    margin-bottom: 20px;
}

.contacto-subtitle {
    color: #C8A45D;
    margin-top: 20px;
    margin-bottom: 15px;
}

.contacto-texto {
    color: #1E1A18;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* BOTONES DORADOS COMO EL HOME */
.btn-contacto {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;

    background: linear-gradient(135deg, #C8A45D, #D8B56A);
    color: #1E1A18;

    transition: all 0.3s ease;
}

.btn-contacto:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #b8934f, #caa95d);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
   
    border: 3px solid #C8A45D; /* dorado */
    box-shadow: 0 0 15px rgba(200,164,93,0.6);

    margin-bottom: 15px;
}
/* =========================
   SESIONES HOLÍSTICAS (FINAL)
========================= */

.sesion-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.sesion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sesion-image {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.course-title {
    color: #5A3E36;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Descripción en MARRÓN igual a tus cursos */
.course-description {
    color: #5A3E36 !important; 
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.btn-equilibrio {
    display: inline-block !important;
    /* GRADIENTE GOLDEN IDENTICO A TUS CURSOS */
    background: linear-gradient(90deg, #C8A45D, #5A3E36) !important;
    color: #fff !important;
    
    /* TIPOGRAFÍA */
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    
    /* FORMA */
    padding: 10px 25px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    border: none !important;
    
    /* ANIMACIÓN */
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(90, 62, 54, 0.2) !important;
}

.btn-equilibrio:hover {
    /* Efecto de oscurecimiento y subida */
    background: linear-gradient(90deg, #5A3E36, #3B2A24) !important;
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2) !important;
    color: #fff !important;
}


img, iframe, video {
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}