/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
    min-height: 100vh;
	min-height: 100dvh;	/* sobrescribe solo si el navegador lo soporta */
    color: #ffffff;
    overflow-x: hidden;
    /* Background */
    background: url('../img/background_ligth_1536x1024_32.jpg') no-repeat center center/cover;
}

/* Overlay configurable */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 👇 AQUÍ puedes cambiar la opacidad */
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

/* Contenedor principal */
.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
	min-height: 100dvh;	/* sobrescribe solo si el navegador lo soporta */
	justify-content: center;
	padding: 40px 20px;
    text-align: center;
    padding: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1px;
}
.logo span {
	font-size: 2.5rem;
	margin-bottom: 5px;
}
.logo h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

/* Texto principal */
.content {
	margin-top: 100px;
}
.content h2 {
    font-size: 4rem;
    font-weight: 700;
    
	margin-bottom: 20px;
}
.content h3 {
	font-size: 1.5rem;
	font-weight: 700;	
}
.content p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Redes sociales */
.social {
	display: flex;
    gap: 20px;
	margin-top: 100px;
}

/* Botón */
.social a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;	
}

/* SVG */
.social svg {
    width: 40px;
    height: 40px;
    display: block;
	transition: transform 0.2s ease, fill 0.3s ease;	
}

/* 🔥 IMPORTANTE: aplicar fill al path */
.social svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

/* Hover */
.social a:hover {
    border-color: #00c3ff;
    box-shadow: 
        0 0 6px rgba(0,195,255,0.6),
        0 0 12px rgba(0,195,255,0.4);
}

.social a:hover svg path {
    fill: #00c3ff;
}

.social a:active svg {
    transform: scale(0.9);
}

.icon {
    font-size: 14px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
	.logo h1 {
		font-size: 2rem;
	}
    .content h2 {
        font-size: 2.5rem;
    }
    .content h3 {
        font-size: 1rem;
		font-weight: 400;
    }
}