/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ESTILOS GENERALES */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9; /* blanco no puro */
    color: #333;
    text-align: center;
}

/* HEADER */
.header {
    margin-top: 75px;
}

.logo {
    width: 300px;   /* editable */
    height: auto;
}




/*
  .footer {
    width: 50%;
    height: auto;
    left: auto;
}
*/


.footer {
    width: 50%;   /* editable */
    height: auto;
    position: fixed; /* o absolute */
    left: 50%;
    transform: translate(-50%, -5%);

    }

.subtitle {
    margin-top: 14px;
    font-size: 16px;
    color: #666;
    font-variant: small-caps;
    
}

/* CONTENIDO */
.content {
    margin-top: 40px;
}

.text-box {
    width: 650px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

/* EMAIL */
h1 {
    margin-top: 40px;
    font-size: 14px;
    font-weight: 600;
}

/* ========================= */
/* TABLET (estilos editables) */
/* ========================= */
@media (max-width: 1024px) {
    .logo {
        width: 260px; /* editable para tablet */
    }

    .text-box {
        width: 80%;   /* editable */
        font-size: 14px;
    }

    h1 {
        font-size: 14px; /* editable */
    }

    .footer {
    width: 50%;   /* editable */
    height: auto;
    position: fixed; /* o absolute */
    left: 50%;
    transform: translate(-50%, -5%);

    }
}

/* ========================= */
/* MÓVILES */
/* ========================= */
@media (max-width: 800px) {
    .logo {
        width: 90%;
        max-width: 90%;
    }

    .subtitle {
        font-size: 14px;
    }

    .text-box {
        width: 90%;
        font-size: 14px; /* tamaño estándar para lectura móvil */
        line-height: 1.7;
        text-align: center;
    }

    h1 {
        font-size: 14px;
    }

    .footer {
    width: 90%;   /* editable */
    height: auto;
    position: fixed; /* o absolute */
    left: 50%;
    transform: translate(-50%, -5%);

    }

    .footer img {
        width: 70%;
        height: auto;
        display: block;
    }
}