.demo-1 {
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #fff;
	--color-link-hover: #ac1122;
	--color-info: #ac1122;
	--color-title: #fff;
	--color-subtitle: #fff;
	--color-subtitle-bg: rgba(172, 17, 34, 0.8);
}

/* Importar fuentes adicionales si es necesario */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

.content__title {
	font-family: 'Raleway', sans-serif;
	font-size: 12vw;
	font-weight: 600;
	color: transparent;
	background: linear-gradient(45deg, #E8E8E8, #D4D4D4, #BEBEBE, #A4A4A4);
	-webkit-background-clip: text;
	background-clip: text;
	text-align: center;
	margin: 0;
	pointer-events: none;
	text-transform: none;
	letter-spacing: 0.05em;
	animation: gradient 8s ease infinite;
	background-size: 300% 300%;
}

.content__subtitle {
	font-family: 'Raleway', sans-serif;
	font-size: 2em;
	font-weight: 400;
	background: none;
	color: #fff;
	padding: 0.45em 0.8em;
	line-height: 1.4;
	margin: 1rem 0;
	letter-spacing: 0.1em;
	text-transform: none;
	display: inline-block;
	border-radius: 4px;
	backdrop-filter: none;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.professional-tags span {
	font-family: 'Raleway', sans-serif;
	display: inline-block;
	padding: 0.5rem 1rem;
	margin: 0.5rem;
	border: none;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	transition: all 0.3s ease;
}

.professional-tags span:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.2);
}

/* Ajustes responsive */
@media screen and (max-width: 768px) {
	.content__title {
		font-size: 3rem;
		background-size: 200% 200%;
	}
	
	.content__subtitle {
		font-size: 1.2rem;
		padding: 0.35em 0.6em;
	}
}

@media screen and (min-width: 1600px) {
	.content__title {
		font-size: 6rem;
	}
}

/* Nuevos estilos personalizados */
.content__description {
    position: relative;
    text-align: center;
    margin-top: 2rem;
    color: #fff;
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content__bio {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.social-links {
    margin-top: 3rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.social-links a:hover {
    background: #fff;
    color: var(--color-bg);
    transform: translateY(-2px);
}

.contact-btn {
    background: var(--color-subtitle-bg);
    border-color: var(--color-subtitle-bg) !important;
}

.contact-btn:hover {
    background: #fff !important;
    border-color: #fff !important;
}

/* Secciones */
.hero-section,
.trajectory-section,
.skills-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.section__title {
    font-size: 2rem;
    color: var(--color-title);
    margin-bottom: 2rem;
    text-align: center;
}

/* Trayectoria */
.trajectory-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trajectory-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.trajectory-item h4 {
    color: var(--color-subtitle);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.trajectory-item p {
    color: #fff;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Habilidades */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h4 {
    color: var(--color-subtitle);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    color: #fff;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 1.1rem;
}

/* Ajustes responsive */
@media screen and (max-width: 768px) {
    .trajectory-content,
    .skills-grid {
        padding: 0 1rem;
    }

    .trajectory-item,
    .skill-category {
        padding: 1.5rem;
    }

    .trajectory-item h4,
    .skill-category h4 {
        font-size: 1.2rem;
    }

    .trajectory-item p,
    .skill-category li {
        font-size: 1rem;
    }
}