html,body{width:100%;height:100%;overflow-x:hidden}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}#root{width:100%;min-height:100vh;overflow-x:hidden}.sidebar{width:280px;min-width:280px;background:#1a1f2e;color:#e0e0e0;height:100vh;position:fixed;left:0;top:0;overflow-y:auto;padding:2rem 1.5rem;box-shadow:4px 0 12px #0006;z-index:100}.sidebar-content{display:flex;flex-direction:column;gap:2rem}.profile-section{text-align:center;padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,.08)}.profile-image{position:relative;width:130px;height:130px;margin:0 auto 1.2rem}.profile-image img{width:100%;height:100%;border-radius:50%;object-fit:cover;border:5px solid #FFC107;box-shadow:0 4px 16px #ffc10766}.status-badge{position:absolute;bottom:5px;right:5px;background-color:#ffc107;border-radius:50%;width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:4px solid #1a1f2e;box-shadow:0 2px 8px #ffc1074d}.status-emoji{font-size:18px}.profile-name{color:#fff;font-size:1.5rem;font-weight:700;margin-bottom:.5rem;letter-spacing:-.5px}.profile-title{color:#9ca3af;font-size:.95rem;margin-bottom:1rem;line-height:1.4}.profile-tech{display:flex;align-items:center;justify-content:center;gap:.5rem;flex-wrap:wrap;font-size:.9rem}.tech-item{color:#4ade80;font-weight:600}.tech-separator{color:#4b5563;font-weight:300}.languages-section{padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,.08)}.languages-section .sidebar-item{padding:.6rem 0}.flag-icon{font-size:1.3rem}.sidebar-section{padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,.05)}.sidebar-section:last-child{border-bottom:none}.section-title{color:#3b5998;font-size:1.15rem;font-weight:700;margin-bottom:1rem;padding-left:0;text-transform:capitalize;letter-spacing:-.3px}.sidebar-item{display:flex;align-items:flex-start;gap:.75rem;padding:.5rem 0;color:#9ca3af;font-size:.9rem;transition:all .2s ease;cursor:pointer}.sidebar-item:hover{color:#ffc107;padding-left:.3rem}.item-bullet{color:#ffc107;font-size:1rem;line-height:1.5;flex-shrink:0}.item-text{flex:1;line-height:1.5}.sidebar::-webkit-scrollbar{width:6px}.sidebar::-webkit-scrollbar-track{background:#ffffff08}.sidebar::-webkit-scrollbar-thumb{background:#ffc10733;border-radius:3px}.sidebar::-webkit-scrollbar-thumb:hover{background:#ffc10766}@media (max-width: 968px){.sidebar{transform:translate(-100%);transition:transform .3s ease}.sidebar.open{transform:translate(0)}}.navbar{background:linear-gradient(135deg,#1e3c72,#2a5298);padding:1rem 2rem;box-shadow:0 2px 8px #0000004d;position:sticky;top:0;z-index:50;border-bottom:1px solid rgba(255,255,255,.1)}.navbar-container{max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}.navbar-brand{font-size:1.5rem;font-weight:700;color:#fff;text-decoration:none;letter-spacing:-.5px}.navbar-brand:hover{color:#ffc107}.navbar-menu{display:flex;gap:2rem;list-style:none;align-items:center}.navbar-link{color:#ffffffe6;text-decoration:none;font-weight:500;font-size:.95rem;transition:all .3s ease;padding:.5rem 1rem;border-radius:6px}.navbar-link:hover{color:#ffc107;background:#ffc1071a}.navbar-link.active{color:#ffc107;background:#ffc10726}.navbar-toggle{display:none;background:none;border:none;color:#fff;font-size:1.5rem;cursor:pointer}@media (max-width: 968px){.navbar-menu{position:fixed;top:60px;right:-100%;flex-direction:column;background:#1e3c72;width:250px;height:calc(100vh - 60px);padding:2rem;transition:right .3s ease;box-shadow:-2px 0 8px #0000004d}.navbar-menu.open{right:0}.navbar-toggle{display:block}.navbar-link{width:100%}}.home-page{width:100%;margin:0;padding:0}.hero-banner{position:relative;width:calc(100% + 4rem);margin:-2rem -2rem 3rem;min-height:500px;background:linear-gradient(135deg,#2c3e50,#34495e);background-image:url(/images/mountain-bg.jpg);background-size:cover;background-position:center;background-repeat:no-repeat;overflow:hidden;border-radius:0 0 20px 20px}.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,#2c3e50d9,#34495ebf)}.hero-content-wrapper{position:relative;z-index:2;display:grid;grid-template-columns:1.2fr .8fr;gap:3rem;align-items:center;padding:4rem 3rem;max-width:1400px;margin:0 auto}.hero-text{color:#fff}.hero-main-title{font-size:4rem;font-weight:900;line-height:1.1;margin-bottom:1.5rem;color:#fff;text-shadow:2px 2px 4px rgba(0,0,0,.3)}.hero-code-text{font-size:1.3rem;margin-bottom:2.5rem;line-height:1.6;color:#fffffff2;min-height:2.5rem;transition:opacity .5s ease-in-out}.hero-code-text.fade-in{opacity:1;animation:fadeIn .5s ease-in}.hero-code-text.fade-out{opacity:0;animation:fadeOut .5s ease-out}@keyframes fadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeOut{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(10px)}}.code-tag{color:#ffc107;font-weight:600}.btn-explore{display:inline-block;padding:1rem 2.5rem;background-color:#ffc107;color:#1a1e2e;font-weight:700;font-size:1rem;text-decoration:none;border-radius:6px;transition:all .3s ease;box-shadow:0 4px 12px #ffc1074d}.btn-explore:hover{background-color:#ffd54f;transform:translateY(-2px);box-shadow:0 6px 20px #ffc10780}.hero-image-container{display:flex;justify-content:center;align-items:center}.hero-profile-image{width:100%;max-width:350px;height:auto;border-radius:12px;box-shadow:0 12px 40px #0006;border:4px solid rgba(255,193,7,.3);object-fit:cover;transition:all .3s ease}.hero-profile-image:hover{transform:scale(1.05);box-shadow:0 16px 50px #ffc10766}.stats-section{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;margin:3rem 0;padding:0}.stat-item{text-align:center;padding:2rem 1rem;background:#1a1f2e99;border-radius:12px;border:1px solid rgba(255,193,7,.2);box-shadow:0 4px 12px #0000004d;transition:all .3s ease}.stat-item:hover{transform:translateY(-5px);box-shadow:0 8px 24px #ffc1074d;border-color:#ffc107;background:#1a1f2ecc}.stat-number{font-size:2.5rem;font-weight:700;color:#ffc107;margin-bottom:.5rem}.stat-label{font-size:1rem;color:#b0b0b0}.services-section{margin:4rem 0}.section-title{color:#fff;font-size:2.5rem;font-weight:700;margin-bottom:2.5rem;text-align:center}.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.service-card{background:#1a1f2e99;padding:2rem;border-radius:12px;box-shadow:0 4px 16px #0000004d;transition:all .3s ease;border:2px solid rgba(255,255,255,.1)}.service-card:hover{transform:translateY(-8px);box-shadow:0 12px 32px #61dafb4d;border-color:#61dafb;background:#1a1f2ecc}.service-icon{font-size:3rem;margin-bottom:1rem}.service-card h3{color:#fff;font-size:1.5rem;margin-bottom:1rem}.service-card p{color:#b0b0b0;line-height:1.7;margin-bottom:1.5rem}.service-link{color:#61dafb;text-decoration:none;font-weight:600;transition:all .3s}.service-link:hover{color:#ffc107}.recommendations-section{margin:4rem 0;padding:3rem 0}.recommendations-carousel{position:relative;max-width:900px;margin:0 auto;display:flex;align-items:center;gap:2rem}.recommendation-card{background:#1a1f2e99;padding:2.5rem;border-radius:16px;border:1px solid rgba(255,255,255,.1);box-shadow:0 8px 24px #0000004d;flex:1}.recommendation-header{display:flex;align-items:center;gap:1.5rem;margin-bottom:1.5rem}.recommendation-photo{width:80px;height:80px;border-radius:50%;object-fit:cover;border:3px solid #FFC107;box-shadow:0 4px 12px #ffc1074d}.recommendation-info h3{color:#fff;font-size:1.3rem;margin-bottom:.3rem}.recommendation-title{color:#b0b0b0;font-size:.9rem;font-style:italic}.recommendation-text{color:#b0b0b0;line-height:1.8;margin-bottom:1.5rem;font-size:1rem}.recommendation-rating{display:flex;gap:.3rem;margin-top:.5rem}.rating-box{color:#ffc107;font-size:1.5rem;line-height:1}.rating-box:before{content:"⭐"}.carousel-btn{background:#ffc10733;border:2px solid #FFC107;color:#ffc107;width:50px;height:50px;border-radius:50%;font-size:2rem;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center}.carousel-btn:hover{background:#ffc107;color:#1a1e2e;transform:scale(1.1)}.carousel-indicators{display:flex;justify-content:center;gap:1rem;margin-top:2rem}.indicator{width:40px;height:4px;background:#ffc1074d;border:none;border-radius:2px;cursor:pointer;transition:all .3s ease}.indicator.active{background:#ffc107;width:60px}.clients-section{margin:4rem 0;padding:3rem 0}.clients-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:3rem;align-items:center;max-width:1200px;margin:0 auto}.client-logo{display:flex;align-items:center;justify-content:center;padding:2rem;background:#1a1f2e66;border-radius:12px;border:1px solid rgba(255,255,255,.05);transition:all .3s ease;height:140px;text-decoration:none;cursor:pointer}.client-logo:hover{background:#1a1f2e99;border-color:#ffc107;transform:translateY(-5px) scale(1.05);box-shadow:0 8px 20px #ffc1074d}.client-logo img{max-width:100%;max-height:100px;width:auto;height:auto;object-fit:contain;filter:grayscale(100%) brightness(.8);transition:all .3s ease;pointer-events:none}.client-logo:hover img{filter:grayscale(0%) brightness(1);transform:scale(1.1)}.cta-section{background:linear-gradient(135deg,#1e3c72,#2a5298);color:#fff;padding:4rem 3rem;border-radius:12px;text-align:center;margin:4rem 0;box-shadow:0 8px 24px #0006;border:1px solid rgba(255,255,255,.1)}.cta-section h2{font-size:2.5rem;margin-bottom:1rem;color:#fff}.cta-section p{font-size:1.2rem;margin-bottom:2rem;opacity:.95}.cta-section .btn-primary{background-color:#ffc107;color:#1a1e2e}.cta-section .btn-primary:hover{background-color:#ffd54f;color:#1a1e2e}@media (max-width: 968px){.hero-banner{width:100%;margin:0 0 2rem;border-radius:0}.hero-content-wrapper{grid-template-columns:1fr;padding:3rem 2rem;text-align:center}.hero-main-title{font-size:2.5rem}.hero-code-text{font-size:1.1rem}.hero-image-container{order:-1;margin-bottom:2rem}.hero-profile-image{max-width:250px}.stats-section{grid-template-columns:repeat(2,1fr);gap:1.5rem}.stat-number{font-size:2rem}.services-grid{grid-template-columns:1fr}.section-title{font-size:2rem}.recommendations-carousel{flex-direction:column;gap:1rem}.carousel-btn{position:absolute;z-index:10}.prev-btn{left:-10px}.next-btn{right:-10px}.clients-grid{grid-template-columns:repeat(2,1fr);gap:2rem}.client-logo{height:120px;padding:1.5rem}.client-logo img{max-height:80px}.cta-section{padding:3rem 2rem}.cta-section h2{font-size:2rem}}.markdown-content{max-width:900px;margin:0 auto;padding:2rem;line-height:1.8;color:#333;animation:fadeIn .4s ease-in;width:100%;max-width:100%;box-sizing:border-box;overflow-wrap:break-word;word-wrap:break-word;overflow-x:hidden}.markdown-content img,.md-image{max-width:100%!important;height:auto!important}.md-code-block,.markdown-content pre{max-width:100%;overflow-x:auto;white-space:pre-wrap;word-wrap:break-word}.md-table,.markdown-content table{max-width:100%;display:block;overflow-x:auto}.info-page{max-width:1000px;margin:0 auto;overflow-x:hidden}.tabs{display:flex;gap:.5rem;margin-bottom:2rem;border-bottom:2px solid #e0e0e0;flex-wrap:wrap;overflow-x:auto}.tab{padding:1rem 2rem;background-color:transparent;border:none;border-bottom:3px solid transparent;font-size:1.1rem;font-weight:600;color:#666;cursor:pointer;transition:all .3s;white-space:nowrap}.tab:hover{color:#2a5298;background-color:#61dafb1a}.tab.active{color:#2a5298;border-bottom-color:#61dafb}.tab-content{animation:fadeIn .4s ease-in;width:100%;max-width:100%;overflow-x:hidden}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@media (max-width: 768px){.info-page{padding:1rem}.tabs{flex-direction:column;border-bottom:none}.tab{border-left:3px solid transparent;border-bottom:1px solid #e0e0e0;text-align:left;padding:1rem}.tab.active{border-left-color:#61dafb;border-bottom-color:#e0e0e0}}.servicios-page{max-width:1200px;margin:0 auto;padding:2rem}.servicios-page h1{color:#fff;font-size:2.5rem;text-align:center;margin-bottom:1rem;border-bottom:3px solid #61dafb;padding-bottom:1rem}.page-description{font-size:1.1rem;color:#b0b0b0;margin-bottom:3rem;text-align:center;max-width:800px;margin-left:auto;margin-right:auto}.servicios-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:2rem;margin-bottom:4rem}.servicio-card{background:#1a1f2e99;padding:2rem;border-radius:12px;border:2px solid rgba(255,255,255,.1);transition:all .3s ease;display:flex;flex-direction:column;box-shadow:0 4px 16px #0000004d}.servicio-card:hover{transform:translateY(-8px);box-shadow:0 12px 32px #61dafb4d;border-color:#61dafb;background:#1a1f2ecc}.servicio-icon{font-size:3.5rem;margin-bottom:1rem;text-align:center}.servicio-card h3{color:#fff;font-size:1.5rem;margin-bottom:1rem;text-align:center}.servicio-description{color:#b0b0b0;line-height:1.7;margin-bottom:1.5rem;text-align:center;flex-grow:1}.servicio-details{background:#0f141980;padding:1.5rem;border-radius:8px;margin-bottom:1.5rem;border:1px solid rgba(255,193,7,.2)}.servicio-details h4{color:#61dafb;margin-bottom:.75rem;font-size:1.1rem}.servicio-details ul{list-style:none;padding:0}.servicio-details li{color:#b0b0b0;position:relative;padding:.5rem 0 .5rem 1.5rem}.servicio-details li:before{content:"✓";position:absolute;left:0;color:#ffc107;font-weight:700}.btn-link{text-align:center;padding:.75rem 1.5rem;background:linear-gradient(135deg,#ffc107,#ffd54f);color:#1a1e2e;text-decoration:none;border-radius:6px;font-weight:600;transition:all .3s;display:block}.btn-link:hover{transform:translateY(-2px);box-shadow:0 4px 12px #ffc10766}.cta-servicios{background:linear-gradient(135deg,#1e3c72,#2a5298);color:#fff;padding:3rem;border-radius:12px;text-align:center;margin-top:4rem;box-shadow:0 8px 24px #0006;border:1px solid rgba(255,255,255,.1)}.cta-servicios h2{color:#fff;font-size:2rem;margin-bottom:1rem}.cta-servicios p{font-size:1.1rem;margin-bottom:2rem;opacity:.95}.cta-servicios .btn-primary{display:inline-block;padding:1rem 2.5rem;background-color:#ffc107;color:#1a1e2e;text-decoration:none;border-radius:8px;font-weight:600;font-size:1.1rem;transition:all .3s ease}.cta-servicios .btn-primary:hover{background-color:#ffd54f;color:#1a1e2e;transform:translateY(-2px);box-shadow:0 6px 20px #ffc10766}@media (max-width: 768px){.servicios-grid{grid-template-columns:1fr}.servicio-card{padding:1.5rem}.servicios-page h1{font-size:2rem}.cta-servicios{padding:2rem}.cta-servicios h2{font-size:1.5rem}}.proyectos-page{max-width:1200px;margin:0 auto}.page-description{font-size:1.1rem;color:#666;margin-bottom:3rem;text-align:center}.proyectos-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem}.proyecto-card{background-color:#f9f9f9;padding:2rem;border-radius:12px;border:2px solid #e0e0e0;transition:all .3s ease;display:flex;flex-direction:column}.proyecto-card:hover{transform:translateY(-8px);box-shadow:0 12px 32px #61dafb4d;border-color:#61dafb}.proyecto-icon{font-size:3.5rem;margin-bottom:1rem;text-align:center}.proyecto-card h3{color:#1e3c72;font-size:1.5rem;margin-bottom:.75rem}.proyecto-card p{color:#666;line-height:1.6;margin-bottom:1.5rem;flex-grow:1}.technologies{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.5rem}.tech-tag{background-color:#61dafb;color:#1e3c72;padding:.35rem .75rem;border-radius:20px;font-size:.85rem;font-weight:600}.proyecto-links{display:flex;gap:1rem}.btn-link{flex:1;text-align:center;padding:.75rem 1.5rem;background-color:#2a5298;color:#fff;text-decoration:none;border-radius:6px;font-weight:600;transition:all .3s}.btn-link:hover{background-color:#1e3c72;transform:translateY(-2px)}.btn-link.demo{background-color:#61dafb;color:#1e3c72}.btn-link.demo:hover{background-color:#4fa8c5}@media (max-width: 768px){.proyectos-grid{grid-template-columns:1fr}}.docencia-page{max-width:1200px;margin:0 auto}.page-intro{font-size:1.1rem;color:#666;text-align:center;max-width:800px;margin:0 auto 3rem}.section{margin-bottom:4rem}.section h2{color:#1e3c72;font-size:2rem;margin-bottom:2rem;border-left:5px solid #61dafb;padding-left:1rem}.cursos-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem}.curso-card{background-color:#f9f9f9;border:2px solid #e0e0e0;border-radius:12px;padding:1.5rem;transition:all .3s ease;display:flex;flex-direction:column}.curso-card:hover{transform:translateY(-8px);box-shadow:0 12px 32px #61dafb4d;border-color:#61dafb}.curso-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.curso-icono{font-size:3rem}.nivel-badge{padding:.35rem .75rem;border-radius:20px;font-size:.85rem;font-weight:600}.nivel-principiante{background-color:#d4edda;color:#155724}.nivel-intermedio{background-color:#fff3cd;color:#856404}.nivel-avanzado{background-color:#f8d7da;color:#721c24}.curso-card h3{color:#1e3c72;font-size:1.4rem;margin-bottom:.75rem}.curso-card p{color:#666;line-height:1.6;margin-bottom:1rem;flex-grow:1}.curso-info{display:flex;gap:1rem;margin-bottom:1rem;padding:.75rem;background-color:#fff;border-radius:6px}.info-item{color:#555;font-size:.9rem;font-weight:500}.temas-list{margin-bottom:1.5rem}.temas-list strong{display:block;color:#2a5298;margin-bottom:.5rem;font-size:.9rem}.temas-tags{display:flex;flex-wrap:wrap;gap:.5rem}.tema-tag{background-color:#e3f2fd;color:#1e3c72;padding:.25rem .6rem;border-radius:4px;font-size:.85rem}.btn-curso{background:linear-gradient(135deg,#2a5298,#61dafb);color:#fff;border:none;padding:.75rem 1.5rem;border-radius:6px;font-weight:600;cursor:pointer;transition:all .3s}.btn-curso:hover{transform:translateY(-2px);box-shadow:0 4px 12px #61dafb66}.recursos-list{display:flex;flex-direction:column;gap:1.5rem}.recurso-item{display:flex;align-items:center;gap:1.5rem;background-color:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:1.5rem;transition:all .3s}.recurso-item:hover{box-shadow:0 4px 16px #0000001a;border-color:#61dafb}.recurso-tipo{background-color:#61dafb;color:#1e3c72;padding:.5rem 1rem;border-radius:6px;font-weight:700;font-size:.9rem;white-space:nowrap}.recurso-content{flex:1}.recurso-content h3{color:#1e3c72;margin-bottom:.25rem;font-size:1.2rem}.recurso-content p{color:#666;font-size:.95rem;margin:0}.btn-descargar{background-color:#2a5298;color:#fff;padding:.75rem 1.5rem;border-radius:6px;text-decoration:none;font-weight:600;transition:all .3s;white-space:nowrap}.btn-descargar:hover{background-color:#1e3c72;transform:translateY(-2px)}.cta-docencia{background:linear-gradient(135deg,#1e3c72,#2a5298);color:#fff;padding:3rem;border-radius:12px;text-align:center;margin-top:4rem}.cta-docencia h2{color:#fff;border:none;padding:0;margin-bottom:1rem}.cta-docencia p{font-size:1.1rem;margin-bottom:2rem;opacity:.95}.cta-docencia .btn-primary{background-color:#fff;color:#2a5298}.cta-docencia .btn-primary:hover{background-color:#61dafb;color:#fff}@media (max-width: 768px){.cursos-grid{grid-template-columns:1fr}.recurso-item{flex-direction:column;text-align:center}.btn-descargar{width:100%}}.contacto-page{max-width:1200px;margin:0 auto}.page-intro{font-size:1.1rem;color:#666;text-align:center;max-width:700px;margin:0 auto 3rem}.contacto-container{display:grid;grid-template-columns:1fr 1.5fr;gap:3rem}.contacto-info h2{color:#1e3c72;margin-bottom:1.5rem;font-size:1.8rem}.info-card{display:flex;align-items:center;gap:1rem;padding:1.25rem;background-color:#f9f9f9;border-radius:8px;margin-bottom:1rem;transition:all .3s}.info-card:hover{background-color:#e3f2fd;transform:translate(5px)}.info-icon{font-size:2rem;min-width:50px;text-align:center}.info-card h3{color:#2a5298;margin:0 0 .25rem;font-size:1rem}.info-card a{color:#61dafb;text-decoration:none;font-weight:500}.info-card a:hover{text-decoration:underline}.disponibilidad{background:linear-gradient(135deg,#1e3c72,#2a5298);color:#fff;padding:1.5rem;border-radius:8px;margin-top:2rem}.disponibilidad h3{color:#fff;margin-bottom:.75rem}.disponibilidad p{margin:0;opacity:.95;line-height:1.6}.contacto-form-container h2{color:#1e3c72;margin-bottom:1.5rem;font-size:1.8rem}.success-message{background-color:#d4edda;color:#155724;padding:1rem;border-radius:6px;margin-bottom:1.5rem;border:1px solid #c3e6cb;animation:slideDown .3s ease-out}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.contacto-form{display:flex;flex-direction:column;gap:1.5rem}.form-group{display:flex;flex-direction:column}.form-group label{color:#1e3c72;font-weight:600;margin-bottom:.5rem;font-size:.95rem}.form-group input,.form-group textarea{padding:.875rem;border:2px solid #e0e0e0;border-radius:6px;font-size:1rem;font-family:inherit;transition:all .3s;background-color:#fff}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:#61dafb;box-shadow:0 0 0 3px #61dafb1a}.form-group input.error,.form-group textarea.error{border-color:#e74c3c}.form-group textarea{resize:vertical;min-height:120px}.error-message{color:#e74c3c;font-size:.85rem;margin-top:.25rem}.btn-submit{background:linear-gradient(135deg,#2a5298,#61dafb);color:#fff;padding:1rem 2rem;border:none;border-radius:6px;font-size:1.1rem;font-weight:600;cursor:pointer;transition:all .3s}.btn-submit:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 6px 20px #61dafb66}.btn-submit:disabled{opacity:.6;cursor:not-allowed}@media (max-width: 968px){.contacto-container{grid-template-columns:1fr;gap:2rem}.contacto-info{order:2}.contacto-form-container{order:1}}@media (max-width: 576px){.info-card{flex-direction:column;text-align:center}}.legal-page{max-width:900px;margin:0 auto}.legal-content{line-height:1.8}.legal-section{margin-bottom:3rem;padding-bottom:2rem;border-bottom:1px solid #e0e0e0}.legal-section:last-of-type{border-bottom:none}.legal-section h2{color:#1e3c72;font-size:1.8rem;margin-bottom:1.5rem}.legal-section h3{color:#2a5298;font-size:1.3rem;margin-top:1.5rem;margin-bottom:.75rem}.legal-section p{color:#555;margin-bottom:1rem}.legal-section a{color:#61dafb;text-decoration:none;font-weight:500}.legal-section a:hover{text-decoration:underline}.license-badge{display:flex;align-items:center;gap:1rem;background-color:#f9f9f9;padding:1rem;border-radius:8px;margin-bottom:1.5rem;border-left:4px solid #61dafb}.license-badge img{width:88px;height:31px}.license-badge p{margin:0;font-weight:600;color:#1e3c72}.permisos-list{list-style:none;padding:0;margin:1rem 0}.permisos-list li{padding:.75rem 1rem;margin-bottom:.5rem;border-radius:6px;display:flex;align-items:flex-start;gap:.5rem}.permitido li{background-color:#d4edda;border-left:4px solid #28a745}.condiciones li{background-color:#d1ecf1;border-left:4px solid #17a2b8}.prohibido li{background-color:#f8d7da;border-left:4px solid #dc3545}.permisos-list strong{color:#1e3c72}.btn-link{display:inline-block;margin-top:1rem;padding:.75rem 1.5rem;background:linear-gradient(135deg,#2a5298,#61dafb);color:#fff!important;text-decoration:none!important;border-radius:6px;font-weight:600;transition:all .3s}.btn-link:hover{transform:translateY(-2px);box-shadow:0 4px 12px #61dafb66}.copyright{background:linear-gradient(135deg,#f8f9fa,#e9ecef);padding:1.5rem;border-radius:8px;border:2px solid #dee2e6}.copyright h2{color:#1e3c72}.contacto-legal{background-color:#f9f9f9;padding:1.5rem;border-radius:8px}.contact-info{background-color:#fff;padding:1rem;border-radius:6px;border-left:4px solid #61dafb;margin-top:1rem}.contact-info strong{color:#2a5298}.last-updated{text-align:center;margin-top:3rem;padding-top:2rem;border-top:2px solid #e0e0e0}.last-updated p{color:#999;font-style:italic;font-size:.9rem}@media (max-width: 768px){.legal-section h2{font-size:1.5rem}.legal-section h3{font-size:1.2rem}.license-badge{flex-direction:column;text-align:center}.permisos-list li{font-size:.95rem}}.blog-page{max-width:1200px;margin:0 auto}.blog-header{text-align:center;margin-bottom:3rem}.blog-header h1{color:#1e3c72;font-size:3rem;margin-bottom:1rem}.blog-subtitle{font-size:1.2rem;color:#666;max-width:700px;margin:0 auto;line-height:1.6}.category-filters{display:flex;justify-content:center;flex-wrap:wrap;gap:.75rem;margin-bottom:3rem;padding:1.5rem;background-color:#f9f9f9;border-radius:12px}.category-btn{padding:.6rem 1.5rem;background-color:#fff;color:#555;border:2px solid #e0e0e0;border-radius:25px;font-weight:600;cursor:pointer;transition:all .3s;font-size:.95rem}.category-btn:hover{border-color:#61dafb;color:#2a5298;transform:translateY(-2px)}.category-btn.active{background:linear-gradient(135deg,#2a5298,#61dafb);color:#fff;border-color:transparent}.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:2rem;margin-bottom:4rem}.blog-card{background-color:#fff;border:2px solid #e0e0e0;border-radius:12px;overflow:hidden;transition:all .3s ease;display:flex;flex-direction:column;height:100%}.blog-card:hover{transform:translateY(-8px);box-shadow:0 12px 32px #61dafb4d;border-color:#61dafb}.blog-image{background:linear-gradient(135deg,#1e3c72,#2a5298);display:flex;align-items:center;justify-content:center;height:150px;font-size:4rem}.blog-content{padding:1.5rem;display:flex;flex-direction:column;flex-grow:1}.blog-meta{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.blog-category{background-color:#61dafb;color:#1e3c72;padding:.35rem .75rem;border-radius:20px;font-size:.85rem;font-weight:700}.blog-date{color:#999;font-size:.9rem}.blog-card h2{color:#1e3c72;font-size:1.5rem;margin-bottom:.75rem;line-height:1.3}.blog-card p{color:#666;line-height:1.7;margin-bottom:auto;flex-grow:1}.blog-footer{display:flex;justify-content:space-between;align-items:center;margin-top:1.5rem;padding-top:1rem;border-top:1px solid #e0e0e0}.read-time{color:#999;font-size:.9rem}.btn-read{background-color:transparent;color:#2a5298;border:none;font-weight:600;cursor:pointer;transition:all .3s;font-size:1rem}.btn-read:hover{color:#61dafb;transform:translate(5px)}.no-posts{grid-column:1 / -1;text-align:center;padding:4rem 2rem;background-color:#f9f9f9;border-radius:12px}.no-posts p{color:#999;font-size:1.2rem}.newsletter-cta{background:linear-gradient(135deg,#1e3c72,#2a5298);color:#fff;padding:3rem;border-radius:12px;text-align:center;box-shadow:0 8px 24px #00000026}.newsletter-cta h2{color:#fff;font-size:2rem;margin-bottom:.75rem}.newsletter-cta p{font-size:1.1rem;margin-bottom:2rem;opacity:.95}.newsletter-form{display:flex;gap:1rem;max-width:500px;margin:0 auto}.newsletter-input{flex:1;padding:.875rem 1.25rem;border:2px solid white;border-radius:8px;font-size:1rem;background-color:#ffffffe6}.newsletter-input:focus{outline:none;background-color:#fff;box-shadow:0 0 0 3px #61dafb4d}.btn-subscribe{padding:.875rem 2rem;background-color:#fff;color:#2a5298;border:none;border-radius:8px;font-weight:700;cursor:pointer;transition:all .3s;font-size:1rem}.btn-subscribe:hover{background-color:#61dafb;color:#fff;transform:translateY(-2px)}@media (max-width: 768px){.blog-header h1{font-size:2.5rem}.blog-grid{grid-template-columns:1fr}.category-filters{padding:1rem}.newsletter-form{flex-direction:column}.btn-subscribe{width:100%}}*{margin:0;padding:0;box-sizing:border-box}html{overflow-x:hidden;width:100%}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden;width:100%;min-height:100vh;background-color:#0f1419}#root{overflow-x:hidden;width:100%}.App{display:flex;min-height:100vh;background-color:#0f1419;width:100%;overflow-x:hidden}.app-container{flex:1;margin-left:280px;display:flex;flex-direction:column;min-height:100vh;width:calc(100% - 280px);background-color:#0f1419}.main-content{flex:1;width:100%;max-width:1400px;margin:0 auto;padding:2rem;box-sizing:border-box}.page{background-color:#1a1f2e;padding:2.5rem;border-radius:12px;box-shadow:0 4px 16px #0000004d;animation:slideUp .4s ease-out;width:100%;box-sizing:border-box}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.page h1{color:#fff;margin-bottom:1.5rem;font-size:2.5rem;border-bottom:3px solid #61dafb;padding-bottom:.5rem}.page h2{color:#61dafb;margin-top:2rem;margin-bottom:1rem;font-size:1.8rem}.page p{line-height:1.8;color:#b0b0b0;margin-bottom:1rem}.footer{background:linear-gradient(135deg,#1a1f2e,#2a3544);color:#fff;text-align:center;padding:2rem;margin-top:4rem;width:100%;border-top:1px solid rgba(255,255,255,.1)}.footer p{margin:.5rem 0;color:#b0b0b0}.footer a{color:#ffc107;text-decoration:none;transition:color .3s}.footer a:hover{color:#ffd54f}.section{margin-bottom:3rem}.grid-2{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:2rem}.card{background-color:#1a1f2e;border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:1.5rem;transition:all .3s ease}.card:hover{transform:translateY(-5px);box-shadow:0 8px 24px #ffc10733;border-color:#ffc107}.btn-primary{background:linear-gradient(135deg,#ffc107,#ffd54f);color:#1a1e2e;padding:.75rem 2rem;border:none;border-radius:6px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s;text-decoration:none;display:inline-block}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 4px 12px #ffc10766}@media (max-width: 968px){.app-container{margin-left:0;width:100%}.main-content{padding:1rem}.page{padding:1.5rem}.page h1{font-size:2rem}.page h2{font-size:1.5rem}.grid-2{grid-template-columns:1fr}}
