@import url('./variables.css');
@import url('./reset.css');
@import url('./global.css');
header {
    position: fixed;
    top: 15px;
    width: 100vw;
    z-index: 1000;
    padding: var(--spacing-small) var(--spacing-medium);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
} 
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-logoName);
    font-size: var(--spacing-large);
    gap: 0.3rem;
}
.logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.openMenu, .closeMenu {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: var(--text-color);
    -webkit-user-select: none;
    user-select: none;
    transition: color 0.2s;
}
.openMenu:hover, .closeMenu:hover {
    color: var(--secondary-color);
}
.nav-menu li:last-child {
    margin-left: 0;
}
.nav-menu {
    display: flex;
    list-style-type: none;
    gap: 2.5rem;
    transition: all 0.3s;
    align-items: center;
}
.nav-menu a {
    position: relative;
    padding: 4px 0;
}
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 320ms cubic-bezier(.2,.9,.2,1);
    transform-origin: left center;
}
.nav-menu a::before {
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a:hover::before {
    width: 100%;
}
.nav-menu a::before{ 
    transition-delay: 70ms; 
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-container {
    display: flex;
    gap: 2rem;
}
.name {
    background: linear-gradient(135deg, #141E30, #35577D);
    border-radius: 3px;
    width: 12%;
    font-size: 10px;
    text-align: center;
    margin-bottom: -5px;
}
.btn-primary {
    background-color: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border: none;
    font-weight: bold;
}
.media-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.btn-primary:hover {
    color: var(--secondary-color);
}
.subtitle {
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.5;
}
.hero-text {
    padding-top: 10%;
    width: 650px;
}
.social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.social a {
    text-align: center;
    padding-top: 6px;
}
.social img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.work-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-color);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -20px;
}
.typing {
    display: inline-flex;
    align-items: center;
    min-width: 150px;
}
.typing .text {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color, #7F5AF0);
    white-space: nowrap;
    overflow: hidden;
}
.typing .cursor {
    width: 2px;
    height: 1.2em;
    background: var(--primary-color, #7F5AF0);
    margin-left: 3px;
    animation: blinkCursor 0.8s steps(2, start) infinite;
}
.highlight {
    color: var(--primary-color);
}
@keyframes blinkCursor {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: shadowMove 4s infinite ease-in-out;
}
.back-image {
    width: 250px;
    height: 442.25px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #24201d, #342a20);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: shadowMove 4s infinite ease-in-out;
}
@keyframes shadowMove {
    0% {
        box-shadow: -20px 0 20px rgba(255, 0, 0, 0.6);
    }
    25% {
        box-shadow: 0 20px 20px rgba(0, 255, 0, 0.6);
    }
    50% {
        box-shadow: 20px 0 20px rgba(0, 0, 255, 0.6);
    }
    75% {
        box-shadow: 0 -20px 20px rgba(255, 165, 0, 0.6);
    }
    100% {
        box-shadow: -20px 0 20px rgba(255, 0, 0, 0.6);
    } 
}
.bubble {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
    animation-name: floatUp;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes floatUp {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
        background: rgba(255, 0, 0, 0.3);
    }
    25% {
        transform: translate(var(--drift-x, 0px), -30vh) scale(1.1);
        opacity: 0.5;
        background: rgba(0, 255, 0, 0.3);
    }
    50% {
        transform: translate(calc(var(--drift-x, 0px) * -1), -60vh) scale(1.2);
        opacity: 0.4;
        background: rgba(0, 0, 255, 0.3);
    }
    75% {
        transform: translate(var(--drift-x, 0px), -90vh) scale(1.3);
        opacity: 0.3;
        background: rgba(255, 0, 255, 0.3);
    }
    100% {
        transform: translate(calc(var(--drift-x, 0px) * -1), -120vh) scale(1.5);
        opacity: 0;
        background: rgba(0, 255, 255, 0.3);
    }
}
.partner {
    display: flex;
    height: 20vh;
    align-items: center;
    overflow: hidden;
    margin-top: -50px;
    margin-bottom: -100px;
    z-index: 2;
    position: relative;
    border-radius: 3px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),   
        0 5px 10px rgba(0, 0, 0, 0.4),    
        0 -2px 6px rgba(255, 255, 255, 0.1); 
}
.partner-track {
    display: flex;
    gap: 2.5rem;
    animation: moveX 25s linear infinite;
}
.partner img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes moveX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about-me {
    display: flex;
    height: 100vh;
    justify-content: center;  
    align-items: center;
    gap: 3rem;
    box-shadow: 5px 2px 5px rgba(0, 0, 0, 0.1);
}
.about-me .slider-about {
    height: 450px;
    width: 400px;
    margin-top: 150px;
    border-radius: 20px;
    position: relative;
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.about-me .slider-about img {
    width: 100%;
    height: auto;
}
.text-about {
    width: 520px;
    margin-top: 150px;
}
.about-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 30px;
}
.about-card .card {
    display: flex;
    height: 90px;
    width: 140px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-card .card p {
    margin-top: -8px;
}
.about-me .slider-about,
.about-card .card {
    background: linear-gradient(135deg, #141E30, #35577D);
    background-blend-mode: overlay;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 -1px 3px rgba(255, 255, 255, 0.05);
}
.about-link {
    background-color: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border: none;
    font-weight: bold;
}
.about-link:hover {
    color: var(--secondary-color);
}
.about-tittle {
    background: linear-gradient(135deg, #141E30, #35577D);
    border-radius: 3px;
    width: 17%;
    font-size: 10px;
    text-align: center;
    margin-bottom: -2px;
}
.about-text {
    margin: 20px 0px;
    text-align: justify;
    line-height: 1.5;
}
.subtitle-word {
    color: var(--primary-color);
    margin-top: -12px;
    display: block;
}
.about-image,
.about-subtitle,
.subtitle-word,
.about-text {
    transition: opacity 0.5s ease;
}
.services {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    box-shadow: 5px 2px 5px rgba(0, 0, 0, 0.1);
}
.services .text-services {
    width: 35%;
}
.services .services-title {
    background: linear-gradient(135deg, #141E30, #35577D);
    border-radius: 3px;
    width: 15%;
    font-size: 10px;
    text-align: center;
}
.services .subtititle-services {
    text-transform: uppercase;
    font-size: 2.1em;
}
.services .desciption-services {
    text-align: justify;
    margin-bottom: 30px;
    line-height: 1.5;
}
.services .link-services {
    background-color: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border: none;
    font-weight: bold;
}
.services .link-services:hover {
    color: var(--secondary-color);
}
.services .space-services {
    margin-top: 15px;
    display: block;
}
.services .line-services {
    border: 2px solid var(--primary-color);
    width: 130px;
    border-radius: 3px;
    margin-bottom: 10px;
    margin-top: -8px;
}
.services .card-services {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: auto;
}
.services .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    height: 170px;
    width: 150px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    background: linear-gradient(135deg, #0B3037, #134E5E);
    background-blend-mode: overlay;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 -1px 3px rgba(255, 255, 255, 0.05);
}
.services .card:nth-child(1),
.services .card:nth-child(3) {
    margin-top: -10px;
}
.services .card:nth-child(3) {
    box-shadow: -5px 5px 0 rgba(195, 229, 130, 0.2);
}
.services .card:nth-child(2) {
    box-shadow: 5px -5px 0 rgba(195, 229, 130, 0.2);
}
.services .card:nth-child(1),
.services .card:nth-child(4) {
    background: linear-gradient(
    135deg,
        rgba(15, 32, 39, 0.4),   
        rgba(40, 98, 58, 0.4)   
    );
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 -1px 3px rgba(255, 255, 255, 0.05);
}
.services .card .card-text {
    line-height: 1.2;
    font-weight: 100;
}
.services .card .card-number {
    font-weight: bolder;
}
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}
.flyer-icon {
    font-size: 80px !important;
    color: #e91e63;
    line-height: 1;
}
.last-projets {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px 70px;
}
.projets-carousel {
    max-width: 1200px;
}
.projets-images {
    position: relative;        
    height: 500px;           
    margin: 20px 0;
    overflow: visible;       
    display: block;
}
.projets-item {
    position: absolute;
    top: 50%;                
    left: 40%;                
    width: 320px;              
    height: 420px;
    transform-origin: center center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 600ms cubic-bezier(.2,.8,.2,1),
                opacity 600ms cubic-bezier(.2,.8,.2,1),
                box-shadow 400ms ease;
    cursor: pointer;
    will-change: transform, opacity;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    background: #111;           
}
.projets-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}
.projets-item.center {
    z-index: 1000;                 
    box-shadow: 0 18px 50px rgba(0,0,0,0.7);
    transform: translateX(0) translateY(-50%) scale(1.18);
}
.projets-item.side { 
    z-index: 80;
    opacity: 0.95;
}
.projets-item.hidden {
    opacity: 0;
    pointer-events: none;
}
.projets-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}
.projets-buttons button {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: transform 160ms ease, background 180ms ease;
}
.projets-buttons button:hover { transform: translateY(-3px); }
.projets-buttons .pause { background: #444; }
.last-projets .text-projets .projets-title {
    background: linear-gradient(135deg, #141E30, #35577D);
    border-radius: 3px;
    width: 6%;
    font-size: 10px;
    text-align: center;
}
.last-projets .text-projets .subtitle-projets{
    margin-top: -5px;
    margin-bottom: 15px;
}
.last-projets .text-projets {
    margin-left: 75px;
}
.contact-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  padding: 60px 0;
}
.contact-container {
  display: flex;
  gap: 2.5rem;
  width: 90%;
  max-width: 1400px;
  justify-content: space-between;
}
.contact-whatsapp {
  width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whatsapp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 24px 24px;
  background: #25D366;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 4px 8px rgba(0,0,0,0.2);
  color: #fff;
  border: 2px solid #128C7E;
  min-width: 320px;
  max-width: 420px;
}
.whatsapp-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.whatsapp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.whatsapp-name {
  font-family: var(--font-logoName);
  font-size: 1.3em;
  margin-bottom: 8px;
  text-align: center;
}
.whatsapp-message {
  font-size: 1em;
  color: #fff;
  margin-bottom: 18px;
  text-align: center;
}
.whatsapp-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.whatsapp-input {
  min-height: 60px;
  border-radius: 10px;
  border: 1px solid #128C7E;
  padding: 10px;
  font-size: 1em;
  resize: vertical;
  background: #fff;
  color: #128C7E;
  margin-bottom: 8px;
}
.whatsapp-send {
  background: #128C7E;
  color: #fff;
  border-radius: 50px;
  padding: 12px 0;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 4px;
}
.whatsapp-send:hover {
  background: #25D366;
}
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.social-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: bold;
  font-size: 1em;
  color: #fff;
  transition: transform 0.18s;
  cursor: pointer;
  min-width: 260px;
  flex-direction: row;
  border: 2px solid transparent;
}
.social-card img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.social-title {
  font-size: 1em;
  font-weight: bold;
  margin-right: 6px;
}
.social-message {
  font-size: 0.75em;
  font-weight: 400;
}
.social-card.gmail {
  background: #EA4335;
  border-color: #EA4335;
}
.social-card.gmail .social-title,
.social-card.gmail .social-message {
  color: #fff;
}
.social-card.facebook {
  background: #1877F3;
  border-color: #1877F3;
}
.social-card.facebook .social-title,
.social-card.facebook .social-message {
  color: #fff;
}
.social-card.instagram {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-color: #DD2A7B;
}
.social-card.instagram .social-title,
.social-card.instagram .social-message {
  color: #fff;
}
.social-card:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.08);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.client-messages {
  width: 350px;
  height: 420px;
  background: linear-gradient(135deg, #141E30, #35577D);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 4px 8px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.messages-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  bottom: 0;
  width: 100%;
  animation: scrollMessages 200s linear infinite;
}
.client-message {
  background: #222;
  color: var(--text-color);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 18px;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  opacity: 0.92;
}
@keyframes scrollMessages {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}
.footer-simple {
  width: 100%;
  background: #181820;
  color: #fff;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  position: relative;
  z-index: 10;
}
.footer-content {
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
}
.footer-copy, .footer-author {
  cursor: pointer;
  color: var(--primary-color);
  position: relative;
  transition: color 0.2s;
}
.footer-copy:hover, .footer-author:hover {
  color: var(--secondary-color);
}
.footer-popup {
  display: none;
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 22px 28px 18px 28px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  z-index: 100;
}
.footer-popup-title {
  font-weight: bold;
  font-size: 0.85em;
  margin-bottom: 6px;
  display: block;
  text-decoration: underline;
}
.footer-popup-desc {
  font-size: 0.70em;
  margin-bottom: 12px;
  display: block;
}
.footer-whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-whatsapp-input {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid #128C7E;
  padding: 8px;
  font-size: 1em;
  resize: vertical;
  background: #fff;
  color: #128C7E;
}
.footer-whatsapp-btn {
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 0;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.footer-whatsapp-btn:hover {
  background: #128C7E;
}
.footer-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: red;
  border: none;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  z-index: 101;
  padding: 0;
  line-height: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s;
}
.footer-popup-close:hover {
  color: var(--primary-color);
}
@media (max-width: 768px) {
  header {
      position: fixed;
      padding: 8px 10px;
      top: 15px;
      width: 100vw;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  header .navbar {
    position: relative;
    padding: 5px;
  }
  header .brand-name {
    font-size: clamp(10px, 4.5vw, 35px);
  }
  header .logo {
    width: clamp(20px, 4vw, 32px);
    height: clamp(20px, 4vw, 32px);
  }
  header .nav-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    top: -25px;
    left: -10px;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    font-size: clamp(10px, 3vw, 30px);
    background: linear-gradient(135deg, #141E30, #35577D);
  }
  header .closeMenu {
    z-index: 2;
  }
  header .nav-menu.active {
    display: flex;
  }
}
@media ((min-width: 769px) and (max-width: 1024px)) {
  header {
    position: fixed;
    padding: 8px 10px;
    top: 15px;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}
header, .nav-menu, .closeMenu, .openMenu, a {
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding-top: 96px;
  }
  .hero .hero-container {
    flex-direction: column;
    width: 98vw;
    gap: 1.2rem;
    padding: 5px;
    justify-content: center;
    align-items: center;
  }
  .hero .hero-container .hero-text {
    padding: 5px;
    width: auto;
  }
  .hero-text .name { 
    padding-top: 3px;
    margin-bottom: clamp(0.1rem, -0.2rem, -0.5rem);
    width: clamp(60px, 11vw, 82px);
    font-size: clamp(8px, 1.4vw, 11px);
  }
  .hero-text h1 {
    font-size: clamp(10px, 5.7vw, 1.5em);
  }
  .work-text {
    text-align: center;
      font-size: 1em;
      gap: 0.3rem;
      margin-top: clamp(0.1rem, -0.2rem, -0.5rem);
  }
  .makword {
    display: none;
  }
  .typing .text {
      font-size: clamp(10px, 5.7vw, 1.5em);
  }
  .typing .cursor {
      height: 1.6em;
  }
  .subtitle {
    font-size: 1.1em;
    margin-top: 22px;
    margin-bottom: 20px;
  }
  .media-cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social {
    display: none;
  }
  .btn-primary {
    font-size: 0.8em;
    padding: 5px;
  }
  .back-image {
    overflow: hidden;
    animation: shadowMove 4s infinite ease-in-out;
  }
  .hero-image {
    margin-bottom: 80px;
  }

  @keyframes shadowMove {
      0% {
          box-shadow: -10px 0 10px rgba(255, 0, 0, 0.5);
      }
      25% {
          box-shadow: 0 10px 10px rgba(0, 255, 0, 0.5);
      }
      50% {
          box-shadow: 10px 0 10px rgba(0, 0, 255, 0.5);
      }
      75% {
          box-shadow: 0 -10px 10px rgba(255, 165, 0, 0.5);
      }
      100% {
          box-shadow: -10px 0 10px rgba(255, 0, 0, 0.5);
      } 
}
}
@media ((min-width: 769px) and (max-width: 1024px)) {
  .hero {
    height: auto;
    padding-top: 79px;
  }
  .hero-container {
    width: 100vw;
    padding: 5px;
    justify-content: space-between;
  }
  .hero-text {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .name {
    width: 80px;
    padding-top: 2px;
    margin-bottom: 0.1em;
  }
  .hero-text h1 {
    font-size: clamp(1.4rem, 3vw, 3.1rem);
    margin-bottom: 0.3em;
  }
  .work-text {
    font-size: 1em;
    gap: 0.3rem;
    margin-bottom: 0.7em;
  }
  .typing .text {
      font-size: clamp(1.4rem, 3vw, 3.1rem);
  }
  .typing .cursor {
      height: 1.6em;
  }
  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
  }
  .back-image {
    animation: shadowMove 4s infinite ease-in-out;
  }
  @keyframes shadowMove {
      0% {
          box-shadow: -15px 0 15px rgba(255, 0, 0, 0.5);
      }
      25% {
          box-shadow: 0 15px 15px rgba(0, 255, 0, 0.5);
      }
      50% {
          box-shadow: 15px 0 15px rgba(0, 0, 255, 0.5);
      }
      75% {
          box-shadow: 0 -15px 15px rgba(255, 165, 0, 0.5);
      }
      100% {
          box-shadow: -15px 0 15px rgba(255, 0, 0, 0.5);
      } 
  }
}
@media (max-width: 768px) {
  .partner img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .about-me {
    margin-top: 70px;
    flex-direction: column;
    width: 100vw;
    height: auto;
    justify-content: center;
  }
  .text-about {
    width: 90vw;
    margin-top: 100px;
    padding: 3px;
  }
  .about-me .slider-about {
    display: none;
  }
  .about-tittle {
    font-size: clamp(8px, 1.4vw, 13px);
    width: clamp(70px, 13vw, 95px);
  }
  .about-subtitle {
    font-size: clamp(10px, 5.7vw, 1.5em);
    margin-top: 2px;
  }
  .about-link {
    display: none;
  }
  .about-card {
    padding: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 30px;
  }
  .about-card .card {
    display: flex;
    width: 70vw;
    max-width: 300px;
    height: 200px;
  }
  .about-text {
    font-size: 1em;
  }
  .subtitle-word {
    margin-top: -2px;
  }
  .text-about .card-number {
    font-size: 2em;
  }
  .card-text {
    font-size: 1.2em;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about-me {
    width: 100vw;
    height: auto;
    margin-top: 70px;
    gap: 1rem;
    padding: 10px;
  }
  .about-me .slider-about {
    height: 300px;
    width: 250px;
    margin-top: 100px;
    margin-bottom: 50px;
  }
  .text-about {
    width: 60vw;
    margin-top: 100px;
    padding: 5px;
    margin-bottom: 50px;
  }
  .about-subtitle {
    font-size: 1.2em;
    margin-bottom: 0.3em;
  }
  .about-card {
    gap: 0.5rem;
    justify-content: space-between;
  }
  .about-tittle {
    width: 90px;
  }
  .about-me .card-number {
    font-size: 2em;
  }
}
@media (max-width: 768px) {
  .services {
    height: auto;
    flex-direction: column;
    padding: 5px;
  }
  .services .text-services {
    width: 100%;
    padding: 5px;
  }
  .services .services-title {
    font-size: clamp(8px, 1.4vw, 13px);
    width: clamp(50px, 13vw, 75px);
  }
  .services .subtititle-services {
    font-size: clamp(1em, 4.3vw, 2.1em);
  }
  .services .desciption-services {
    text-align: normal;
    font-size: 1em;
  }
  .services .link-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .services .card-services {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 5px;
    margin-bottom: 50px;
  }
  .services .card {
    padding: 0;
    gap: 0.5rem;
    height: 210px;
    width: 80vw;
    max-width: 360px;
  }
  .services .line-services {
    width: 16vw;
    margin-top: -2px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .services {
    height: auto;
    padding: 70px 0;
  }
  .services .text-services {
    width: 50%;
  }
  .services .link-center {
    display: flex;
    align-items: center;
  }
  .services .subtititle-services {
    font-size: 2em;
  }
}
@media (max-width: 768px) {
  .last-projets {
    height: auto;
    padding: 0px;
    width: 100vw;
    margin: 2rem 0 0 0;
  }
  .last-projets .text-projets {
    margin: 2px;
    padding: 3px;
  }
  .last-projets .text-projets .projets-title {
    width: 70px;
  }
  .last-projets .text-projets .subtitle-projets {
    font-size: clamp(0.6rem, 3.2vw, 1.5rem);
    margin-top: 0.1rem;
  }
  .projets-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 99%;
    margin: 2px;
    position: static;
    padding: 0;
  }
  .projets-item {
    position: static;
    display: none;
  }
  .projets-item.center {
    display: block;
    width: 90vw;
    max-width: 400px;
    height: auto;
    transform: none; 
  }
  .projets-item.center img {
    width: 99%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    border-radius: 12px;
  }
  .projets-buttons {
    gap: 3px;
    margin: 2px;
  }
  .projets-buttons button {
    font-size: clamp(10px ,2vw, 18px);
  }
}
@media ((min-width: 769px) and (max-width: 1024px)) {
  .last-projets{
    margin: 0;
    padding: 1vh 0 0 0;
  }
  .last-projets .text-projets {
    padding: 0.5vh 0.5vw;
    margin: 0 2vw;
  }
  .last-projets .text-projets .projets-title {
    width: 70px;
  }
  .projets-images {
    width: 100vw;
  }
  .projets-item {
    width: 150px;
    height: 250px;
  }
  .projets-item.side:nth-child(2) {
    margin-left: 30px;
  }
  .projets-item.side:last-child {
    margin-left: -30px;
  }
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-socials {
    width: 95vw;
    gap: 15px;
    min-width: 230px;
    max-width: 400px;
  }
  .social-card {
    align-items: center;
    justify-content: center;
    min-width: 100px;
    gap: 0.3rem;
  }
  .social-message {
    display: none;
  }
  .contact-whatsapp {
    width: 95vw;
    min-width: 230px;
    max-width: 420px;
  }
  .whatsapp-card {
    min-width: 100px;
    max-width: none;
    padding: 16px 8px 8px;
  }
  .client-messages {
    width: clamp(230px, 95vw, 450px);
  }
}
@media ((min-width: 769px) and (max-width: 1024px)) {
  .social-message {
    display: none;
  }
  .contact-container {
    gap: 1rem;
  }
  .contact-socials {
    width: 20vw;
  }
  .contact-socials .social-card {
    width: 19vw;
    min-width: 100px;
    gap: 10px;
    padding-left: 15px;
    align-items: center;
    justify-content: center;
  }
  .contact-whatsapp {
    min-width: none;
    width: 35vw;
  }
  .whatsapp-card {
    min-width: 10px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-author {
    font-size: 0.7em;
  }
}