/* =========================================
   ESTILOS GENERALES DEL SITIO
   ========================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* =========================================
   CONTENEDOR GENERAL
   ========================================= */

.container {
    margin-top: 10px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* =========================================
   CONTENEDORES CENTRADOS (login, registro)
   ========================================= */

.center-box{
    text-align:center;
}

/* =========================================
   LOGO
   ========================================= */

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 150px;
    height: auto;
    border-radius:8px;
}

/* =========================================
   BARRA SUPERIOR
   ========================================= */

.top-bar {
    width: 100%;
    height: 50px;
    background-color: #033787;
}

/* =========================================
   FORMULARIOS
   ========================================= */

form {

    background: white;
    padding: 25px;

    border-radius: 10px;

    box-shadow: 0 3px 12px rgba(0,0,0,0.08);

    max-width: 420px;
    margin: auto;

}

input, button {

    display: block;
    width: 100%;

    margin: 12px 0;

    padding: 12px;

    border-radius: 6px;

    border: 1px solid #ddd;
}

/* =========================================
   BOTONES
   ========================================= */

button {

    background-color: #033787;
    color: white;

    border: none;

    cursor: pointer;

    font-size: 16px;
    font-weight: 600;

    transition: all .2s ease;

}

button:hover {

    background-color: #02245d;

    transform: translateY(-1px);

}

/* =========================================
   ERRORES
   ========================================= */

.error-text {
    color: red !important;
    font-weight: bold;
}

/* =========================================
   TITULOS GENERALES
   ========================================= */

h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

h2 {
    font-size: 26px;
    margin-top: 35px;
}

h3 {
    font-size: 22px;
}

/* =========================================
   TITULO CURSOS / TUTORIALES
   ========================================= */

.titulo-cursos{

    font-size: 38px;
    font-weight: bold;

    text-align:center;

    margin-bottom: 15px;

}

/* =========================================
   PARRAFOS
   ========================================= */

p {

    line-height: 1.7;

    font-size: 17px;

    color: #444;

}

/* =========================================
   LISTAS
   ========================================= */

ul {

    padding-left: 25px;

}

li {

    margin-bottom: 8px;

    font-size: 17px;

}

/* =========================================
   SECCION TUTORIAL SEO
   ========================================= */

.tutorial-seo {

    text-align: left;

    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.7;

}

/* =========================================
   VIDEO RESPONSIVO
   ========================================= */

.video-container {

    position: relative;

    width: 100%;
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    aspect-ratio: 16/9;

}

.video-container iframe,
.video-container video {

    width: 100%;
    height: 100%;

    border-radius: 10px;

}

/* =========================================
   CTA CURSOS
   ========================================= */

.cta-cursos{

    background: #f7f7f7;

    border-radius: 12px;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    box-shadow: 0 3px 10px rgba(0,0,0,0.05);

    text-align:center;

}

.cta-cursos h3{
    font-size:24px;
}

.cta-cursos p{
    margin-top:10px;
}

/* =========================================
   BOTONES CTA
   ========================================= */

.btn{

    display:inline-block;

    padding:12px 24px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

}

.btn-primary{

    background:#033787;
    color:white;

}

.btn-primary:hover{

    background:#02245d;

}


.hp-field {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =========================================
   RESPONSIVE TABLET
   ========================================= */

@media (max-width: 900px){

.container{
    margin-top:80px;
}

.titulo-cursos{
    font-size:30px;
}

h1{
    font-size:30px;
}

}

/* =========================================
   RESPONSIVE MOVIL
   ========================================= */

@media (max-width: 600px){

.container{
    padding-left:15px;
    padding-right:15px;
}

.titulo-cursos{
    font-size:26px;
}

h1{
    font-size:26px;
}

h2{
    font-size:22px;
}

p, li{
    font-size:16px;
}

}