﻿/* =========================================================
   CABECERA PRINCIPAL (GLOBAL)
   ========================================================= */
.ps-header-centered {
    background: #fff;
}

.ps-header-inner {
    max-width: 1400px; 
    margin: 0 auto;    /* centra el bloque */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.ps-logo-hover {
    height: 220px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.ps-logo-hover:hover {
    transform: scale(1.05);
}

.ps-title-block {
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-top {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem;
    color: #000000;
    margin-left: 5px;
}

.ps-main {
    font-family: 'Anton', sans-serif;
    font-size: 4.6rem;
    line-height: 1.05;
    color: #800000;
    margin: 0;
    padding-bottom: 4px;
    position: relative;
    margin-left: 5px;
}

.ps-main::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #800000;
    margin-top: 8px;
    border-radius: 2px;
}

.ps-bottom {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    color: #800000;
    margin-left: 5px;
}

.ps-top,
.ps-main,
.ps-bottom {
	line-height: 1.05;
	text-align: left;	
}

.ps-logo-link {
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .ps-header-centered {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .ps-logo-hover {
        height: 160px;
    }

    .ps-header-inner {
        gap: 20px;
    }
}
