:root {
    --color-gold: #ffda01; /* Color amarillo/dorado */
    --color-dark: #000000; /* Fondo oscuro casi negro */
    --color-light: #a8a8a7;
    --font-main: system-ui, -apple-system, sans-serif;
}

@font-face {
    font-family: "GothamBook";
    src: url("../fonts/GothamBook.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "GothamMedium";
    src: url("../fonts/GothamMedium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "SpaceMono-Bold";
    src: url("../fonts/SpaceMono-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
/*TEXTOS*/

.texto-book {
    font-family: "GothamBook" !important;
}
.texto-medium {
    font-family: "GothamMedium" !important;
}
.texto-mono {
    font-family: "SpaceMono-Bold" !important;
}
.gold-text {
    color: var(--color-gold) !important;
}
.light-text {
    color: var(--color-light) !important;
}
strong {
    font-weight: 900 !important;
}

.line-breaker {
    width: 100%;
    height: 5px;
    background-color: var(--color-gold);
    margin: 4rem 0;
    border: #ffda01 solid 1px;
    border-radius: 3px;
}
.line-breaker-vertical {
    border-right: 5px solid var(--color-gold); /* Grosor y color */
    height: auto; /* Se estira automáticamente por el flexbox padre */
}

.texto-hueco {
    font-weight: bold;
    color: var(--color-dark);
    -webkit-text-stroke: 1px var(--color-gold);
}

body {
    font-family: "GothamBook";
    background-color: var(--color-dark);
    line-height: 1.9;
}

body,
html {
    overflow-x: hidden;
    width: 100%;
}
.textos-inicio {
    width: 100%;
    font-size: 2.4rem;
    color: white;
}

/* SECCION PERSONA*/
.section-persona {
    margin: 5rem 2rem;
}
.persona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
}
.imagen-persona {
    justify-self: center;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.imagen-persona-dos {
    justify-self: center;
    width: 100%;
    height: 60%;
    object-fit: contain;
}

.texto-persona {
    padding-left: 1.6rem;
    color: white;
}

.nombre-persona {
    font-size: 2.5rem;
    font-weight: bold;
}

.titulo-persona {
    font-size: 1.6rem;
    line-height: normal;
    letter-spacing: 3px;
}

.texto-historia {
    margin-top: 1.2rem;
    line-height: 1.45;
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    text-align: justify;
}

.texto-pensamiento {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 3px;
    text-align: justify;
    font-weight: 300;
}

.texto-trayectoria {
    margin-top: 1.2rem;
    line-height: 1.2;
    font-size: 1.7rem;
    letter-spacing: 1.2px;
    text-align: justify;
}

.card {
    background-color: #fff;
    width: 100%;
    max-width: 90%;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-left: 2.5rem;
}

.card-image img {
    width: 100%;
    height: 60%;
    display: block;
}

.card-content {
    font-family: "GothamMedium";
    background-color: var(--color-gold);
    color: #000000;
    padding: 30px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 600;
}

/* SECCION CONTACTO*/

.section-contacto {
    position: relative;
    display: flex;
    height: 140vh;
    background-color: #1a202c;
    background-image: url("../image/contacto.png");
    background-size: cover;
    background-position: center;

    color: white;
}

.contacto-form {
    position: absolute;
    bottom: 5%;
    left: 10%;
    width: 80%;
    border: var(--color-gold) solid 4px;
    border-radius: 60px;
    margin-top: 10rem;
}

.titulo-contacto {
    font-size: 2.5rem;
    text-align: start;
    color: var(--color-dark);
    background-color: var(--color-gold);
    width: fit-content;
    margin-top: 4rem;
    padding-left: 1rem;
    padding-right: 0.5rem;
}
.texto-contacto {
    font-size: 2.5rem;
    text-align: center;
    text-shadow: #000000 2px 2px 4px;
    letter-spacing: 2px;
    font-weight: 500;
}

form {
    gap: 1.5rem;
    padding: 2rem 4rem 1rem 4rem;
}

label {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

input,
textarea {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid var(--color-gold);
    width: 45%;
    color: white;
    font-size: 1.8rem;
    height: fit-content;
}
textarea {
    height: 3.3rem;
    overflow: hidden;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: var(--color-gold);
    font-size: 1.8rem;
}

.btn-send {
    display: flex;
    justify-content: end;
    margin-top: 2rem;
    padding: 0 1rem;
    background-color: var(--color-gold);
    color: var(--color-dark);
    font-size: 1.8rem;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: 5px solid var(--color-gold);
}

.group-input {
    display: flex;
}
.btn-container {
    display: flex;
    justify-content: end;
}

.social-container {
    display: flex;
    justify-content: center;
    width: 60%;
    margin-top: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}
.titulo-social {
    color: var(--color-gold);
    font-family: "SpaceMono-Bold";
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.social-icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffff00;
    color: #ffff00;
    text-decoration: none;
    padding-top: 0.6rem;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background-color: #ffff00;
    color: #000000;
    transform: translateY(-5px);
}
@media (max-width: 767px) {
    .textos-inicio {
        font-size: 2.2rem !important;
    }

    .texto-persona {
        font-size: 2.2rem !important;
    }
    .texto-trayectoria {
        font-size: 1.8rem;
    }
    .texto-contacto {
        font-size: 1rem;
    }
    .titulo-contacto {
        font-size: 1.8rem;
    }

    form {
        padding: 0;
    }
    input,
    textarea {
        padding-top: 1rem;
        font-size: 1rem;
        width: 100%;
    }
    textarea {
        height: 3.3rem;
    }

    input::placeholder,
    textarea::placeholder {
        font-size: 1.8rem;
    }

    .group-input {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .textos-inicio {
        font-size: 2.6rem !important;
    }

    .texto-persona {
        font-size: 2.6rem !important;
    }
    .texto-trayectoria {
        font-size: 1.9rem;
    }
}

@media (min-width: 1400px) {
    .textos-inicio {
        font-size: 1.8rem !important;
    }

    .texto-persona {
        font-size: 1.8rem !important;
    }
    .texto-trayectoria {
        font-size: 1.9rem;
    }
    .card-content {
        font-size: 2rem;
    }
}
@media (min-width: 1800px) {
    .textos-inicio {
        font-size: 2.2rem !important;
    }
    .texto-persona {
        font-size: 2.2rem !important;
    }
    .texto-trayectoria {
        font-size: 2.15rem;
    }
    .card-content {
        font-size: 2rem;
    }
}
