/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 02:11:23 */
/* --- HERO SECTION --- */
.hero-full {
    position: relative;
    height: 100vh; 
    min-height: 600px;
    display: flex;
    
    /* 1. ALINEACIÓN: Esto pega todo hacia arriba */
    align-items: center;
    
    /* 2. RELLENO SUPERIOR: Lo bajamos a 90px (antes 150px) */
    /* Esto es solo para que el texto no quede tapado por el menú */
    padding-top: 5%; 
    
    background-color: #0a192f;
    background-image: url('https://cerrajeriasanpedroccs.com/wp-content/uploads/2026/03/Hero-cerrajeria.webp'); 
    background-size: cover;
    background-position: center -50px; 
    background-repeat: no-repeat;
    padding-bottom: 80px;
	flex-direction:column;
	justify-content:center;
}

/* Oscurecer un poco la imagen para que letras blancas y logos dorados resalten */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.5); 
    z-index: 1;
}
.hero-nota-ubicacion{
	z-index: 2;
	text-align:center;
}
.hero-nota-ubicacion-parrafo{
	color:black;
	position:relative;
	z-index:3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    /* 3 columnas: Texto Izq | LOGOS | Texto Der */
    grid-template-columns: 1fr 1.2fr 1fr; 
    align-items: center;
}

#hero-content{
	margin: 0;
	margin-bottom:10%;
}

/* Textos Laterales */
.hero-col h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}
.hero-col p {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 300;
    margin-top: 10px;
}
.text-left { text-align: center; padding-right: 20px; }
.text-right { text-align: center; padding-left: 20px; }

/* --- CENTRO: LOGOS Y BOTÓN --- */
.branding-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logos-container {
    display: flex;
    margin: 2rem 0;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.3));
    gap: 2rem;
    justify-content: space-between;
    align-items: center; 
}

.main-logo {
    height: 10rem; 
    width: auto;
    object-fit: contain; 
    display: block;
}

.sub-logo {
    width: 10rem; 
    height: auto; 
    object-fit: contain;
    display: block;
	/* Sintaxis: drop-shadow(desplazamiento-x desplazamiento-y desenfoque color) */
	filter:
		drop-shadow(0px 0px 1rem rgba(255, 255, 255))
		drop-shadow(0px 0px 2rem rgba(255, 255, 255))
		drop-shadow(0px 0px 2rem rgba(255, 255, 255));
	will-change: filter;
	transition: filter 0.3s ease-in-out;
}

.btn-cta-gold {
    background: rgba(197, 160, 89, 0.1); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    color: #c5a059; 
    padding: 15px 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.5); 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-cta-gold:hover {
    background: rgba(197, 160, 89, 0.25); 
    border-color: #c5a059; 
    color: #fff; 
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.3);
}

/* --- Ajustes Móvil para la Sección Hero (CORREGIDO) --- */
@media (max-width: 768px) {
    .hero-full {
        height: auto; 
        min-height: auto;
        padding-top: 4rem; /* Espacio para que el menú no tape el título */
        padding-bottom: 60px;
    }
	.hero-nota-ubicacion-parrafo{
		margin-bottom: -2rem;
	}
    .hero-content {
        grid-template-columns: 1fr; /* Apila todo en una columna */
         /* Da bastante espacio entre el texto de arriba, el centro y el texto de abajo */
    }

    .hero-col h2 {
        font-size: 1.6rem; /* Título un poco más pequeño para evitar saltos de línea feos */
    }

    .text-left, .text-right {
        padding-left: 15px;
        padding-right: 15px; /* Evita que el texto pegue exactamente en los bordes de la pantalla */
    }
	
	.text-right{
		padding-top:2rem;
	}

    .logos-container {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px; /* Separa el logo del botón */
    }

    .main-logo, .sub-logo {
        height: 8rem; /* Tamaño controlado en píxeles para que no se deforme */
        
        max-width: 100%;
        object-fit: contain;
    }

    /* --- ARREGLO DEL BOTÓN --- */
    .btn-cta-gold {
        display: inline-block; /* ESTO ES CLAVE para que la caja encierre bien el texto */
        padding: 12px 25px; /* Reducimos el relleno interno en móvil */
        font-size: 0.9rem; /* Achicamos la letra para que quepa en una sola línea */
        white-space: nowrap; /* Fuerza a que el texto del botón no salte a una segunda línea */
    }
}