/*Versión Desktop + -> 1024px */ 
:root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
	--line-height-base: 1.6;
    --letter-spacing-base: 0.01em;
    --paragraph-spacing: 1.5em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 90px; /* Altura del header */
    padding-bottom: 0;
	font-family: var(--font-primary);
    font-size: 16px; /* Tamaño base óptimo */
    line-height: var(--line-height-base);
    letter-spacing: var(--letter-spacing-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.3; /* Mejor que 1.2 para encabezados */
    margin-bottom: 0.5em;
}

/* Barra superior */
.header-g {
    max-width: ;
}

header {
    background-color: #9B877E;
    padding: 20px 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
    box-sizing: border-box;
    /* QUITAR grid properties de aquí - solo para desktop */
}

/* Hamburguesa Elegante */
.hamburger {
    display: none; /* Oculto en desktop */
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger .line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.hamburger .line:nth-child(1) {
    top: 0;
}

.hamburger .line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger .line:nth-child(3) {
    bottom: 0;
}

/* Animación cuando está activo */
.hamburger.active .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menú Mobile */
.nav-menu {
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
	letter-spacing: 0.02em; /* Mejor espaciado */
}

nav ul li a:hover, nav ul li a.active {
    color: #010101;
}

/* ---------- Slider pagina inicial ---------- */
.slider-container {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    min-height: 400px;
    margin-top: 0;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* SLIDE BASE (INACTIVO) */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

/* IMAGEN DENTRO DEL SLIDE */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SLIDE ACTIVO - CON ZOOM CONTINUO Y SUAVE */
.slide.active {
    opacity: 1;
    animation: smoothZoom 5s linear forwards;
    z-index: 2;
}

/* SLIDE QUE ACABA DE SALIR - TRANSIÓN DE SALIDA */
.slide.exiting {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* KEYFRAMES PARA ZOOM SUAVE SIN RESET ABRUPTO */
@keyframes smoothZoom {
    0% {
        transform: scale(1);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* OVERLAY TEXT */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.overlay-text h1 {
    font-size: 66px;
    font-weight: 600;
    line-height: 1.3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
	letter-spacing: 0.02em; /* Un poco más espaciado para mayor claridad */
    text-rendering: optimizeLegibility;
    /* Añadir contorno sutil para mejor contraste */
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    paint-order: stroke fill;
}

/* Animación para el texto */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRADIENTE OVERLAY */
.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* RESPONSIVE PARA SLIDER */
@media (max-width: 992px) {
    .slider-container {
        height: 60vh;
    }
    
    .overlay-text h1 {
        font-size: 48px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 50vh;
    }
    
    .overlay-text h1 {
        font-size: 36px;
        line-height: 1.2em;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 40vh;
    }
    
    .overlay-text h1 {
        font-size: 28px;
    }
}

/* ---------- Sección general ---------- */
.content-wrapper {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/*Sección dos columnas*/
.two-column-section {
    padding: 40px 0;
    background-color: #fff;
}

/* Columna izquierda (1/3) */
.column-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 28px 0;
}

.portrait-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Columna derecha (2/3) */
.column-right {
    flex: 2;
    padding: 20px 20px;
    text-align: left;
    max-width:750px;
}

.column-right p {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.8 !important;
    color: #555;
    margin-bottom: var(--paragraph-spacing);
    text-align: justify;
    text-align-last: left;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: auto;
    word-spacing: 0.05em;
	letter-spacing: 0.01em; /* Tracking ligero */
    max-width: 70ch;
    -webkit-hyphens: none;
    -ms-hyphens: none;
	font-weight: 400;
}

.column-right h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.title-separator-1 {
    width: 225px;
    height: 2px;
    background-color: #9B877E;
    margin: 0 0 30px 0;
}

.title-separator-project {
    width: 200px;
    height: 2px;
    background-color: #9B877E;
    margin: 5px auto 30px auto;
}

.title-separator {
    width: 225px;
    height: 2px;
    background-color: #9B877E;
    margin: 0 auto 30px auto;
}

.column-left {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s ease-out forwards;
}

.column-right {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s ease-out forwards 0.2s;
}

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* ---------- acerca-de-nosotros ---------- */
.about-hero {
    position: relative;
    width: 100%;
    height: 350px;
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    text-align: center;
    color: #101218;
    padding: 20px;
    padding-top: 50px;
    max-width: 1200px;
    width: 90%;
}

.about-overlay h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 15px;
}

.separator-line-about {
    width: 300px;
    height: 2px;
    background-color: #9B877E;
    margin: 0 auto;
}

.separator-line-contact {
    width: 20%;
    height: 1.5px;
    background-color: #9B877E;
    margin: 0 auto;
}

/* Sección de tres columnas */
.info-section {
    background-color: #9B877E;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.info-section .content-wrapper {
    display: flex;
    justify-content: space-between;
}

.social-column, .logo-column, .email-column {
    flex: 1;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.logo-column img {
    max-height: 50px;
}

.email-column h2 a {
    color: white;
    text-decoration: none;
    font-weight: 600;
	letter-spacing: 0.02em;
    line-height: 1.4;
}

/* ---------- Estilos base para la sección proyectos ---------- */
.space-section {
    margin: 0 auto;
    display: flex;
    padding: 10px;
    background-color: #fff;
}

.projects-section {
    padding: 10px 0 0px 0;
    background-color: #fff;
}

.projects-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

/* Diseño de 2 columnas en desktop */
.project-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: auto;
}

.project-image-column {
    flex: 1;
    padding: 0 20px;
}

.project-text-column {
    flex: 1;
    padding: 30px 20px;
}

/* Estilo de la imagen destacada */
.featured-project {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    will-change: transform;
}

/* Estilos de texto */
.project-text-column h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.3em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.project-text-column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 200;
    color: #54595F;
    margin-bottom: 15px;
    text-align: center;
}

.project-text-column p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    text-align-last: center;
}

/* Línea separadora */
.projects-divider {
    width: 80%;
    height: 1.5px;
    background-color: #9B877E;
    margin: 30px auto 40px;
    position: relative;
    z-index:1;
}

/* Línea separadora responsive */
.projects-divider-r {
    width: 90%;
    height: 1.5px;
    background-color: #9B877E;
    margin: 20px auto 10px;
    position: relative;
    z-index:100;
	display: none;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Asignación de animaciones */
.project-image-column {
    animation: fadeInLeft 1s ease-out forwards;
    padding-bottom: 10px;
}

.project-text-column {
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

/* Efecto hover para la imagen */
.featured-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
}

/* Estilos base proyectos slider*/
.projects-showcase {
    padding: 100px 0;
    background-color: #fff;
}

/* --------- Footer --------- */
footer {
    background-color: #5c4e47;
    color: rgba(255, 255, 255, 0.9); /* Blanco ligeramente atenuado */
    text-align: center;
    padding: 30px;
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.8;
	letter-spacing: 0.01em;
}

.copyright-text {
    font-family: var(--font-secondary);
	font-weight: 400;
    line-height: 1.8; /* Más espacio entre líneas */
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9); /* Blanco ligeramente atenuado */
}

/* ================================
   RESPONSIVE - A PARTIR DE 1024px
   ================================ */

@media (max-width: 1024px) {
    /* HEADER - SOLUCIÓN CON POSITION ABSOLUTE PRECISA */
    header {
        padding: 20px 5% !important; /* Forzar padding */
        display: block !important; /* Quitar grid/flex del header principal */
        position: relative; /* Para hijos absolute */
        height: 90px;
        min-height: 90px;
        box-sizing: border-box;
        background-color: #9B877E; /* Asegurar color */
    }
    
    /* ELIMINAR ESPACIO BLANCO ARRIBA DEL HEADER */
    body {
        padding-top: 0px !important; /* Forzar padding-top */
    }
    
    /* LOGO - POSICIÓN 25% DESDE LA IZQUIERDA */
    .logo {
        position: absolute !important;
        left: 25% !important; /* Exactamente 25% del ancho */
        top: 50% !important;
        transform: translate(-50%, -50%) !important; /* Centrar en el punto 25% */
        z-index: 1002;
        margin: 0 !important; /* Eliminar márgenes anteriores */
    }
    
    .logo img {
        height: 45px;
        transition: all 0.3s ease;
    }
    
    /* HAMBURGUESA - POSICIÓN 75% DESDE LA IZQUIERDA */
    .hamburger {
        display: block !important;
        position: absolute !important;
        left: 75% !important; /* Exactamente 75% del ancho */
        top: 50% !important;
        transform: translate(-50%, -50%) !important; /* Centrar en el punto 75% */
        cursor: pointer;
        width: 30px;
        height: 20px;
        z-index: 1002;
        margin: 0 !important; /* Eliminar márgenes anteriores */
    }
    
    /* OCULTAR MENÚ DESKTOP */
    nav:not(.nav-menu) {
        display: none !important;
    }
    
    /* MENÚ MOBILE - ESTILOS FIXED */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #9B877E;
        padding: 120px 30px 30px; /* Más padding-top */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* LISTA DEL MENÚ MOBILE */
    .nav-menu ul {
        flex-direction: column;
        margin-top: 0;
    }
    
    .nav-menu ul li {
        margin: 20px 0;
        margin-left: 0;
    }
    
    .nav-menu ul li a {
        font-size: 18px;
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu ul li a:hover {
        color: #010101;
        padding-left: 10px;
    }
	
	/* Texto overlay */
	.overlay-text {
        position: absolute;
        top: auto; /* Elimina el posicionamiento superior */
        bottom: 10%; /* Exactamente a 1/3 desde abajo */
        left: 50%;
        transform: translateX(-50%); /* Solo centra horizontalmente */
        text-align: center;
        color: white;
        z-index: 10;
        width: 100%;
        pointer-events: none;
    }
    
	    /* ABOUT SECTION */
    .about-hero {
        height: 250px;
        margin-top: 0px;
        padding-top: 0px;
        box-sizing: border-box;
    }
    
    .about-overlay {
        transform: none;
        padding-top: 35px;
    }
    
    .about-overlay h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }
    
	.separator-line-about {
        width: 27%;
    }
	
    .separator-line-contact {
        width: 30%;
    }
    
    .space-section {
        padding: 35px;
    }
    
	.title-separator-project {
		width: 200px;
		height: 2px;
		background-color: #9B877E;
		margin: 5px auto 30px auto;
	}
	
	.title-separator-1 {
		width: 195px;
		height: 2px;
		background-color: #9B877E;
	}
	
	.projects-divider-r {
        display: block;  /* Muestra la línea */
    }
	
    /* CONTENT WRAPPER */
    .content-wrapper {
        gap: 30px;
    }
    
    .column-right h2 {
        font-size: 28px;
    }
    
    .project-row {
        gap: 40px;
    }
    
    .projects-divider {
        margin-top: 10px;
		height: 2px;
		margin-bottom: 40px;
        width: 90%;
    }
	
}

@media (min-width: 769px) {
    .column-right p {
        text-align: justify;
        text-align-last: left;
    }
}

/* ================================
   RESPONSIVE -  768px a 481px
   ================================ */

@media (max-width: 768px) {
    /* HEADER MÓVIL */
    header {
        padding: 20px 20px !important;
        height: 80px;
        min-height: 80px;
    }
    
    body {
        /*padding-top: 80px !important;*/
    }
    
    /* LOGO - AJUSTE PARA MÓVILES */
    .logo {
        left: 30% !important; /* Un poco más centrado */
        transform: translate(-50%, -50%) !important;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* HAMBURGUESA - AJUSTE PARA MÓVILES */
    .hamburger {
        left: 70% !important; /* Un poco más centrado */
        transform: translate(-50%, -50%) !important;
        width: 28px;
        height: 20px;
    }
    
    .hamburger .line {
        height: 2px;
    }
    
    /* MENÚ MÓVIL MÁS ANCHO */
    .nav-menu {
        width: 100%;
        max-width: 320px;
        padding: 100px 25px 25px;
    }
    
    .nav-menu ul li a {
        font-size: 17px;
        padding: 10px 0;
    }
    
	/* Texto overlay */
	.overlay-text {
        bottom: 10%; /* Un poco más flexible en tablets */
        padding: 0 15px;
    }
	
    /* CONTENIDO RESPONSIVE */
    .content-wrapper {
        flex-direction: column;
    }
    
    .column-left, .column-right {
        flex: none;
        width: 100%;
    }
    
    .portrait-img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .column-right {
        text-align: center;
        padding: 30px 0 0 0;
    }
    
    .column-right h2,
    .column-right p {
        text-align: center;
    }
    
    .column-right p {
        text-align: center;
        text-align-last: center;
        text-justify: inter-word;
    }
    
	.title-separator-project {
		width: 155px;
		height: 1.5px;
		background-color: #9B877E;
		margin: 5px auto 30px auto;
	}
	
	.title-separator-1 {
		width: 190px;
		height: 1.5px;
		background-color: #9B877E;
		margin: 0 auto 25px auto;
	}
	
    .title-separator {
		width: 200px;
		height: 1.5px;
        margin: 0 auto 25px auto;
    }
    
    .overlay-text h1 {
        font-size: 32px;
    }
    
    .info-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-section .content-wrapper {
        flex-direction: column;
        gap: 30px;
        width: 95%;
    }
    
    .logo-column img {
        margin: 0 auto;
        display: block;
    }
    
    /* ABOUT SECTION */
    .about-hero {
        height: 250px;
        margin-top: 0px;
        padding-top: 15px;
        box-sizing: border-box;
    }
    
    .about-overlay {
        transform: none;
        padding-top: 20px;
    }
    
    .about-overlay h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
     
	.separator-line-about {
        width: 33%;
    }
	
    .separator-line-contact {
        width: 30%;
    }
    
    .space-section {
        padding: 35px;
    }
	
	.two-column-section {
		padding: 30px 0;
	}
    
	.projects-divider-r {
        display: block;  /* Muestra la línea */
    }
	
    /* PROYECTOS */
    .project-row {
        flex-direction: column;
        gap: 30px;
    }
	
    .project-image-column {
        width: 100%;
    }
    
    .featured-project {
        border-radius: 0;
        box-shadow: none;
    }
    
    .projects-section {
        padding: 20px 0 5px;
        margin-top: 10px;
    }
    
    .project-text-column {
        padding: 0 15px;
        text-align: center;
    }
    
	.project-text-column h2 {
		font-size: 40px;
        padding: 0 15px;
        text-align: center;
    }
	
    .project-text-column p {
        text-align: center;
        text-align-last: center;
    }
    
    .projects-divider {
        width: 90%;
        margin-top: 30px;
    }
}

/* Para landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        padding-top: 0px;
        overflow-y: auto;
        max-height: 100vh;
    }
    
    .nav-menu ul li {
        margin: 12px 0;
    }
}

/* ================================
   RESPONSIVE -  480px a 0px
   ================================ */

@media (max-width: 480px) {
    /* HEADER MÓVIL PEQUEÑO */
    header {
        padding: 15px 15px !important;
        height: 70px;
        min-height: 70px;
    }
    
    body {
        /*padding-top: 70px !important;*/
    }
	
	@font-face {
		font-family: 'Poppins';
		font-display: swap; /* Evitar flash de texto invisible */
	}

	@font-face {
		font-family: 'Open Sans';
		font-display: swap;
	}
	
	p {
		overflow-wrap: break-word;
		word-wrap: break-word;
		hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
	}
    
    .logo {
        left: 35% !important;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hamburger {
        left: 65% !important;
        width: 26px;
        height: 18px;
    }
    
    .nav-menu {
        padding: 90px 20px 20px;
    }
    
    .nav-menu ul li a {
        font-size: 16px;
    }
	
	/* Texto overlay */
	.overlay-text {
		font-size: 14px;
		line-height: 1.2;
		letter-spacing: 0.005em;
        bottom: 10%; /* Ajuste para móviles pequeños */
    }
    
    .overlay-text h1 {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Mejor contraste */
    }
    
    /* ABOUT */
    .about-hero {
        height: 220px;
        padding-top: 15px;
    }
    
    .about-overlay h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
	.separator-line-about  {
        width: 40%;
        margin-top: 10px;
    }
	
    .separator-line-contact {
        width: 40%;
		height: 1.3px;
        margin-top: 10px;
    }
    
    /* GENERAL */
    .two-column-section {
        padding: 20px 0;
    }
    
    .column-right h2 {
        font-size: 24px;
		line-height: 1.3;
    }
    
    .column-right p {
        font-size: 14px;
        line-height: 1.6 !important;
        hyphens: auto;
    }
    
    .portrait-img {
        max-width: 100%;
    }
    
    .projects-section {
        padding: 20px 0 0px;
    }
	
	.projects-divider {
        width: 90%;
        margin: 25px auto 20px;
    }
	
	.title-separator-project {
		width: 105px;
		height: 1.3px;
		background-color: #9B877E;
		margin: 5px auto 30px auto;
	}
	
	.title-separator-1 {
		width: 165px;
		height: 1.3px;
		background-color: #9B877E;
		margin: 0 auto 25px auto;
	}
	
	.title-separator {
		width: 140px;
		height: 1.3px;
        margin: 0 auto 25px auto;
    }
    
    .project-text-column h2 {
        font-size: 28px;
    }
    
    .project-text-column h3 {
        font-size: 20px;
    }
    
    .project-text-column p {
        font-size: 15px;
    }
	
	.projects-divider-r {
        display: block;  /* Muestra la línea */
    }
    
}
