/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 206, 209, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(0, 206, 209, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 40% 80%, rgba(0, 206, 209, 0.03) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #00CED1;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.5), 0 0 20px rgba(0, 206, 209, 0.3);
}

.section-label {
    color: #00CED1;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.5);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #00CED1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: -5px;
    text-shadow: 0 0 15px rgba(0, 206, 209, 0.6), 0 0 30px rgba(0, 206, 209, 0.4);
}

.logo span {
    color: #888;
    font-size: 12px;
    font-weight: 300;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #00CED1;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.6);
}

.search-icon {
    color: #00CED1;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0, 206, 209, 0.5));
}

.search-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 206, 209, 0.8));
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-label {
    color: #00CED1;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.hero p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
}

.profile-card {
    position: relative;
    width: 300px;
    height: 400px;
    margin-left: auto;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #00CED1, #008B8B);
    padding: 3px;
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.4), 0 0 60px rgba(0, 206, 209, 0.2);
    animation: profileGlow 3s ease-in-out infinite alternate, float 6s ease-in-out infinite;
}

@keyframes profileGlow {
    0% {
        box-shadow: 0 0 30px rgba(0, 206, 209, 0.4), 0 0 60px rgba(0, 206, 209, 0.2);
    }
    100% {
        box-shadow: 0 0 40px rgba(0, 206, 209, 0.6), 0 0 80px rgba(0, 206, 209, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #111111;
}

.services-margin {
    margin-top: 0; /* Valor por defecto para móviles/tablets */
}
/* Media query para pantallas grandes (PC) */
@media only screen and (min-width: 770px) {
    .services-margin {
        margin-top: 30%;
    }
}
.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.services h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.services-description p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.view-all-btn {
    background: #00CED1;
    color: #000000;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.4);
}

.view-all-btn:hover {
    background: #00B8B8;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.6), 0 0 50px rgba(0, 206, 209, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00CED1, #008B8B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.8);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 206, 209, 0.3);
    box-shadow: 0 0 25px rgba(0, 206, 209, 0.3), 0 0 50px rgba(0, 206, 209, 0.1);
}

.service-icon {
    color: #00CED1;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 206, 209, 0.5));
    transition: filter 0.3s ease;
}

.service-card:hover .service-icon {
    filter: drop-shadow(0 0 15px rgba(0, 206, 209, 0.8));
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.about p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    color: #00CED1;
    flex-shrink: 0;
    margin-top: 5px;
    filter: drop-shadow(0 0 8px rgba(0, 206, 209, 0.6));
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: #111111;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(0, 206, 209, 0.05);
    border: 1px solid rgba(0, 206, 209, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 206, 209, 0.1);
    border-color: rgba(0, 206, 209, 0.3);
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.3), 0 0 60px rgba(0, 206, 209, 0.1);
}

.stat-icon {
    color: #00CED1;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 206, 209, 0.5));
    transition: filter 0.3s ease;
}

.stat-item:hover .stat-icon {
    filter: drop-shadow(0 0 15px rgba(0, 206, 209, 0.8));
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #00CED1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 206, 209, 0.5);
    transition: text-shadow 0.3s ease;
}

.stat-item:hover h3 {
    text-shadow: 0 0 20px rgba(0, 206, 209, 0.8), 0 0 40px rgba(0, 206, 209, 0.4);
}

.stat-item p {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer p {
    color: #888;
    font-size: 14px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .services-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .profile-card {
        width: 250px;
        height: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .services h2,
    .about h2 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #00CED1;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: #00B8B8;
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.8);
}
