.lt-home {
    min-height: calc(100vh - 170px);
    background-color: #f5f8fa;
    padding: 40px 20px;
}

/* Header Styles */
.lt-home-header {
    position: relative;
    background: linear-gradient(72deg, rgba(18, 46, 72, 15), rgba(9, 181, 226, 0.8));
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18, 46, 72, 0.2);
}

.lt-home-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../resources/fcc.jpg');
    opacity: 0.1;
    animation: moveBackground 40s ease-in-out infinite;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0 0; }
}

.lt-home-header-title {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.lt-logo {
    width: 120px;
    height: auto;
    animation: floatLogo 3s ease-in-out infinite;
    border-radius: 15%;
    
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lt-home-header-title h1 {
    color: white;
    font-family: 'Gotham', sans-serif;
    font-size: 2.8em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInSlide 1s ease-out;
}

.lt-home-description {
    color: white;
    font-size: 1.3em;
    margin: 0;
    max-width: 800px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

/* Content Sections */
section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.introduction {
    animation-delay: 0.3s;
}

.instructions {
    animation-delay: 0.6s;
}

h2 {
    color: #122e48;
    font-family: 'Gotham', sans-serif;
    font-size: 2em;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #09b5e2;
    border-radius: 2px;
}

h3 {
    color: #122e48;
    font-family: 'Gotham', sans-serif;
    font-size: 1.5em;
    margin-top: 5px;
    margin-bottom: 35px;
}

section p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

section strong {
    color: #122e48;
}

/* Lists Styling */
section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #09b5e2;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

section ul li:hover::before {
    transform: scale(1.5);
}

/* Actualiza los estilos de la introducción */
.intro-container {
    display: grid;
    grid: none;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.intro-text {
    margin-bottom: 0;
}

.intro-text h2 {
    margin-top: 0;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18, 46, 72, 0.1);
    height: 100%;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .intro-container {
        grid-template-columns: 1fr;
    }

    .intro-image {
        height: fit-content;
        width: 100%;
    }

    .card-icon {
        justify-self: anchor-center;
    }

    h3 {
        margin-top: 6.5rem;
        margin-bottom: 0;
    }
}

/* Important Notice Styling */
.important-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to right, rgba(18, 46, 72, 0.05), transparent);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ff9800;
}

.important-notice i {
    font-size: 2em;
    color: #ff9800;
}

.important-notice h3 {
    color: #122e48;
    margin-top: 0;
}

/* Separadores de sección */
.section-divider {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
    text-align: center;
    overflow: hidden;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.divider-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(9, 181, 226, 0.3),
        rgba(18, 46, 72, 0.5),
        rgba(9, 181, 226, 0.3),
        transparent
    );
}

.divider-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #122e48, #09b5e2);
}

.divider-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.divider-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #122e48, #09b5e2);
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
}

.section-divider h2 {
    color: #122e48;
    font-size: 2.2em;
    margin: 10px 0;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.section-divider h2::before {
    display: none;
}

.divider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.divider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #09b5e2;
    opacity: 0;
    animation: fadeInDots 0.3s ease forwards;
}

.divider-dots span:nth-child(1) { animation-delay: 0.6s; }
.divider-dots span:nth-child(2) { animation-delay: 0.8s; }
.divider-dots span:nth-child(3) { animation-delay: 1s; }

@keyframes fadeInDots {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Separadores de tarjetas */
.card-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(18, 46, 72, 0.1), transparent);
}

.card-separator i {
    color: #09b5e2;
    font-size: 1.2em;
}

/* Instruction Cards */
.instruction-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instruction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    background: linear-gradient(135deg, #122e48, #09b5e2);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: fixed;
}

.card-icon i {
    color: white;
    font-size: 24px;
}

.card-icon.warning {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.status-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.status-item:hover {
    transform: translateY(-3px);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

.status-item.pending .status-dot { background: #ffd700; }
.status-item.review .status-dot { background: #09b5e2; }
.status-item.rejected .status-dot { background: #ff4444; }
.status-item.validated .status-dot { background: #00c851; }

.status-item p {
    font-weight: bold;
    margin: 5px 0;
    color: #122e48;
}

.status-item small {
    color: #666;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInStep 0.5s ease forwards;
}

.step-number {
    background: #122e48;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

@keyframes slideInStep {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Requirements List */
.requirement-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.requirement {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.requirement:hover {
    transform: translateY(-3px);
}

.requirement h4 {
    color: #122e48;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #09b5e2;
    font-weight: bold;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations for sections */
.instruction-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInCard 0.6s ease forwards;
}

@keyframes fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instruction-card:nth-child(1) { animation-delay: 0.2s; }
.instruction-card:nth-child(2) { animation-delay: 0.4s; }
.instruction-card:nth-child(3) { animation-delay: 0.6s; }

/* Mejora las animaciones de transición */
.section-divider {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .lt-home {
        padding: 20px 15px;
        margin-bottom: 240px;
    }

    .lt-home-header {
        padding: 30px 20px;
    }

    .lt-home-header-title {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .lt-home-header-title h1 {
        font-size: 2em;
    }

    .lt-logo {
        width: 100px;
    }

    .lt-home-description {
        font-size: 1.1em;
        text-align: center;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.3em;
    }

    section {
        padding: 20px;
    }

    .important-notice {
        margin: 20px -20px -20px;
        border-radius: 0;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .requirement-list {
        grid-template-columns: 1fr;
    }

    .instruction-card {
        padding: 20px;
    }

    .intro-container {
        flex-direction: column;
        gap: 0;
    }

    .intro-image {
        max-width: 100%;
    }

    .important-notice {
        flex-direction: column;
        text-align: center;
        margin-inline: auto;
        margin-bottom: 1.2rem;
    }

    .card-separator {
        margin: 30px 0;
    }

    .section-divider {
        padding: 40px 0;
    }

    .divider-line {
        width: 60px;
    }

    .divider-image {
        width: 60px;
        height: 60px;
    }

    .section-divider h2 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 480px) {
    .lt-home-header-title h1 {
        font-size: 1.8em;
    }

    .lt-home-description {
        font-size: 1em;
    }

    h2 {
        font-size: 1.4em;
    }

    section ul li {
        padding-left: 20px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .lt-home {
        padding: 30px;
    }

    .lt-home-header-title h1 {
        font-size: 2.4em;
    }
}

/* From Uiverse.io by mobinkakei */ 
.wrapper {
  width: 200px;
  height: 100px;
  z-index: 1;
  position: relative;
  margin: 2.2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #122e48;
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 1.8s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(1) {
  left: 15%;
  animation-delay: 0s;
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.4s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.9);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 1.8s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.4s;
}