/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(135deg, #fef9f6 0%, #f5f1ed 100%);
            color: #2c2c2c;
            line-height: 1.7;
        }
 */
@font-face{
    font-family: 'Playfair_Display';
    src: url('../fuentes/Playfair_Display/static/PlayfairDisplay-MediumItalic.ttf');
}
        #quien_soy_main {
            font-family: 'Playfair_Display', serif; 
            background: linear-gradient(135deg, #fef9f6 0%, #f5f1ed 100%);
            color: #2c2c2c;
            line-height: 1.7;
        }

        .quien-soy-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Playfair_Display';
            font-size: 3.5rem;
            color: #8A0303;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .sangreViva {
            text-decoration: underline;
            text-decoration-color: #8A0303;
            /* El rojo solicitado */
            text-decoration-thickness: 2px;
            /* Grosor de la línea (puedes cambiarlo a 3px si lo quieres más grueso) */
            text-underline-offset: 14px;
            /* Desplaza la línea hacia abajo para que se vea elegante */
        }
        .top-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 20px;
            align-items: start;
        }

        .text-content {
            background: rgba(255, 255, 255, 0.7);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(169, 27, 61, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(194, 24, 91, 0.1);
        }

        .text-content p {
            font-family: 'Playfair_Display';
        }

        .text-content h3 {
            font-size: 2.8rem;
            color: #8A0303;
            margin-bottom: 30px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .middle-section {
            /* background: linear-gradient(135deg, rgba(194, 24, 91, 0.05) 0%, rgba(229, 115, 115, 0.05) 100%); */
            background-color: #ffffff;
            padding: 60px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(169, 27, 61, 0.1);
            border: 1px solid rgba(194, 24, 91, 0.1);
            margin-bottom: 20px;
        }

        .middle-content {
            max-width: none;
        }

        .middle-content p {
            font-family: 'Playfair_Display';
            font-size: 1.15rem;
            color: #444;
            margin-bottom: 30px;
            text-align: justify;
        }

        .middle-content strong {
            color: #8A0303;
            font-weight: 600;
        }

        .middle-content em {
            color: #C1121F;
            font-style: italic;
        }

        .text-content p {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 25px;
            text-align: justify;
        }

        .text-content strong {
            color: #c2185b;
            font-weight: 600;
        }

        .text-content em {
            color: #e57373;
            font-style: italic;
        }

        .photo-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .photo-container {
            position: relative;
            width: 350px;
            height: 350px;
            margin-bottom: 40px;
            perspective: 1000px;
        }

        .photo-flip {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .photo-flip.flipped {
            transform: rotateY(180deg);
        }

        .photo-front, .photo-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(169, 27, 61, 0.3);
            border: 5px solid rgba(194, 24, 91, 0.2);
        }

        .photo-back {
            transform: rotateY(180deg);
        }

        .photo-front img, .photo-back img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .photo-container:hover .photo-front img,
        .photo-container:hover .photo-back img {
            transform: scale(1.05);
        }

        .descriptive-phrases {
            text-align: center;
            max-width: 500px;
        }

        .phrase {
            display: inline;
            font-size: 1.1rem;
            color: #8A0303;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.6;
        }

        .phrase:not(.full-width):not(:last-child)::after {
            content: " | ";
            color: #e57373;
            font-weight: 300;
        }

        .phrase.full-width {
            display: block;
            margin-top: 8px;
        }

        .phrase.full-width::before {
            content: "| ";
            color: #e57373;
            font-weight: 300;
        }

        .bottom-section {
            /* background: linear-gradient(135deg, rgba(194, 24, 91, 0.05) 0%, rgba(229, 115, 115, 0.05) 100%); */
            background-color: #ffffff;
            padding: 60px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(169, 27, 61, 0.1);
            border: 1px solid rgba(194, 24, 91, 0.1);
        }

        .bottom-section h3 {
            font-size: 2.5rem;
            color: #8A0303;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 400;
            letter-spacing: 1px;
            font-family: 'Playfair_Display';
            font-style: italic;
        }

        .bottom-section p {
            font-size: 1.15rem;
            color: #444;
            margin-bottom: 30px;
            text-align: justify;
            font-family: 'Playfair_Display';
        }

        .bottom-section p strong {
            color: #a91b3d;
            font-family: 'Playfair_Display';
        }

        .areas-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .areas-list li {
            background: rgba(255, 255, 255, 0.8);
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid #C1121F;
            box-shadow: 0 10px 20px rgba(169, 27, 61, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            min-height: 180px;
        }

        .areas-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(169, 27, 61, 0.2);
        }

        .areas-list .area-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .areas-list .area-header::before {
            content: "✦";
            color: #C1121F;
            font-size: 1.2rem;
            margin-right: 10px;
        }

        .areas-list strong {
            color: #8A0303;
            font-size: 1.2rem;
            margin: 0;
        }

        .areas-list .area-description {
            flex-grow: 1;
            color: #444;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .quien-soy-section {
                padding: 50px 15px;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }

            .section-title .subtitle {
                font-size: 1.1rem;
            }

            .top-section {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 60px;
            }

            .middle-section {
                padding: 40px 30px;
                margin-bottom: 60px;
            }

            .middle-content p {
                font-size: 1rem;
            }

            .text-content {
                padding: 35px;
            }

            .text-content h3 {
                font-size: 2.2rem;
            }

            .text-content p {
                font-size: 1rem;
            }

            .photo-container {
                width: 280px;
                height: 280px;
                margin-bottom: 30px;
            }

            .phrase {
                font-size: 1rem;
            }

            .bottom-section {
                padding: 40px 30px;
            }

            .bottom-section h3 {
                font-size: 2rem;
            }

            .bottom-section p {
                font-size: 1rem;
            }

            .areas-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .areas-list li {
                padding: 20px;
                min-height: 160px;
            }

            .areas-list strong {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .middle-section {
                padding: 30px 20px;
                margin-bottom: 20px;
            }

            .text-content {
                padding: 25px;
            }

            .text-content h3 {
                font-size: 1.8rem;
            }

            .photo-container {
                width: 250px;
                height: 250px;
            }

            .bottom-section {
                padding: 30px 20px;
            }

            .areas-list {
                grid-template-columns: 1fr;
            }
        }