/* ========================================
   SECCIÓN: VARIABLES CSS - Variables Globales
   ======================================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --bg-accent: #f8f9fa;
    --accent-color: #4064c9;
    --accent-hover: #4e77e7;
    --text-primary: #233343;
    --text-secondary: #5d6d7e;
    --text-muted: #85929e;
    --text-color: var(--text-primary);
    --dark-gray: #555;
    --medium-gray: #666;
    --transition: all 0.3s ease;
    --box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --border-color: #e0e0e0;
    --border-radius: 10px;
}

/* ========================================
   SECCIÓN: FUENTES - Tipografías
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ========================================
   SECCIÓN: ESTILOS GENERALES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", Times, cursive;
    font-weight: 700;
}

section {
    padding: 30px 0;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.section-content {
    width: 90%;
    margin: 0;
    padding: 0;
}

.section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-primary);
            /* Estado inicial para la animación */
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            color: var(--text-secondary);
            /* Estado inicial para la animación */
            opacity: 0;
            transform: translateY(-5px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            transition-delay: 0.2s;
        }

        .section-subtitle.visible {
            opacity: 1;
            transform: translateY(0);
        }

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   SECCIÓN: NAVBAR - Navegación Principal
   ======================================== */
.navbar {
    background-color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    font-family: "Times New Roman", Times, cursive;
}

.navbar-menu {
    display: flex;
    list-style: none;
}

.navbar-item {
    margin-left: 1.5rem;
}

.navbar-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-link:hover {
    color: var(--accent-color);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--accent-color);
    transition: var(--transition);
}






/* ========================================
   SECCIÓN: HERO - Sección Principal
   ======================================== */
.hero {
            margin-top: 100px;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--bg-primary);
            overflow: hidden; /* Contiene la animación de los bordes */
            min-height: 80vh;
        }

        .hero-content {
            width: 80%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0; /* Inicialmente invisible */
            animation: fadeInFromBack 1s ease-out forwards;
            animation-delay: 0.5s;
        }

        /* Animación para el borde superior izquierdo */
        .hero-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 20%;
            height: 20%;
            border-top: 3px solid rgb(74, 126, 216);
            border-left: 3px solid rgb(74, 126, 216);
            z-index: 1;
            animation: expandBorderTopLeft 0.5s ease-out forwards;
        }

        /* Animación para el borde inferior derecho */
        .hero-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 20%;
            height: 20%;
            border-bottom: 3px solid rgb(74, 126, 216);
            border-right: 3px solid rgb(74, 126, 216);
            z-index: 1;
            animation: expandBorderBottomRight 0.5s ease-out forwards;
        }

        /* Animación para el texto del hero */
        .hero-text {
            padding: 2rem;
            opacity: 0;
            transform: translateZ(-50px) translateY(20px);
            animation: fadeInFromBack 1s ease-out forwards;
            animation-delay: 0.5s;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            opacity: 0;
            transform: translateZ(-50px) translateY(20px);
            animation: fadeInFromBack 0.5s ease-out forwards;
            animation-delay: 0.9s;
        }

        .hero-text h1 span {
            color: var(--accent-color);
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 500px;
            opacity: 0;
            transform: translateZ(-50px) translateY(20px);
            animation: fadeInFromBack 1s ease-out forwards;
            animation-delay: 0.5s;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            opacity: 0;
            transform: translateZ(-50px) translateY(20px);
            animation: fadeInFromBack 1s ease-out forwards;
            animation-delay: 0.5s;
        }

        .hero-visual {
            position: relative;
            opacity: 0;
            transform: translateZ(-50px) translateY(20px);
            animation: fadeInFromBack 1s ease-out forwards;
            animation-delay: 0.5s;
        }

        .hero-card {
            height: 500px;
            background: white;
            width: 700px;
            align-self: flex-end;
            position: relative;
            overflow: hidden;
        }

        .hero-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(236, 228, 228, 0.5), transparent);
            z-index: 1;
        }

        .hero-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
         @keyframes expandBorderTopLeft {
            0% {
                width: 0;
                height: 0;
                opacity: 0;
            }
            100% {
                width: 20%;
                height: 20%;
                opacity: 1;
            }
        }

        @keyframes expandBorderBottomRight {
            0% {
                width: 0;
                height: 0;
                opacity: 0;
            }
            100% {
                width: 20%;
                height: 20%;
                opacity: 1;
            }
        }

        @keyframes fadeInFromBack {
            0% {
                opacity: 0;
                transform: translateZ(-50px) translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateZ(0) translateY(0);
            }
        }



/* ========================================
   SECCIÓN: FEATURES - Tarjetas de Características
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ========================================
   SECCIÓN: ABOUT - Acerca de Mí
   ======================================== */
 .about-content {
            width: 100%;
            margin: 0 auto;
            display: flow-root;
        }

        .about-text {
            width: 100%;
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 1.5s ease, transform 01.5s ease;
        }

        .about-text.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
            display: inline-block;
            overflow: hidden;
            border-radius: 0;
            background: rgb(230, 228, 243);
            width: 500px;
            max-width: 100%;
            float: left;
            margin-right: 40px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            transition-delay: 0.5s;
        }

        .about-image.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image img {
            display: block;
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.02);
            cursor: pointer;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 20%;
            height: 10%;
            border-top: 2px solid #525eca;
            border-left: 2px solid #525eca;
            z-index: 1;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 20%;
            height: 10%;
            border-bottom: 2px solid #525eca;
            border-right: 2px solid #525eca;
            z-index: 1;
        }

        .values-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 1.5rem;
        }

        .values-container,
        .mission-container {
            background: white;
            border-radius: 5px;
            padding: 2.5rem;
            border: 1px solid lightblue;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .values-container.visible,
        .mission-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .values-container {
            transition-delay: 0.1s;
        }

        .mission-container {
            transition-delay: 0.1s;
        }

        .values-container h4,
        .mission-container h4 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--text-primary);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .values-container h4::after,
        .mission-container h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .values-list {
            display: flex;
            justify-content: space-around;
            gap: 1rem;
        }

        .value-item {
            text-align: center;
            padding: 1rem;
            color: var(--text-primary);
            flex: 1;
            font-weight: 600;
            transition: var(--transition);
            border-bottom: 2px solid rgb(187, 212, 236);
        }

        .value-item:hover {
            border-bottom-color: var(--accent-color);
            transform: translateY(-3px);
            cursor: pointer;
        }

        .mission-text {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
        }




/* ========================================
   SECCIÓN: CERTIFICATIONS - Certificaciones
   ======================================== */
.certifications-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    
}

.certification-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            
}
.certification-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .certification-card:nth-child(1) { transition-delay: 0.3s; }
        .certification-card:nth-child(2) { transition-delay: 0.8s; }
        .certification-card:nth-child(3) { transition-delay: 1.3s; }
        .certification-card:nth-child(4) { transition-delay: 1.5s; }
        .certification-card:nth-child(5) { transition-delay: 1.8s; }

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.certification-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgb(74, 126, 216);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-icon {
    font-size: 2.5rem;
    color: rgb(74, 126, 216);
    margin-bottom: 20px;
    text-align: center;
}

.certification-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.certification-institution {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.certification-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}


/* ========================================
   SECCIÓN: SKILLS & TOOLS - Habilidades y Herramientas
   ======================================== */
        .skills-main-container {
            text-align: center;
        }

        .specializations-section {
            margin-bottom: 4rem;
        }

        .specializations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
            justify-items: center;
        }

        .specialization-item {
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            width: 100%;
            /* Estado inicial para la animación - desde la izquierda */
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* Clase que se añade cuando la tarjeta es visible */
        .specialization-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Retrasos escalonados para cada tarjeta */
        .specialization-item:nth-child(1) { transition-delay: 0.3s; }
        .specialization-item:nth-child(2) { transition-delay: 0.5s; }
        .specialization-item:nth-child(3) { transition-delay: 0.8s; }
        .specialization-item:nth-child(4) { transition-delay: 0.3s; }
        .specialization-item:nth-child(5) { transition-delay: 0.5s; }
        .specialization-item:nth-child(6) { transition-delay: 0.8s; }

        .specialization-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
            cursor: pointer;
        }

        .specialization-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: rgb(74, 126, 216);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .specialization-item:hover::before {
            transform: scaleX(1);
        }

        .specialization-icon {
            font-size: 2.5rem;
            color: rgb(74, 126, 216);
            margin-bottom: 20px;
            text-align: center;
        }

        .specialization-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .specialization-item .specialization-area {
            font-size: 1rem;
            color: #666;
            font-style: italic;
            margin-bottom: 15px;
        }

        .specialization-item p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            flex-grow: 1;
        }

        .skills-section {
            margin-top: 4rem;
        }

        .skills-grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .skills-group {
            margin-bottom: 2.5rem;
            position: relative;
            border: 1px solid lightblue;
            border-radius: 5px;
            /* Estado inicial para la animación - desde la izquierda */
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* Clase que se añade cuando el grupo es visible */
        .skills-group.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Retrasos escalonados para cada grupo */
        .skills-group:nth-child(1) { transition-delay: 0.3s; }
        .skills-group:nth-child(2) { transition-delay: 0.5s; }
        .skills-group:nth-child(3) { transition-delay: 0.8s; }
        .skills-group:nth-child(4) { transition-delay: 1.1s; }

        /* Animación especial para el grupo de Soft Skills (desde la derecha) */
        .skills-group.soft-skills {
            transform: translateX(30px);
        }

        .skills-group.soft-skills.visible {
            transform: translateX(0);
        }

        .skills-grid-container .skills-group {
            margin-bottom: 0;
        }

        .skills-group-title {
            width: 300px;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
            gap: 10px;
            justify-self: center;
        }

        .skills-group-title i {
            color: var(--accent-color);
            font-size: 1.1rem;
        }

        .skills-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .skill-pill {
            background-color: var(--bg-secondary);
            border: none;
            padding: 10px 18px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--dark-gray);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .skill-pill:hover {
            transform: translateY(-3px);
            color: var(--text-color);
            border-bottom: 1px solid var(--accent-color);
            cursor: pointer;
        }

.cla {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.cla-p {
    color: var(--text-secondary);
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.cla > .btn {
    background: var(--accent-color);
    color: white;
    border-radius: 5px;
    width: 230px;
    align-self: center;
}
/* ========================================
   SECCIÓN: FOOTER - Pie de Página
   ======================================== */
.footer {
            width: 100vw;
            /* Estado inicial para la animación */
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        /* Clase que se añade cuando el footer es visible */
        .footer.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ======================================== FIN DE ANIMACIONES DE SCROLL PARA FOOTER ======================================== */

        .footer-container {
            width: 90%;
            margin: 0 auto;
        }

        .footer-content {
            border-top: 2px solid rgb(74, 126, 216);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 50px;
        }

        .footer-nav {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
        }

        .footer-title {
            margin-top: 40px;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-color);
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: flex-end;
        }

        .footer-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--accent-color);
            transform: translateX(-5px);
        }

        .footer-link i {
            font-size: 1.2rem;
            color: rgb(74, 126, 216);
        }

        .footer-contact {
            flex: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .footer-contact .footer-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
            width: 100%;
            max-width: 600px;
        }

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 20px 25px;
            background-color: white;
            border: 1px solid rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            color: var(--text-color);
            font-size: 1.1rem;
            font-family: 'Roboto', sans-serif;
            transition: var(--transition);
            outline: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: rgb(74, 126, 216);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 20px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
        }

        .submit-btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.2);
        }

        .social-media-section {
            margin-top: 30px;
            text-align: center;
        }

        .social-label {
            font-size: 1rem;
            color: #777;
            margin-bottom: 15px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-links a {
            color: var(--text-color);
            font-size: 1.3rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.05);
        }

        .social-links a:hover {
            color: white;
            background-color: rgb(74, 126, 216);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .copyright {
            color: #777;
            font-size: 0.9rem;
            text-align: center;
        }

        .success-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #2ecc71;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            transform: translateX(400px);
            transition: transform 0.4s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .success-message.show {
            transform: translateX(0);
        }

        .success-message i {
            font-size: 1.2rem;
        }

        .redirect-message {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            transform: translateX(400px);
            transition: transform 0.4s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .redirect-message.show {
            transform: translateX(0);
        }