*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #E6DDD5;
    background-size: auto;
    background-position: top left;
}


html {
    font-family: 'Lora', serif;
}

h1 {
    font-size: 64px;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

h2 {
    font-size: 48px;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

h3 {
    font-size: 32px;
    color: #000000;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

h4 {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

p {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.logo {
    width: 500px;
    margin: -96px 0 32px;
}

/* === ANIMATION D'ENTRÉE DU HERO === */
#gabarit-1-2 {
    opacity: 0;
    transform: translateY(60px);
    animation: heroFadeIn 1.2s ease-out forwards;
}

#gabarit-1-2 .logo {
    opacity: 0;
    transform: translateY(40px);
    animation: logoFadeIn 1s ease-out 0.3s forwards;
}

#gabarit-1-2 h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s ease-out 0.6s forwards;
}

#gabarit-1-2 h4 {
    opacity: 0;
    animation: subtitleFadeIn 1s ease-out 0.9s forwards;
}

#gabarit-1-2 .buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsFadeIn 1s ease-out 1.2s forwards;
}

/* Animations keyframes */
@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes logoFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes titleFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes subtitleFadeIn {
    to { opacity: 1; }
}
@keyframes buttonsFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Bonus : léger effet de parallaxe quand on scroll (très classe) */
.background-1 {
    background: linear-gradient(to bottom, #FAFAFA 0%, #ffffff 100%);
    background-attachment: fixed; /* effet profondeur */
}

.navbar {
    background: #fff;
    height: 80px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: block;
}

.logo-img {
    height: 45px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 8px 0;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: #ff6600;
}

.nav-link.active {
    color: #ff6600 !important;
}

.nav-link.contact:hover {
    color: #e55a00;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.background-1 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAFAFA;
    padding: 96px 0;
}

.background-2 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F4F4;
    padding: 96px 0;
}

.background-3 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 96px 0;
    flex-direction: column;
}

.background-4 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF381F;
    padding: 96px 0;
    color: #FFFFFF;
}

.background-footer {
    width: 100%;
    height: auto;
    display: flex;
    background-color: #454545;
    padding: 48px 0;
    align-items: center;
    justify-content: center;
}

.gabarit-1 {
    width: 1280px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

#gabarit-1-2 {
    padding: 96px 0 16px 0;
}

#gabarit-1-3 {
    gap: 128px;
    margin-bottom: 96px;
}

.gabarit-2 {
    width: 1280px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #F4F4F4;
    color: #000000;
    gap: 32px;
    padding-top: 48px;
    border-radius: 16px;
    margin-top: 32px;
}

.gab-2 {
    position: relative;
    z-index: 2;
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.gab-2 h2 {
    position: absolute;
    bottom: 20px;                 
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;         
    z-index: 10;                  
    font-size: 32px;
    font-weight: 600;
    pointer-events: none;         
}

#gab-2-1 img {
    display: flex;
    border-radius: 0 0 0 16px;
}

#gab-2-2 img {
    display: flex;
    border-radius: 0 0 16px 0;
}

.gabarit-3 {
    width: 1280px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 64px;
    gap: 96px;
}

#gabarit-3-1 {
    margin-bottom: 48px;
}

.gabarit-3 img {
    width: 600px;
    height: 600px;
    display: flex;
    border-radius: 16px;
}

.gab-3 {
    width: 500px;
    height: 600px;
    display: flex;
    text-align: left;
    padding: 48px;
    flex-direction: column;
    gap: 48px;
}

.gabarit-4 {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.gabarit-4 p {
    color: #797979;

}

.gab-4 {
    width: 100%;
    height: auto;
    display: flex;
    gap: 24px;
    flex-direction: row;
    align-items: center;
}

.gab-4 img {
    width: 24px;
    height: 24px;
}

.gabarit-5 {
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 0 0 0;   
    border-left: #D2CCCC solid 1px; 
}

.gabarit-6 {
    width: 1280px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.button-1 {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF381F;
    border-radius: 8px;
    padding: 24px 32px;
    text-decoration: none;
    color: #FFFFFF !important;
    font-weight: bold;
}

.button-1:hover, 
.button-3:hover {
    background-color: #e55a00;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.button-2 {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 24px 32px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.button-2:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#button-2 {
    margin-top: 64px;
}

#button-2-2 {
    margin-top: 48px;
}

.button-3 {
    width: 100%;
    height: auto;
    display: flex;
    padding: 24px 0;
    align-items: center;
    justify-content: center;
    background-color: #FF381F;
    color: #FFFFFF;
    border-radius: 0 0 16px 0;
    text-decoration: none;
    font-weight: bold;
}

.button-1, 
.button-2, 
.button-3 {
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.buttons {
    width: 100%; 
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin-top: 24px;
}

.cards-1 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin: 32px 0;
}

.cards-2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    margin-top: 32px;
}

.cards-3 {
    width: 1280px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card-1 {
    width: 400px;
    height: 245px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 24px; 
    background-color: #FFFFFF;
    border: #D2CCCC solid 1px;
    border-radius: 16px;
    text-align: left;
}

.card-1 img {
    width: 36px;
}

.card-1 p {
    color: #797979;
}

.card-2 {
    width: 500px;
    height: 300px;
    display: flex;
    background-color: #FAFAFA;
    border: #D2CCCC solid 1px;
    border-radius: 16px;
}

.card-2 img {
    width: 300px;
    padding: 34px;
}

.card-3 {
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: #D2CCCC solid 1px;
    border-radius: 16px;
    padding: 32px 24px 32px 24px;
    margin: 26px 0;
}

.card-3 p {
    color: #797979;
}

.card-3 img{
    width: 36px;
    height: 36px;
    display: flex;
}

.card-4 {
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.card-4 img {
    width: 128px;
    height: 128px;
}

.card-5 {
    width: 300px;
    height: auto;
    display: flex;
    background-color: #FFFFFF;
    border: #D2CCCC solid 1px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-5 p {
    font-size: 16px;
    text-decoration: none;
}

.card-5 h4 {
    font-size: 20px;
    margin-top: 8px;
}

.card-5 h3 {
    font-size: 24px;
}

#card-5 a,
#card-5 a:hover,
#card-5 a:focus,
#card-5 a:active {
  text-decoration: none !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
}

.card-5:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-5 img {
  width: 36px;
  height: 36px;
}

/* Supprime le soulignement violet du lien Instagram (et tous les autres) */
a[target="_blank"] .card-5,
a[target="_blank"] {
    text-decoration: none !important;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  width: 320px;
  max-width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  color: #333;
}

.phone-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #007bff;
  margin: 12px 0;
  letter-spacing: 1px;
}

.phone-schedule {
  color: #666;
  font-size: 0.95rem;
  margin: 8px 0 0;
}

/* Croix de fermeture */
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #000;
}

#openPhoneModal {
  text-decoration: none;
  color: inherit;
}

#openPhoneModal:hover {
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

#openEmailModal {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#openEmailModal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* === POP-UP FORMULAIRE === */
#emailModal .modal-content {
  width: 500px;
  max-width: 95%;
  padding: 32px;
}

#emailModal h3 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  text-align: center;
  color: #333;
}

#emailForm input,
#emailForm textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

#emailForm input:focus,
#emailForm textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
}

#emailForm textarea {
  resize: vertical;
  min-height: 100px;
}

#emailForm button {
  width: 100%;
  padding: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 12px;
  transition: background-color 0.3s;
}

#emailForm button:hover {
  background-color: #0056b3;
}

#emailForm button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  min-height: 24px;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  min-width: 280px;
  padding: 14px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background-color: #28a745;
}

.toast.error {
  background-color: #dc3545;
}

.toast::before {
  content: '';
  font-weight: bold;
  font-size: 1.1rem;
}

.banniere {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 64px;
    margin-bottom: -64px;
}

.pannel-1 {
    width: 100%;
    height: auto;
    display: flex;
    border-radius: 0 0 16px 16px ;
}

.pannel-1 h2 {
    font-weight: 550;
}

.pannel-2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 96px;
}

#pannel-2-1 {
    margin-top: 32px;
}

.pannel-3 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.pannel-3 img {
    width: 12px;
    height: 12px;
}

.blanc {
    color: #FFFFFF;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #000;           /* change la couleur/fond comme tu veux */
  margin-top: 64px;             /* espace haut et bas */
  box-sizing: border-box;
}

.marquee {
  display: flex;
  animation: scroll-left 35s linear infinite; 
}

.marquee-content {
  display: flex;
  flex-shrink: 0; 
}

.marquee img {
  height: 160px;              
  width: auto;
  margin: 0 48px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Animation du défilement */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.marquee-container { 
    background: transparent;
}

.footer {
    width: 1280px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.footer h4 {
    margin-bottom: 24px;
}

.footer-1 {
    width: 100%;
    height: auto;
    display: flex;
}

.footer-1 img {
    width: 24px;
    height: 24px;
    display: flex;
}

.footer-1-1 {
    width: 33%;
    display: flex;
    flex-direction: column;
    padding: 0 48px;
    gap: 24px;
}

.footer-1-1 img {
    display: flex;
    width: 200px;
    height: auto;
    justify-content: left;
    align-items: flex-start;
    margin-left: -10px;
} 

.footer-1-2 {
    width: 34%;
    display: flex;
    flex-direction: column;
    padding: 0 48px;
    gap: 16px;

}

.footer-1-3 {
    width: 33%;
    display: flex;
    flex-direction: column;
    padding: 0x 48px;
    gap: 16px;
}

.footer-2 {
    width: 100%;
    height: auto;
    display: flex;
    margin: 48px 0 16px;
    justify-content: space-between;
    color: #D9D9D9;
    padding-top: 48px;
    border-top: #D2CCCC solid 1px;
}


.footer p{
    color: #D9D9D9;
}

.footer h4 {
    color: #FFFFFF;
}

.footer-2 img {
    width: 32px;
    height: 32px;
    display: flex;
}

.footer-2-1 {
    width: 33%;
    display: flex;
    justify-content: flex-start;
    gap: 24px;
}

.footer-2-2 {
    width: 34%;
    display: flex;
    justify-content: center;
}

.footer-2-3 {
    width: 33%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.footer-2-3 img {
    width: 80px;
    margin-top: -3px;
}

.bloc {
    width: 100%;
    height: auto;
    display: flex;
    gap: 16px;
}


/* === MODAL IMAGE - VERSION NUCLÉAIRE === */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.image-modal-content {
    width: 90%;
    height: 90%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
    display: block;
    margin: 0 auto;
}

@keyframes pop {
    from { transform: scale(0.3); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    text-shadow: 0 0 20px black;
}

.image-modal-close:hover {
    color: #ff6600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animation au hover sur les images avant/après */
.gab-2 img {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gab-2 img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



@media (max-width: 1024px) {

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Animation burger → croix */
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 24px;
    }

    .cards-1 {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .cards-2 {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .cards-3 {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .gabarit-1 {
        width: 100%;
        padding-right: 48px;
        padding-left: 48px;
    }

    .gabarit-2 {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    #gabarit-2 {
        margin-top: 0;
    }

    .gab-2 img {
        width: 100%;
        height: auto;
    }

    .gab-2 h2 {
        font-size: 32px;
        margin-top: -80px;
    }

    .gabarit-3 {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        margin: 0;
    }

    .pannel-2 {
        margin-top: 0;
    }

    .gab-3 {
        width: 100%;
        text-align: center;
        align-items: center;
        padding-right: 0;
        padding-left: 0;
    }

    .gab-4 h4 {
        font-size: 22px;
    }

    #gab-4-2 {
        width: 100%;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .gabarit-6 {
        width: 100%;
        flex-direction: column;
        padding-left: 48px;
        padding-right: 48px;
        gap: 32px;
        align-items: center;
    }

    .footer-1, 
    .footer-2 {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        text-align: center;
    }

    .footer-1-1 {
        margin: 0;
    }

    .footer-1-1,
    .footer-2-1, 
    .footer-2-3 {
        justify-content: center;
        align-items: center;
    }

    .bloc {
        align-items: center;
        justify-content: center;
    }

    #footer-1 {
        margin-top: 32px;
    }
    

}




@media (max-width: 768px) {
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .logo {
        width: 80%;
    }

    .buttons {
        flex-direction: column;
    }

    .pannel-1 {
        flex-direction: column;
        align-items: center;
        gap: 64px;
        padding: 0;
    }

    .background-3 {
        padding-left: 16px;
        padding-right: 16px;
    }

   #background-3-1 {
        padding: 48px 16px;
        text-align: center;
    }

    #background-2-1 {
        padding: 48px 16px;
        text-align: center;
    }

    .card-3 {
        width: 100%;
        height: auto;
        align-items: center;
    }

    .pannel-1 {
        margin-bottom: 24px;
    }

    .pannel-1 h2 {
        font-size: 24px;
    }

    .gab-2 {
        width: 100%;
    }

    .gab-2 img {
        width: 100%;
        height: auto;
    }

    #gab-2-1 img, 
    #gab-2-2 img {
        border-radius: 16px;
    }


    .gab-3 {
        height: auto;
        margin: 0 0;
    }

    #gabarit-1-3 {
        gap: 48px;
        margin-bottom: 0;
    }

    .gabarit-3 img {
        width: 100%;
        height: auto;
    }

    .pannel-2 img {
        width: 36px;
        height: 36px;
    }

    .gabarit-4 {
        width: 100%;
    }

    .gab-4 {
        gap: 0;
        align-items: center;
        justify-content: center;
    }

    .gab-4 h4 {
        font-size: 20px;
    }

    .gab-4 img {
        display: none;
    }

    .card-1 {
        width: 100%;
        height: auto;
    }

    .card-2 {
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 32px;
    }

    .card-2 img {
        width: 300px;
        height: auto;
        margin: 0 16px;
        display: flex;
    }

    .card-2 a {
        border-radius: 0 0 16px 16px;
    }

    .gabarit-5 {
        width: 100%;
        gap: 24px;
        align-items: center;
        display: flex;
    }

    .footer-1-1, 
    .footer-1-2, 
    .footer-1-3 {
        width: 100%;
        padding: 0 32px;
    }

    .footer-2-3 {
        flex-direction: column;
    }

    .gabarit-1 {
        margin-left: 16px;
        margin-right: 16px;
        padding: 0;
    }

    .gabarit-2 {
        padding-right: 0;
        padding-left: 0;
    }

    .pannel-1 {
        margin: 0;
        gap: 32px;
    }

    #gab-2-1 img {
        border-radius: 0;
    }

    #gab-2-2 img {
        border-radius: 0 0 16px 16px;
    }

    #gabarit-1-2 {
        margin: 0 16px;
    }

    .photo-1 {
        width: 70%;;
    }
}