* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
html {
    scroll-behavior: smooth;
}
  
body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    background-color: #ffffff;
    color: #3a3a3a;
    font-size: 0.95rem;
    -webkit-text-size-adjust: 100%;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

  h1, .hero-text h1, .about-hero h1, .blog-hero h1, .legal-hero h1 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.02em; 
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}

h2, 
.process-header h2, 
.services-header h2, 
.projects-header h2, 
.faq-header h2, 
.contact-header h2, 
.about-text h2,
.post-content h2 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}

.hero-text h1,
.about-hero h1, 
.blog-hero h1, 
.legal-hero h1,
.contact-header h2, 
.cta-content h2, 
.about-cta h2 {
    color: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center; 
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 100px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
  
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    color: #1d1d1f; 
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1rem;
    cursor: pointer;
    border: none;
  }
  
.btn:hover {
    background-color: #ecebeb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

.main-header {
    background-color: #f5f5f7;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; 
}
  
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 75%; 
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
}

.nav-menu-wrapper {
    display: contents; 
}

.nav-group {
    display: flex;
    list-style: none;
    gap: 55px;
    flex: 1; 
}

.nav-group:first-of-type {
    order: 1;
    display: flex;
    justify-content: flex-start;
}
  
.nav-group:last-of-type {
    order: 3;
    display: flex;
    justify-content: flex-end;
}

.nav-group li a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 500;
    font-size: 0.8rem;
    transition: opacity 0.3s ease;
}

.nav-group li a:hover {
    opacity: 0.6;
}

.logo {
    order: 2; 
    display: flex;
    justify-content: center;
    padding: 3px 40px 0px 40px;
}

.logo img {
    height: 55px; 
    width: auto;
}
  
.bottom-bar {
    width: 100%;
    background-color: #ffffff;
    height: 15px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.bottom-bar-container {
    width: 75%; 
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; 
    align-items: center;
}

.lang-selector {
    font-size: 0.7rem;
    color: #86868b;
    letter-spacing: 1px;
}

.lang-selector a {
    text-decoration: none;
    color: #3a3a3a;
    transition: opacity 0.3s;
}

.lang-selector .active {
    color: #3a3a3a;
    font-weight: bold;
}
  
.close-menu-btn{
    display: none;
}

.active-nav {
    color: #3a3a3a !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

main {
    margin-top: 75px;
}
  
/* --- SECCIÓN HERO --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    background-color: #292929; 
    color: #ffffff;
    text-align: center;
    padding: 120px 0 80px 0;
} 
  
.hero-container {
    width: 85%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #a1a1a6; 
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.hero-text p strong {
    color: #ffffff;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center; 
}
  
/* --- SECCIÓN PROCESO --- */
.process {
    padding: 100px 0;
    background-color: #ffffff;
}

.process-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header p {
    color: #86868b;
    font-size: 1.1rem;
}

.step {
    position: relative;
    padding-top: 20px;
}

.step-number-bg {
    position: absolute;
    top: -25px;
    left: 0;
    width: 80px; 
    height: 80px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.07; 
    pointer-events: none;
    user-select: none;
}

/* Paso 01 */
.step:nth-child(1) .step-number-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='0.9em' font-family='-apple-system, BlinkMacSystemFont, %22Segoe UI%22, Roboto, Helvetica, Arial, sans-serif' font-size='80' font-weight='800' fill='black'%3E01%3C/text%3E%3C/svg%3E");
}

/* Paso 02 */
.step:nth-child(2) .step-number-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='0.9em' font-family='-apple-system, BlinkMacSystemFont, %22Segoe UI%22, Roboto, Helvetica, Arial, sans-serif' font-size='80' font-weight='800' fill='black'%3E02%3C/text%3E%3C/svg%3E");
}

/* Paso 03 */
.step:nth-child(3) .step-number-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='0.9em' font-family='-apple-system, BlinkMacSystemFont, %22Segoe UI%22, Roboto, Helvetica, Arial, sans-serif' font-size='80' font-weight='800' fill='black'%3E03%3C/text%3E%3C/svg%3E");
}

/* Paso 04 */
.step:nth-child(4) .step-number-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='0.9em' font-family='-apple-system, BlinkMacSystemFont, %22Segoe UI%22, Roboto, Helvetica, Arial, sans-serif' font-size='80' font-weight='800' fill='black'%3E04%3C/text%3E%3C/svg%3E");
}
  
.step h3 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    position: relative;
    z-index: 2; 
    font-weight: 500;
}

.step p {
    font-size: 1rem;
    color: #515154;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.step p strong {
    color: #515154;
}
  
/* --- SECCIÓN SERVICIOS --- */
.services {
    padding: 100px 0 0 0; 
    background-color: #f5f5f7; 
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 22px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #424245;
}

.service-card strong {
    color: #515154;
    font-weight: 600;
}
  
/* --- BLOQUE CTA --- */
.services-cta, .about-cta {
    width: 100%;
    background-color: #292929; 
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content .btn{
    margin-top: 10px;
}

/* --- SECCIÓN PROYECTOS --- */
.projects {
    padding: 100px 20px;
    background-color: #ffffff;
}

.projects-container {
    max-width: 1240px; 
    margin: 0 auto;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fbfbfd; 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.project-card:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
  
.project-image {
    width: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.project-info {
    padding: 25px;
}
  
.project-info .category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #424245; 
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.project-info h3 {
    font-size: 1.3rem;

    letter-spacing: -0.02em;
    font-weight: 500;
    margin: 5px 0 12px 0;
}

.project-info p {
    font-size: 0.95rem;
    color: #6e6e73;
    line-height: 1.5;
}

/* --- SECCIÓN FAQ --- */
.faq {
    padding: 100px 0;
    background-color: #f5f5f7; 
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.02rem;
    text-align: center;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #424245;
    text-align: center;
}


/* --- SECCIÓN CONTACTO --- */
.contact {
    padding: 100px 20px;
    background-color: #292929;
}

.contact-container {
    max-width: 1000px; 
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header p, .cta-content p, .about-cta p {
    font-size: 1rem;
    color: #a1a1a6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: stretch;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    margin-bottom: 10px;
}
  
.info-item h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.info-item p, .info-item a {
    font-size: 1rem;
    color: #a1a1a6;
    text-decoration: none;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fbfbfd;
    transition: border-color 0.3s ease;
}
  
.form-group input:focus, 
.form-group textarea:focus {
      outline: none;
      border-color: black; 
}
  
.contact-form .btn {
    width: fit-content;
    padding: 15px 40px;
    cursor: pointer;
    border: none;
    margin-top: auto;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px 0;
    text-align: left;
}

.checkbox-group input {
    margin: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: #a1a1a6;
    line-height: 1.2;
    cursor: pointer;
    margin: 0;
}

.checkbox-group label a {
    color: #ffffff; 
    text-decoration: none;
}
  
/* --- FOOTER --- */
.main-footer {
    background-color: #f5f5f7;
    padding: 12px 0; 
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    width: 75%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    font-size: 0.75rem;
    color: #292929;
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-tagline {
    font-weight: 500;
    color: #1d1d1f;
    margin: 0;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-center a {
    color: #292929;
    text-decoration: none;
}
  
.footer-right {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      gap: 15px;
}
  
.footer-right a {
    color: #292929;
    text-decoration: none;
}

.footer-right a:hover, .footer-center a:hover {
    color: #1d1d1f;
}

.separator {
    color: #292929;
}

.copyright {
    margin: 0;
    color: #292929;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
    
}

.whatsapp-btn:hover img {
    filter: grayscale(0%) brightness(1);
}
  
/* PÁGINA: SOBRE MÍ */
  
.about-hero, .blog-hero, .legal-hero{
    background-color: #292929;
    color: #ffffff;
    padding: 120px 20px 80px;
    text-align: center;
}

.about-section-wrapper {
    background-color: #f5f5f7;
    width: 100%;
    display: block;
}

.about-content {
    padding: 80px 20px 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.about-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #ffffff;
    pointer-events: none; 
    user-select: none;  
}
  
.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-skills-dark {
    background-color: #f5f5f7;
    width: 100%;
    display: block;
    padding: 40px 0 80px 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.skills-container {
    width: 75%;
    max-width: 1400px;
    margin: 0 auto;
}

.skills-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    text-align: center;
}

.skill-item {
    font-size: 1rem;
    line-height: 1.6;
    color: #424245;
}


.skill-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #3a3a3a;
}
  
  
  /* --- FILTROS DEL BLOG --- */
.category-filters {
    padding: 40px 0;
    background-color: #f5f5f7;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; 
}

.filter-btn {
    background-color: #ffffff;
    color: #1d1d1f;
    border: none;
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.filter-btn:hover {
    background-color: #e8e8ed;
}

.filter-btn.active {
    background-color: #292929;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-item {
    transition: all 0.4s ease;
}

.filter-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

/* --- ELEMENTOS ESPECÍFICOS DEL BLOG --- */

.post-date {
    display: block;
    font-size: 0.8rem;
    color: #6e6e73;
    margin-bottom: 8px;
    font-weight: 400;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #292929;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.read-more:hover {
    opacity: 0.6;
}

.projects-grid.blog-grid{
    margin-top: -45px;
}
/* --- FORMATO ESPECÍFICO DEL ARTÍCULO --- */

.back-to-blog-aside, .post-content a {
    text-decoration: none;
    color: #292929;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-blog-aside {
    display: inline-block;
    margin-bottom: 30px;
}

.post-content a{
    text-decoration: underline;
}

.back-to-blog-aside:hover, .post-content a:hover {
    color: #1d1d1f;
}

.post-main-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.post-date-footer {
    display: block;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f7;
    color: #86868b;
    font-size: 0.85rem;
    font-style: italic;
}

.blog-hero .category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.post-body {
    max-width: 850px;
    margin: 0 auto; 
    padding: 40px 20px;
}

.post-content h3{
    margin-bottom: 20px;
}

.post-content p {
    margin-bottom: 20px; 
    line-height: 1.5; 
    text-align: justify;
}

.post-content ul {
    margin-bottom: 30px; 
    padding-left: 40px;
}

.post-content li {
    margin-bottom: 15px; 
    line-height: 1.5;
    text-align: justify;
}

.post-footer-area {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f7;
    text-align: center;
}

.share-container p {
    margin-bottom: 20px;
}

.post-date-footer {
    display: block;
    margin-top: 0 !important; 
    margin-bottom: 20px;
    padding-top: 0 !important;
    border-top: none !important; 
    font-size: 0.8rem;
    color: #a1a1a6;
    font-style: italic;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    color: #ffffff !important; 
    text-decoration: none !important;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    filter: brightness(1.1);
}

.fb { background-color: #1877f2; }
.tw { background-color: #000000; }
.ln { background-color: #0077b5; }
.wa { background-color: #25d366; }

/* Banner Cookies */
.cookie-floating-card {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background:rgba(65, 65, 65, 0.585);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 25px;
    border-radius: 20px;
    display: none;
    z-index: 4000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-card-body p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.cookie-card-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-card {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-card.accept {
    background-color: #ffffff;
    color: #292929;
}

.btn-cookie-card.reject {
    background-color: #292929;
    color: #ffffff;
}

.btn-cookie-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.cookie-card-link {
    color: #ffffff;
    font-size: 0.75rem;
    text-align: center;
    text-decoration: none;
}

.cookie-card-link:hover {
    text-decoration: underline;
}

/* ESTILOS BASE PARA ELEMENTOS MÓVILES (Ocultos en PC) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
  
.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background-color: #3a3a3a;
    border-radius: 2px;
}
  
/* CONFIGURACIÓN RESPONSIVE */
  
@media (max-width: 1100px) {
    .header-container, 
    .bottom-bar-container,
    .footer-container {
        width: 95% !important;
        padding: 0 20px;
    }
  
    .nav-group {
        gap: 20px; 
    }
  
    .lang-selector {
        right: 45px;
    }
  
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 0;
    }
  
    .footer-left, .footer-center, .footer-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .process-steps, 
    .services-grid, 
    .projects-grid, 
    .faq-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }

    .step {
        
        padding-top: 45px; 
        overflow: visible; 
    }

    .step-number-bg {
        left: 20%;
        transform: translateX(-50%);
        top: -3px;
        width: 80px;
        height: 80px;
        opacity: 0.07; 
    }
}

@media (max-width: 768px) {

    main {
        margin-top: 85px;
    }

    .header-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        position: relative;
    }
  
    .logo {
        padding: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 3px;
    }
  
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        left: 0; 
        z-index: 1001;
    }
  
    .nav-menu-wrapper {
        display: flex; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background-color: rgba(245, 245, 247, 0.98); 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
  
    .nav-menu-wrapper .nav-group:last-of-type {
        margin-top: 25px; 
    }
  
    .nav-menu-wrapper.active {
        opacity: 1;
        visibility: visible;
    }
  
    .close-menu-btn {
        display: block !important; 
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 2.5rem;
  
        background: none;
        border: none;
        outline: none;
        -webkit-appearance: none; 
        box-shadow: none;
        padding: 0;
        color: #3a3a3a;
        cursor: pointer;
    }
  
    .nav-menu-wrapper .nav-group {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
        flex: none;
    }
  
    .nav-menu-wrapper .nav-group li a {
        font-size: 1.5rem;
    }
  
    .bottom-bar {
        height: auto; 
        padding: 3px 0; 
    }
  
    .bottom-bar-container {
        width: 100%; 
        padding: 0; 
        position: relative; 
    }
  
    .lang-selector {
        font-size: 0.9rem; 
    }
  
    .whatsapp-btn {
        bottom: 20px; 
        right: 20px;
        width: 60px; 
        height: 60px;
    }
      
    .whatsapp-btn img {
        filter: none !important;
    }

    .post-content {
        text-align: center; 
    }

    .post-content ul {
        list-style-position: inside; 
        padding-left: 0;
    }

    .post-date-footer {
        display: block; 
        text-align: center;
        width: 100%;
    }

    .services-grid, 
    .projects-grid, 
    .faq-grid, 
    .skills-mini-grid,
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .projects-grid.blog-grid {
        padding-top: 0 !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
  
    .contact-info {
        text-align: center; 
    }

    .contact-left{
        margin-top: 30px;
        order: 2;
    }

    .info-item h3 {
        text-align: center; 
    }
  
    .info-item p {
        text-align: center; 
        margin: 0 auto;
    }
      
    .contact-form .btn {
        margin: 0 auto; 
        display: block;  
        width: 100%;    
        max-width: 300px;
    }

    .project-card {
        margin-bottom: 10px;
        transform: none !important;
    }
  
    .project-card:hover, .service-card:hover, .service-card:hover i {
        transform: none !important; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .cookie-floating-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.4s ease-out;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s ease-out forwards;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.project-image {
    cursor: zoom-in;
}