/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: "Times New Roman", Georgia, serif;
    background:#f4f4f4;
    color:#222;
    line-height:1.7;
}

/* ================= HEADER ================= */

header{
    background:#0d1b2a;
    color: #ffffff;
    padding:18px 40px;
    position:fixed;
    width:100%;
    top:0;
    left: 0;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,0.3);
    font-family:"Times New Roman", Georgia, serif;
}

.header-centro{
    text-align:center;

}

header h1{
    font-family:"Times New Roman", Georgia, serif;
    font-size:18px;
    letter-spacing:1px;
    font-weight:500;
    text-align: center;

}

.menu-btn{
    position:absolute;
    left:30px;
    top: 20px;
    background:none;
    border:none;
    font-size:24px;
    color:white;
    cursor:pointer;
}

.menu-btn:hover{
    color:#c9a227;
}

.side-menu{
    position:fixed;
    top:0;
    left:-260px;
    width:250px;
    height:100%;
    background:#0d1b2a;
    padding-top:80px;
    transition:0.4s ease;
    z-index:1200;
    font-family:"Times New Roman", Georgia, serif;
}

.side-menu.active{
    left:0;
}

.side-menu ul{
    list-style:none;
    padding:0 20px;
}

.side-menu ul li{
    margin:20px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.side-menu ul li a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.side-menu ul li a:hover{
    color:#c9a646;
}

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    background:none;
    border:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

.close-btn:hover {
    color: gold;
}

.menu-header{
    margin-top:5px;   /* separación debajo del nombre */
    font-family:"Times New Roman", Georgia, serif;
}

.menu-header ul{
    display:flex;
    justify-content: center;
    gap:40px;
    list-style:none;
    padding: 0;
}

.menu-header ul li a{
    text-decoration:none;
    color:white;
    font-size:15px;
    letter-spacing:1px;
    transition:color 0.3s ease;
}

/* 🔥 HOVER GOLD */
.menu-header ul li a:hover{
    color:#c9a227;
}


/* =========================
   ESPACIO GENERAL
========================= */

main{
    margin-top:120px;
}

section{
    padding:80px 8%;
}



/* ================= PRESENTACIÓN ================= */

.presentacion{
    background-image:url("img/fondo.png");
    background-size: cover;               /* se adapta a la pantalla */
    background-position: left; 
    background-repeat: no-repeat;
    height:500px;
    display:flex;
    align-items:left;
    justify-content:left;
    text-align:left;
    color: white;
    position:relative;
    padding-top:80px;
}

.contenido{
    position:relative;
    color:#fff;
    max-width:800px;
    margin-top: -30px;
    padding:20px;
    margin-left: 100px; 
    animation: fadeIn 1.5s ease-in-out;
    text-align: center;
}

.contenido h1{
    font-size: 50px;
    margin-bottom:10px;
    letter-spacing:2px;
    color: #c9a227;
}

.contenido p{
    margin-bottom:10px;
    font-size:23px;
}

.especialista{
    font-weight:bold;
    color:#c9a646;
}

/* ============================= */
/* SECCIÓN TÉRMINOS Y CONDICIONES */
/* ============================= */

/* ====== ESTILO GENERAL PARA AMBOS CONTENEDORES ====== */

.bloque-texto{
    background: #ffffff;
    padding: 40px;
    margin: 40px auto;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.contenedor,
.contenedor-politica {
    width: 100%;
    background-color: #ffffff;
    padding: 90px 8%;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* BLOQUES INTERNOS */
.terminos-condiciones,
.politica-privacidad {
    max-width: 1100px;
    margin: auto;
}

/* ====== TÍTULO PRINCIPAL ====== */

.terminos-condiciones h1,
.politica-privacidad h1 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 10px;
    position: relative;
}

/* LÍNEA DORADA MINIMALISTA */
.terminos-condiciones h1::after,
.politica-privacidad h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: #c6a75e;
    margin: 18px auto 40px auto;
}

/* FECHA */
.fecha {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

/* ====== BLOQUES DE CONTENIDO ====== */

.terminos-condiciones article,
.politica-privacidad article {
    background: #fafafa;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

/* Hover elegante y sutil */
.terminos-condiciones article:hover,
.politica-privacidad article:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ====== SUBTÍTULOS ====== */

.terminos-condiciones h2,
.politica-privacidad h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

/* Sub-subtítulos */
.politica-privacidad h3 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #c6a75e;
}

/* ====== PÁRRAFOS ====== */

.terminos-condiciones p,
.politica-privacidad p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Negritas destacadas */
strong {
    font-weight: 700;
    color: #000;
}

/* ====== LISTAS ====== */

.terminos-condiciones ul,
.politica-privacidad ul {
    padding-left: 20px;
    margin-top: 10px;
}

.terminos-condiciones ul li,
.politica-privacidad ul li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

footer{
    background:#0d1b2a;
    color:white;
    text-align:center;
    padding:25px;
      font-family: "Times New Roman", Times, serif;
}

.footer-contenido {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-botones {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-botones a {
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* 🔥 EFECTO HOVER GOLD */
.footer-botones a:hover {
    background-color: gold;
    color: #000;
    border-color: gold;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Times New Roman", Times, serif;
}


/* ====== ANIMACIÓN SUAVE ====== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
