* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
        
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
        
section {
    padding: 80px 0;
}
        
h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}
        
h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    margin: 15px auto;
    border-radius: 2px;
}
        
/* Estilos del menú */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
        
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
        
.img-logo {
    width: 95%;
    margin-bottom: 3%;
}
        
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}
        
.nav-links {
    display: flex;
    list-style: none;
}
        
.nav-links li {
    margin-left: 30px;
}
        
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
        
.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #0d8383, #0d3e94);
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
    }
        
.nav-links a:hover {
    color: #2575fc;
}
        
.nav-links a:hover:after {
    width: 100%;
}
        
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 70px;
}
        
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #262429, #19428a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}
        
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #616161, #131314);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}
        
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 42, 42, 0.1);
}
        
        /* Quiénes Somos */
.about {
    background-color: white;
}
        
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
        
.about-text {
    flex: 1;
    min-width: 300px;
    font-size: 18px;
    text-align: justify;
}

.video{
    width: 600px;
    height: auto;
    margin-top: 6%;
    border-radius: 15px;
}
        
.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #403c44 0%, #1760df 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
        
        /* Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
        
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
        
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
        
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #26202c, #4e7bc9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        
        /* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}
        
    /* Responsive */
@media (max-width: 768px) {
    
.menu-toggle {
    display: block;
}
            
.nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s;
}
            
.nav-links.active {
    left: 0;
}
            
.nav-links li {
    margin: 15px 0;
}
            
h2 {
    font-size: 2rem;
}
            
.hero-content h1 {
    font-size: 2.5rem;
}

}

@media (max-width: 600px) {

        
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
        
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 5px;
}
        
h2 {
    font-size: 35px;
    margin-bottom: 1%;
    text-align: center;
    position: relative;
}
        
h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #414042, #2575fc);
    margin: 10px auto;
    border-radius: 2px;
}
        
/* Estilos del menú */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
        
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}
        
.img-logo {
    width: 85%;
    margin-top: 3%;
}
        
.menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 30px;
}
        
.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(88, 88, 88, 0.89);
    text-align: center;
    padding: 15px 0;
    margin: 0;
}

.nav-links.active {
    display: flex;
}
        
.nav-links li {
    margin-left: 5px;
}
        
.nav-links a {
    font-size: 30px;
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
        
.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #0d8383, #0d3e94);
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
    }
        
.nav-links a:hover {
    color: #2575fc;
}
        
.nav-links a:hover:after {
    width: 100%;
}
        
/* Hero Section */
.hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 10px;
}
        
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #262429, #19428a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}
        
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #616161, #131314);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}
        
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 42, 42, 0.1);
}
        
        /* Quiénes Somos */
.about {
    background-color: white;
}
        
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
        
.about-text {
    flex: 1;
    width: 300px;
    font-size: 18px;
}

.video{
    width: 98%;
    height: auto;
    margin-top: 3%;
    border-radius: 15px;
}
        
.about-image {
    flex: 1;
    min-width: 90%;
    height: 210px;
    background: linear-gradient(135deg, #403c44 0%, #1760df 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
        
        /* Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
        
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
        
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
        
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #26202c, #4e7bc9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        
        /* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 25px 0 10px;
    text-align: center;
}

}