* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept, .btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #A0522D, #CD853F);
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.btn-reject:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(68, 68, 68, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    border-radius: 0 0 30px 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.nav-brand h1 {
    color: white;
    font-size: 32px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a90a4;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./assets/bg3.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
    padding-top: 120px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 60%;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A0522D, #CD853F);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.about-text > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    border-left: 4px solid #4a90a4;
    padding-left: 20px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4a90a4;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid #4a90a4;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a90a4, #5fa3b8);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background: transparent;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card.service-full {
    grid-column: 1 / -1;
    max-width: 100%;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-card p {
    line-height: 1.6;
    font-size: 16px;
    opacity: 0.9;
}

/* Sectors Section */
.sectors {
    padding: 100px 0;
    background: white;
}

.sectors h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
    color: #333;
}

.sectors-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
    line-height: 1.6;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.sector-card {
    text-align: center;
    padding: 0;
}

.sector-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.check-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90a4, #5fa3b8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

.sector-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.sector-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.contact-text > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.office h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.office-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
    font-size: 16px;
}

.office-details p strong {
    color: #333;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-content h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    position: relative;
}

.footer-links::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: #666;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: #4a90a4;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        width: 70%;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .about-content,
    .contact-content {
        gap: 60px;
    }
    
    .sectors-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(68, 68, 68, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 30px;
        border-radius: 0 0 30px 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .navbar {
        padding: 20px 20px;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links::after {
        width: 100px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-text h2,
    .contact-text h2,
    .sectors h2 {
        font-size: 36px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept, .btn-reject {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .about-text h2,
    .contact-text h2,
    .sectors h2 {
        font-size: 28px;
    }
    
    .nav-brand h1 {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
    
    .sector-card h3 {
        font-size: 20px;
    }
    
    .check-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Active navigation link */
.nav-menu a.active {
    color: #4a90a4;
    font-weight: 600;
}

/* Careers Hero Section */
.careers-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./assets/bg3.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
    padding-top: 120px;
}

.careers-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 80%;
}

.careers-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.careers-hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%;
}

/* Work Section */
.work-section {
    padding: 100px 0;
    background: white;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.work-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.work-text p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
}

.work-features {
    list-style: none;
    padding: 0;
}

.work-features li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #4a90a4;
    font-weight: 500;
}

.work-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a90a4;
    font-size: 20px;
    font-weight: bold;
}

.work-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid #4a90a4;
}

/* Collaboration Section */
.collaboration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a90a4, #5fa3b8);
    color: white;
}

.collaboration-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0.9;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.collaboration-card {
    background: transparent;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.collaboration-card.collaboration-full {
    grid-column: 1 / -1;
}

.collaboration-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.collaboration-card p {
    line-height: 1.6;
    font-size: 16px;
    opacity: 0.9;
}

/* Success Section */
.success-section {
    padding: 100px 0;
    background: white;
}

.success-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

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

.success-card {
    text-align: center;
    padding: 0;
}

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.success-card .check-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90a4, #5fa3b8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

.success-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.success-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a90a4, #5fa3b8);
    color: white;
}

.testimonials-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: transparent;
    padding: 0;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline;
}

.testimonial-role {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    display: inline;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 15px;
}

/* Responsive Design for Prácticas page */
@media (max-width: 1024px) {
    .careers-hero .hero-content {
        width: 90%;
    }
    
    .careers-hero h1 {
        font-size: 48px;
    }
    
    .work-content {
        gap: 60px;
    }
    
    .collaboration-grid,
    .success-grid {
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .careers-hero .hero-content {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    
    .careers-hero h1 {
        font-size: 36px;
    }
    
    .work-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .work-text h2,
    .collaboration-section h2,
    .success-section h2,
    .testimonials-section h2 {
        font-size: 36px;
    }
    
    .collaboration-card,
    .testimonial-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .careers-hero h1 {
        font-size: 28px;
    }
    
    .work-text h2,
    .collaboration-section h2,
    .success-section h2,
    .testimonials-section h2 {
        font-size: 28px;
    }
    
    .success-card .check-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .success-card h3 {
        font-size: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.skip-link{
    display: none !important;
}