/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales - Diseño tecnológico con verde brillante */
    --primary-color: #00FF00;
    --secondary-color: #00cc00;
    --accent-color: #ffd700;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --background-dark: #0a0f0a;
    --background-green: #0d1f0d;
    --background-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(0, 255, 0, 0.2);
    --shadow: 0 4px 20px rgba(0, 255, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 255, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #00FF00, #00cc00);
    --gradient-accent: linear-gradient(135deg, #ffd700, #ffed4e);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--background-dark);
    position: relative;
}

/* Fondo estático sin textura */

/* Sin efectos de pulso */

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

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-logo .logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    /* El logo con fondo negro se ve perfecto en el tema oscuro */
}

.nav-logo .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.4));
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Efecto de fondo que se expande desde el centro */
.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 255, 0, 0.08);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 255, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

/* Efecto sutil de línea inferior en hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 80%;
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-green) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Sin elementos decorativos */

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-dark);
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-robot {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes neuralFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Secciones generales */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Servicios */
.services {
    padding: 80px 0;
    background: var(--background-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Sobre Nosotros */
.about {
    padding: 80px 0;
    background: var(--background-green);
    position: relative;
}

/* Sin elementos decorativos */

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-benefits {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
    margin-top: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-robot {
    max-width: 100%;
    height: auto;
}

/* Portafolio */
.portfolio {
    padding: 40px 0;
    background: var(--background-green);
    position: relative;
}

.portfolio-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    background: var(--background-card);
    padding: 1.5rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.portfolio-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.portfolio-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2);
}

.portfolio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
}

.portfolio-btn i {
    font-size: 1rem;
}

/* Contacto */
.contact {
    padding: 80px 0;
    background: var(--background-dark);
    position: relative;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--background-dark) 0%, #000000 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    /* El logo con fondo negro se ve perfecto en el tema oscuro */
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.3));
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Overlay para el menú móvil */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-dark);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 1rem 0;
    }
    
    .nav-menu .nav-link {
        color: var(--text-dark);
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(0, 255, 0, 0.1);
        color: var(--primary-color);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-benefits {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--primary-color);
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-content {
        padding: 0.5rem 0;
    }
    
    .portfolio-item {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
        max-width: 350px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Animaciones adicionales */
.service-card,
.portfolio-item,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estilos para formulario de contacto */
.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Mejoras en la accesibilidad */
.nav-link:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Estados de hover mejorados */
.service-card:hover .service-icon {
    transform: scale(1.1);
}

.contact-item:hover {
    transform: translateX(10px);
}

/* Transiciones suaves */
* {
    transition: all 0.3s ease;
}

/* Estilos para enlaces de servicios */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-link:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Página Soluciones Microsoft */
.microsoft-hero {
    padding: 120px 0 80px;
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.microsoft-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.microsoft-title-section {
    text-align: left;
}

.microsoft-logo-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.microsoft-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    line-height: 1.1;
}

.microsoft-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

.microsoft-ecosystem {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.ecosystem-center {
    position: relative;
    z-index: 2;
}

.robot-container {
    position: relative;
    z-index: 3;
}

.ecosystem-robot {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.3));
}

.microsoft-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #ff6b35;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.ecosystem-apps {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.app-icon i {
    font-size: 1.5rem;
}

.app-icon span {
    position: absolute;
    bottom: -25px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Posicionamiento de los iconos de apps */
.app-icon.azure {
    top: 10%;
    left: 20%;
    background: #0078d4;
}

.app-icon.onenote {
    top: 15%;
    right: 25%;
    background: #7c4dff;
}

.app-icon.excel {
    top: 30%;
    left: 10%;
    background: #217346;
}

.app-icon.powerpoint {
    top: 35%;
    right: 15%;
    background: #d24726;
}

.app-icon.publisher {
    top: 50%;
    left: 5%;
    background: #ff6b35;
}

.app-icon.teams {
    top: 55%;
    right: 10%;
    background: #6264a7;
}

.app-icon.sharepoint {
    bottom: 35%;
    left: 15%;
    background: #0078d4;
}

.app-icon.outlook {
    bottom: 30%;
    right: 20%;
    background: #0078d4;
}

.app-icon.dynamics {
    bottom: 15%;
    left: 25%;
    background: #0078d4;
}

.app-icon.yammer {
    bottom: 10%;
    right: 25%;
    background: #0078d4;
}

/* Servicios Microsoft */
.microsoft-services {
    padding: 80px 0;
    background: var(--background-green);
}

.services-grid-microsoft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card-microsoft {
    background: var(--background-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-microsoft:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.service-icon-microsoft {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.service-title-microsoft {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description-microsoft {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Power Platform */
.power-platform {
    padding: 80px 0;
    background: var(--background-dark);
}

.power-platform-content {
    text-align: center;
}

.power-platform-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.power-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.power-product {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.power-product:hover {
    transform: translateY(-5px);
}

.power-product-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.power-product h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Colores de Power Platform */
.power-product-icon.power-apps {
    background: linear-gradient(135deg, #7c4dff, #b388ff);
}

.power-product-icon.power-automate {
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
}

.power-product-icon.power-bi {
    background: linear-gradient(135deg, #f9a825, #fbc02d);
}

.power-product-icon.power-virtual-agent {
    background: linear-gradient(135deg, #4caf50, #81c784);
}

.power-product-icon.dataverse {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
}

/* Responsive para Microsoft Solutions */
@media (max-width: 768px) {
    .microsoft-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .microsoft-hero-title {
        font-size: 2.5rem;
    }
    
    .microsoft-ecosystem {
        height: 300px;
    }
    
    .ecosystem-robot {
        max-width: 150px;
    }
    
    .app-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .app-icon i {
        font-size: 1.2rem;
    }
    
    .services-grid-microsoft {
        grid-template-columns: 1fr;
    }
    
    .power-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .microsoft-hero-title {
        font-size: 2rem;
    }
    
    .microsoft-ecosystem {
        height: 250px;
    }
    
    .ecosystem-robot {
        max-width: 120px;
    }
    
    .app-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .service-card-microsoft {
        padding: 2rem 1.5rem;
    }
}
