/* Practicas Page Specific Styles */

/* Training Hero Section */
.training-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 40px 60px;
}

.training-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.training-hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: white;
}

.training-hero-underline {
    width: 200px;
    height: 6px;
    background: #ff1b8d;
    margin: 0 auto 50px;
    border-radius: 3px;
}

.training-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    color: white;
    margin-bottom: 50px;
}

/* Approach Section */
.approach-section {
    padding: 120px 0;
    background: #111;
    color: white;
}

.approach-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    color: white;
}

.approach-underline {
    width: 150px;
    height: 5px;
    background: #ff1b8d;
    margin: 0 auto 80px;
    border-radius: 3px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.approach-card {
    background: transparent;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.approach-card:hover {
    border-color: #ff1b8d;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.2);
}

.approach-number {
    background: #ff1b8d;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.approach-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.approach-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
    flex: 1;
}

/* Programs Section */
.programs-section {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
}

.programs-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    color: white;
}

.programs-underline {
    width: 150px;
    height: 5px;
    background: #ff1b8d;
    margin-bottom: 80px;
    border-radius: 3px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.programs-grid .program-card:nth-child(4),
.programs-grid .program-card:nth-child(5) {
    grid-column: span 1;
}

.programs-grid .program-card:nth-child(4) {
    margin-right: 15px;
}

.programs-grid .program-card:nth-child(5) {
    margin-left: 15px;
}

.program-card {
    background: transparent;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: #ff1b8d;
}

.program-header {
    background: #ff1b8d;
    padding: 20px 30px;
    border-radius: 18px 18px 0 0;
    margin-bottom: 0;
}

.program-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.program-description {
    padding: 30px 30px 20px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    flex: 1;
    display: flex;
    align-items: flex-start;
    color: white;
}

.program-dot {
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: #ff1b8d;
    border-radius: 50%;
}

.program-button {
    background: #ff1b8d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    margin: 0 30px 30px;
    align-self: flex-start;
}

.program-button:hover {
    background: #e6186e;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 27, 141, 0.3);
}

/* Final Contact Section */
.final-contact {
    padding: 120px 0;
    background:  url('./assets/bg2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.final-contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.final-contact-underline {
    width: 200px;
    height: 6px;
    background: #ff1b8d;
    margin: 0 auto 40px;
    border-radius: 3px;
}

.final-contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    opacity: 0.95;
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #ff1b8d;
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.4;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.9;
    color: white;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Button */
.cta-button {
    background: #ff1b8d;
    color: white;
    border: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: #e6186e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 27, 141, 0.4);
}

/* Active Navigation Link */
.nav-links a.active {
    color: #ff1b8d;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff1b8d;
}

/* Responsive Design for Practicas Page */
@media (max-width: 1200px) {
    .training-hero {
        padding: 120px 30px 60px;
    }
    
    .training-hero-title {
        font-size: 4rem;
    }
    
    .approach-title, .programs-title, .final-contact-title {
        font-size: 3rem;
    }
    
    .approach-grid {
        gap: 25px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid .program-card:nth-child(4),
    .programs-grid .program-card:nth-child(5) {
        margin: 0;
    }
}

@media (max-width: 900px) {
    .training-hero {
        padding: 100px 20px 50px;
        background-attachment: scroll;
    }
    
    .training-hero-title {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .training-hero-underline, .final-contact-underline {
        width: 150px;
        height: 5px;
        margin-bottom: 40px;
    }
    
    .training-hero-description, .final-contact-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .approach-section, .programs-section, .final-contact {
        padding: 80px 0;
    }
    
    .approach-title, .programs-title, .final-contact-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .approach-underline, .programs-underline {
        margin: 0 auto 60px;
        width: 120px;
        height: 4px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        padding: 25px 20px;
        min-height: 180px;
    }
    
    .approach-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .approach-card-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .approach-description {
        font-size: 0.95rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        min-height: 280px;
    }
    
    .program-header {
        padding: 15px 25px;
    }
    
    .program-title {
        font-size: 1.1rem;
    }
    
    .program-description {
        padding: 25px 25px 15px;
        font-size: 0.95rem;
    }
    
    .program-dot {
        bottom: 70px;
        left: 25px;
        width: 10px;
        height: 10px;
    }
    
    .program-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 0 25px 25px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .map {
        height: 300px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .training-hero-title, .approach-title, .programs-title, .final-contact-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .training-hero-underline, .approach-underline, .programs-underline, .final-contact-underline {
        width: 100px;
        height: 4px;
    }
    
    .approach-section, .programs-section, .final-contact {
        padding: 60px 0;
    }
    
    .approach-card {
        padding: 20px 15px;
        min-height: 160px;
    }
    
    .approach-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .approach-card-title {
        font-size: 1.1rem;
    }
    
    .program-card {
        min-height: 260px;
    }
    
    .program-header {
        padding: 12px 20px;
    }
    
    .program-title {
        font-size: 1rem;
    }
    
    .program-description {
        padding: 20px 20px 12px;
        font-size: 0.9rem;
    }
    
    .program-dot {
        bottom: 65px;
        left: 20px;
        width: 8px;
        height: 8px;
    }
    
    .program-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 0 20px 20px;
    }
    
    .map {
        height: 250px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.training-hero-content {
    animation: fadeInUp 1s ease-out;
}

.approach-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.approach-card:nth-child(1) { animation-delay: 0.1s; }
.approach-card:nth-child(2) { animation-delay: 0.2s; }
.approach-card:nth-child(3) { animation-delay: 0.3s; }
.approach-card:nth-child(4) { animation-delay: 0.4s; }

.program-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }
.program-card:nth-child(5) { animation-delay: 0.5s; }