/*
    Estilos para replicar el diseño de T303.COM.jpg
    Tipografía: Times New Roman
*/

/* 1. Reset Básico y Tipografía */
body {
    font-family: 'Times New Roman', Times, serif; /* Tipografía solicitada */
    margin: 0;
    padding: 0;
    color: #333; /* Color de texto oscuro por defecto */
    background-color: #fff;
    line-height: 1.6;
}

/* Contenedor principal de todo el contenido para centrar y limitar ancho */
.content-container {
    max-width: 600px; /* Ancho estimado para el cuerpo de texto en el diseño */
    margin: 0 auto; /* Centrar el contenido */
    padding: 20px 20px 40px 20px;
}

/* 2. Header (Logotipo T 303) */
.header {  
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.header-content {
    background-color: #000;
    max-width: 450px;
    margin: 0 auto;
    font-family: 'Chronicle Display';
    font-weight: 900;
    font-style: normal;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    letter-spacing: 2px; /* Ajuste para el look del logo */
}

.logo sup {
    font-size: 50%; /* Ajuste del tamaño del ® */
    top: -0.5em;
}

.address {
    font-size: 12px;
    margin: 5px 0 0 0;
    padding-bottom: 5px;
    color:#799ab0;
    font-family:Helvetica, sans-serif;
    font-weight:lighter;
}

/* 3. Imagen Principal de la Torre */
.main-image-container {
    width: 100%;
    margin-top:20px;
    margin-bottom: 30px; /* Espacio después de la imagen */
    text-align: center;
}

.main-image-placeholder {
    margin-top:20px;
    /* Aquí deberías cargar tu imagen de la torre */
    width: 100%;
    height: 500px; /* Altura de simulación */
    background-color: #fff; /* Color de simulación */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    /* Estilos para el efecto de la imagen */
    object-fit: cover;
    display: block;
    
}

/* 4. Títulos y Secciones de Contenido */
h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
    text-align: left;
}

.subtitle {
    font-size: 17px;
    font-weight: bold; /* El subtítulo es más delgado */
    margin-bottom: 30px;
    text-align: left;
    font-style: italic;
}

/* Párrafos generales */
.content-container{
    max-width: 380px;    
}

.content-container p {
    font-size: 16px;
    margin-bottom: 20px;
    
}

/* Sección de la lista de detalles (Forvm, Q303, etc.) */
.details-section p {
    line-height: 1.2;
    margin-bottom: 10px; /* Menos espacio entre ítems */
}

.details-section sup {
    font-size: 70%;
    top: -0.3em;
}

/* 5. Botón de Enlace */
.blog-link-section {
    text-align: center;
    margin-top: 40px;
}

.blog-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff; /* Fondo blanco */
    color: #000; /* Texto negro */
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #000; /* Borde negro para el efecto del diseño */
    border-radius: 4px; /* Un poco de redondeo, aunque el diseño es casi recto */
    transition: background-color 0.3s;
}

.blog-button:hover {
    background-color: #f0f0f0;
}

/* 6. Footer (Pie de página) */
.footer {
    text-align: center;
    padding: 30px 0;
}

.footer-logo-container {
    margin-bottom: 10px;
}

.footer-logo-placeholder {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: inline-block;
}

.footer-logo-placeholder sup {
    font-size: 60%;
    top: -0.4em;
}

.com-blog {
    font-weight: normal; /* El ".com blog" es más delgado */
    color: #666;
}

.copyright {
    font-size: 12px;
    color: #999;
    margin: 0;
}