/* Estilos base proporcionados */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    padding-top: 80px;
    background-color: white;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.logo {
    color: #FFFF;
    font-size: 1.5rem;
    font-weight: 700;
}
.logo img {
    width: 200px;
    height: 60px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #C419BE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-weight: bold;
}

.nav-menu a:hover {
    color: #2628DD;
}

.title {
    text-align: center;
    color: #2628DD;
    font-size: 2rem;
}

/* Estilos adicionales */
.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #C419BE;
}

.hero {
    padding: 4rem 5%;
    background: linear-gradient(45deg, #2628DD 30%, #C419BE 100%);
    color: white;
    text-align: center;
    animation: fadeIn 1.5s;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #C419BE;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: white;
    color: #2628DD;
    transform: translateY(-3px);
}

/* Estilos para la sección de aboutes */
.abouts-section {
    padding: 4rem 5%;
    background: #FFFF;
}

.abouts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.abouts-info h3 {
    color: #2628DD;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.abouts-info p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 10px;
    min-width: 150px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #C419BE;
}

.stat-text {
    color: #2628DD;
    font-size: 0.9rem;
}

.about-logos {
    display: grid;
    gap: 1.5rem;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.about-card {
    background: #FFFF;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.about-card span {
    display: block;
    color: #2628DD;
    font-weight: 600;
}


.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out;
}

/* Sección Contacto */
.contact-section .section-header {
    background: #2628DD;
    padding: 4rem 5%;
    text-align: center;
    color: #FFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 5%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #C419BE;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #FFFF;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #C419BE;
}

/* Footer */
footer {
    background: #000000;
    color: #FFFF;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.Footer-About {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Footer-Services {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Footer-Blog {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 1024px) {
    .abouts-grid {
        gap: 2rem;
        padding: 2rem 5%;
    }
    
    .logo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .abouts-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem 5%;
    }
    
    .abouts-info h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .abouts-info p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .logo-row {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .about-card span {
        font-size: 0.85rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 5%;
    }

    .contact-section .section-header {
        padding: 2rem 5%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-info {
        text-align: center;
        align-items: center;
        gap: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-icons-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .social-icons-contact a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form button.cta-button {
        width: 100%;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left;
    }
    .abouts-grid {
        gap: 2rem;
        padding: 1rem 5%;
    }
    
    .abouts-info h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .abouts-info p {
        font-size: 0.9rem;
        text-align: justify;
    }
    
    .logo-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-card {
        padding: 1rem;
        margin: 0 auto;
        max-width: 250px;
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .about-card span {
        font-size: 0.82rem;
    }
}