/* ====================================
   VARIABLES Y ESTILOS BASE
   ==================================== */

:root{
    --cyan100: #DCF8F8;
    --cyan200: #5FE5E5;
    --cyan300: #35D0D0;
    --cyan400: #14BCBC;
    --cyan500: #00A2A2;
    --cyan600: #0B8787;
    --cyan700: #137070;
    --cyan800: #125454;
    --cyan900: #0E3030;
    --green100: #ceffec;
    --green200: #9dfdd8;
    --green300: #61fcc0;
    --green400: #27f3a5;
    --green500: #0cfa9f;
    --green600: #03c97d;
    --green700: #02915a;
    --green800: #005534;
    --green900: #001d12;
    --yellow100: #EFEFE0;
    --yellow200: #F4FF71;
    --yellow300: #F1FF48;
    --yellow400: #EEFF22;
    --yellow500: #FFD700;
    --yellow600: #CFDF13;
    --yellow700: #B8C51E;
    --yellow800: #848D1D;
    --yellow900: #5B611B;
    --DarkYellow: #848D1D;
    --gray100: #D6EEEE;
    --gray200: #CBDEDE;
    --gray300: #B1C5C5;
    --gray400: #96A5A5;
    --gray500: #758484;
    --gray600: #5B6C6C;
    --gray700: #435555;
    --gray800: #263636;
    --gray900: #141F1F;
    --white: #F2F9F8;
    --black: #010009;
    --black50: #0007057a;
    --text-color: bisque;
    --bg-color: rgba(34, 7, 82, 0.61);
    --bg-card-color: #13707080;
    --border-radius: 0.8rem;
    --transition: 0.6s ease-in-out;
    --colorTexts: whitesmoke;
}

*,
::before,
::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--cyan100);
    color: var(--gray900);
    transition: var(--transition);
    font-family: 'Manrope', sans-serif;
}

/* Tipografía */
h1 {
    font-size: 42px;
    margin-bottom: 1.2em;
    text-align: center;
    margin-top: 2.6em;
    color: var(--cyan100);
    font-family: 'Labrada', sans-serif;
    text-shadow: 1px 1px 2px var(--black), 0 2px 25px var(--cyan900), 0 0 5px var(--gray900);
}

h2 {
    font-size: 32px;
    margin-bottom: 1.2em;
    text-align: center;
    margin-top: 1em;
    color: var(--cyan500);
    font-family: 'Labrada', sans-serif;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    margin-top: 1.2em;
    color: var(--gray900);
    font-family: 'Labrada', sans-serif;
}

h3:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.5);
    color: var(--cyan400);
}

p {
    font-family: 'Manrope', sans-serif;
    margin-top: 1rem;
}

a {
    color: var(--DarkYellow);
    text-decoration: none;
}

a:hover {
    filter: drop-shadow(13px 13px 20px rgb(215, 218, 210));
    color: rgb(115, 235, 91);
}

/* ====================================
   HEADER / HERO SECTION
   ==================================== */

.hero-mirazo {
    min-height: 100vh;
    width: 100%;
    background-color: var(--black);
    background-image: 
        radial-gradient(circle at 30% 50%, var(--green900) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--green800) 0%, transparent 40%),
        repeating-radial-gradient(circle at 20% 30%, rgba(0,255,150,0.02) 0px, transparent 2px, rgba(0,0,0,0.5) 3px, transparent 4px),
        repeating-radial-gradient(circle at 20% 30%, var(--green800) 0px, transparent 2px, rgba(0,0,0,0.8) 3px, transparent 4px),
        repeating-radial-gradient(circle at 80% 70%, var(--black) 0px, transparent 1px, var(--green900) 2px, transparent 3px);
    background-blend-mode: overlay, normal, normal, normal;
    background-size: cover, cover, cover, cover, cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    border-bottom: 4px solid var(--green600);
}

.hero-mirazo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
    
}

.hero-content {
    color: var(--white);
    text-align: left;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Labrada', sans-serif;
    color: var(--white);
    text-shadow: 
        0 0 15px var(--green500),
        0 0 30px var(--green600),
        2px 2px 4px var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    margin-top: 0;
    animation: fadeInLeft 1s ease-out;
    line-height: 1.2;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: var(--green300);
    text-shadow: 1px 1px 3px var(--black);
    margin-bottom: 2.5rem;
    margin-top: 0;
    animation: fadeInLeft 1s ease-out 0.2s backwards;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInLeft 1s ease-out 0.4s backwards;
}

/* Estilos de botones */
 .button-primary,
.button-ghost {
    padding: 15px 35px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    cursor: pointer;
}

.button-primary {
    background-color: var(--green600);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(3, 201, 125, 0.3);
}

.hero-buttons .button-primary:hover {
    background-color: var(--green500);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px -3px var(--green700);
    color: var(--black);
    border: none;
}

.hero-buttons .button-primary i {
    font-size: 1.3rem;
}

.hero-buttons .button-ghost {
    background-color: transparent;
    border: 2px solid var(--green500);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.hero-buttons .button-ghost:hover {
    background-color: var(--green500);
    color: var(--black);
    transform: translateY(-3px) scale(1.05);
    border: 2px solid var(--green500);
    box-shadow: 0 10px 25px -3px var(--green700);
}

/* Logo 3D */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s backwards;
    perspective: 2000px;
}

.logo-3d {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateLogo 15s infinite linear;
    cursor: default;
    transition: animation 0.3s ease;
}

.logo-3d-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(12, 250, 159, 0.3));
    transform: translateZ(20px);
    transition: all 0.3s ease;
}

.logo-3d::before,
.logo-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--green500), transparent);
    opacity: 0.2;
    transform: translateZ(-10px);
    filter: blur(5px);
}

.logo-3d::after {
    background: linear-gradient(225deg, var(--cyan500), transparent);
    transform: translateZ(-20px);
    opacity: 0.1;
}

.logo-3d:hover {
    animation-play-state: paused;
}

.logo-3d:hover .logo-3d-image {
    filter: drop-shadow(0 0 30px var(--green400));
    transform: translateZ(30px) scale(1.05);
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@media screen and (max-width: 768px) {
    .hero-container {
        display: flex; 
        flex-direction: column-reverse; 
        gap: 2rem;
    }
}

/* ====================================
   SECCIÓN DE SERVICIOS
   ==================================== */

.services-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-color: var(--black);
    overflow: hidden;
}

.services-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 162, 162, 0.4) 50%,
        rgba(12, 250, 159, 0.2) 100%
    );
    z-index: 2;
}

.services-content-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 3;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    color: var(--white);
}

/* Encabezado de servicios */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-family: 'Labrada', sans-serif;
    color: var(--white);
    text-shadow: 0 0 20px var(--green500);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.services-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray100);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Grid de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(12, 250, 159, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(12, 250, 159, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--green500);
    box-shadow: 0 20px 40px rgba(12, 250, 159, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-highlight {
    border: 2px solid var(--green500);
    background: rgba(0, 0, 0, 0.8);
    position: relative;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green500);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--green500);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--green400);
}

.service-title {
    font-size: 1.4rem;
    font-family: 'Labrada', sans-serif;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray200);
    font-family: 'Manrope', sans-serif;
}

.service-description strong {
    color: var(--green500);
}

/* CTA dentro de servicios */
.services-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid var(--green500);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.services-cta-text {
    font-size: 2rem;
    font-family: 'Labrada', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 15px var(--green500);
}

/* ====================================
   SIGUIENTE SECCIÓN (placeholder)
   ==================================== */

.next-section {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--black), var(--cyan900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 4rem 2rem;
}

.next-content {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.next-content h2 {
    font-size: 3rem;
    color: var(--green500);
    margin-bottom: 1rem;
}

.next-content p {
    font-size: 1.3rem;
    color: var(--gray200);
}

/* ====================================
   ANIMACIONES
   ==================================== */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rotateLogo {
    0% { transform: rotateY(0deg) rotateX(5deg); }
    100% { transform: rotateY(360deg) rotateX(5deg); }
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .logo-3d {
        max-width: 350px;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-mirazo {
        padding: 3rem 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-title {
        text-align: center;
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-logo-container {
        animation: fadeInUp 1s ease-out 0.2s backwards;
    }
    
    .logo-3d {
        max-width: 280px;
    }
    
    .services-content-container {
        padding: 2rem 1rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-cta-text {
        font-size: 1.5rem;
    }
    
    .services-cta {
        padding: 2rem 1rem;
    }
    
    .next-content h2 {
        font-size: 2.2rem;
    }
    
    .next-content p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
     .button-primary,
     .button-ghost {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }
    
    .logo-3d {
        max-width: 220px;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* ====================================
   SECCIÓN SOCIAL / ENLACES EXTERNOS
   ==================================== */

.social-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--cyan900) 50%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    overflow: hidden;
    margin: 0;
}

/* Efecto de fondo con partículas (opcional) */
.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(12, 250, 159, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 162, 162, 0.05) 0%, transparent 30%),
        repeating-linear-gradient(45deg, 
            transparent 0px, 
            transparent 10px, 
            rgba(12, 250, 159, 0.02) 10px, 
            transparent 20px
        );
    pointer-events: none;
}

.social-container {
    
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* CARDS */
.card{
    padding: 1em;
    background-color: var(--black);
    border-radius: var(--border-radius);
    border: 1px solid;
    color: whitesmoke;
    background: -webkit-linear-gradient(to right, var(--cyan900), var(--black));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, var(--cyan900), var(--black));
}


/* Encabezado */
.social-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-title {
    font-size: 3rem;
    font-family: 'Labrada', sans-serif;
    color: var(--white);
    text-shadow: 0 0 20px var(--green500);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    
}

.social-subtitle {
    font-size: 1.2rem;
    color: var(--gray200);
    font-family: 'Manrope', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Tarjeta de perfil */
.social-profile-card {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto 1fr;
    width: fit-content;
    gap: 3rem;
    background: var(--black);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(12, 250, 159, 0.2);
    border-radius: 30px;
    padding: 2.5rem;
    margin: 3rem auto;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    transition: all 0.3s ease;
}

.social-profile-card:hover {
    border-color: var(--green500);
    box-shadow: 0 20px 40px rgba(12, 250, 159, 0.2);
    transform: translateY(-5px);
}

/* Contenedor de imagen con efecto glow */
.profile-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.profile-image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--green500), var(--cyan500));
    border-radius: 40px;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
    filter: blur(15px);
}

.social-profile-card:hover .profile-image-glow {
    opacity: 0.5;
    animation: glowPulse 2s infinite;
}

.social-profile-card:hover .profile-image {
    transform: scale(1.02);
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Información del perfil */
.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

.profile-name {
    font-size: 2.5rem;
    font-family: 'Labrada', sans-serif;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--green500);
}

.profile-role {
    font-size: 1.2rem;
    color: var(--green400);
    font-family: 'Manrope', sans-serif;
    margin-bottom: 2rem;
}

/* Grid de redes sociales */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.social-link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(12, 250, 159, 0.2);
    border-radius: 15px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link-card:hover::before {
    left: 100%;
}

/* Colores específicos para cada red */
.social-link-card.github:hover {
    border-color: #333;
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.5);
}

.social-link-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.5);
}

.social-link-card.linkedin:hover {
    border-color: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.5);
}

.social-link-card.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.5);
}

.social-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    z-index: 2;
}

.social-link-card:hover .social-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.social-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link-card:hover .social-icon-wrapper i {
    color: var(--green400);
}

.social-link-text {
    color: var(--gray200);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 2;
}

.social-link-card:hover .social-link-text {
    color: var(--white);
}

.social-link-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--green500), transparent);
    opacity: 0.1;
    transition: width 0.3s ease;
    z-index: 1;
}

.social-link-card:hover .social-link-hover-bg {
    width: 100%;
}

/* Separador decorativo */
.social-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.divider-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 250, 159, 0.1);
    border: 2px solid var(--green500);
    border-radius: 50%;
    color: var(--green500);
    font-size: 1.5rem;
    animation: rotateIcon 10s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mensaje de contacto */
.social-message {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.message-text {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Labrada', sans-serif;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--green500);
}

.message-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--green600), var(--cyan600));
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(3, 201, 125, 0.3);
    margin: 2.5rem auto;
}

.message-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(12, 250, 159, 0.5);
}

.message-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.message-button:hover i {
    transform: translateX(5px);
}

/* ====================================
   RESPONSIVE DE LA SECCIÓN SOCIAL
   ==================================== */

@media screen and (max-width: 1024px) {
    .social-profile-card {
        gap: 2rem;
        padding: 0;
    }
    
    .profile-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .message-button {
        
        justify-content: center;
        max-width: 300px;
    }
    .social-container {
        padding: 0;
    }
    .social-section {
        padding: 0;
    }
    
    .social-title {
        font-size: 2.2rem;
        
    }
    
    .social-subtitle {
        font-size: 1rem;
    }
    
    .social-profile-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image-wrapper {
        margin: 0 auto;
        width: 180px;
        height: 180px;
    }
    
    .profile-info {
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
       
    }
    
    .social-links-grid {
        margin: 0 auto;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-role {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .social-section {
        padding: 3rem 1rem;
    }
    
    .social-title {
        font-size: 1.8rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .social-link-card {
        width: 100%;
        justify-content: center;
    }
    
    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .message-text {
        font-size: 1.2rem;
    }
    
    .message-button {
        width: 100%;
        justify-content: center;
    }
}