.diegoFlorioSection {
    position: relative;
    min-height: 45vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}
.textureBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
        background-image: url(assets/imgs/textura.png);
    opacity: 0.3;
    z-index: 1;
}
.contentContainer {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}
.textContent {
    padding-right: 40px;
}
.speakerName {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}
.speakerName::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffc107, #ff8f00);
    border-radius: 2px;
}
.speakerDescription {
    font-weight: 500;
    font-size: 1.245rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 25px;
}
.talkToMe {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    position: relative;
    min-width: 320px;
    text-align: center;
}
.talkToMe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ff8f00 0%, #ffc107 100%);
    letter-spacing: 3px;
}
.talkToMe:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
    transition: all 0.1s ease;
}
.achievementsList {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: end;
    align-items: end;
}

.achievementItem {
    background: linear-gradient(135deg, #FFE8A3, #E09200);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 30px;
    border-radius: 8px;
    border: none;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 146, 0, 0.3);
}

.achievementItem:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 146, 0, 0.4);
}
.photoContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.speakerPhoto {
    width: 400px;
    height: 500px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.speakerPhoto:hover {
    transform: scale(1.02);
    border-color: rgba(255, 193, 7, 0.5);
}
.photoGlow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(255, 143, 0, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .contentContainer {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .textContent {
        padding-right: 0;
    }
    .speakerName {
        font-size: 2.4rem;
    }
    .talkToMe {
        font-size: 1.1rem;
        padding: 18px 50px;
    }
    .achievementsList {
        justify-content: center;
    }
    .speakerPhoto {
        width: 400px;
        height: 400px;
    }
    .photoGlow {
        width: 350px;
        height: 350px;
    }
}
@media (max-width: 768px) {
    .diegoFlorioSection {
        padding: 60px 15px;
    }
    .textureBackground {
        width: 100%;
        opacity: 0.15;
    }
    .speakerName {
        font-size: 2rem;
        text-align: left;
    }
    .speakerDescription {
        font-size: 1rem;
        text-align: left;
    }
    .talkToMe {
        font-size: 1rem;
        padding: 16px 40px;
    }
    .achievementsList {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .achievementItem {
        font-size: 0.9rem;
        padding: 15px 25px;
        width: 100%;
        text-align: center;
    }
    .speakerPhoto {
        width: 320px;
        height: 320px;
    }
    .photoGlow {
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 480px) {
    .speakerName {
        font-size: 1.8rem;
    }
    .speakerDescription {
        font-size: 0.95rem;
    }
    .talkToMe {
        width: 80%;
        text-align: center;
        padding: 18px 20px;
    }
    .achievementItem {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
    .speakerPhoto {
        width: 280px;
        height: 280px;
    }
    .photoGlow {
        width: 280px;
        height: 320px;
    }
}
@media (max-width: 360px) {
    .speakerName {
        font-size: 1.6rem;
    }
    .speakerPhoto {
        width: 200px;
        height: 200px;
    }
    .photoGlow {
        width: 240px;
        height: 240px;
    }
}
.geometricAccent {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 193, 7, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    z-index: 1;
    animation: rotate 30s linear infinite;
}
.backgroundElements::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 143, 0, 0.02) 0%, transparent 25%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}
.backgroundElements::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}