*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f5f5;
    color:#111;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    width:100%;
    background:#fff;
    padding:18px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:100;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#d71920;
	
}
.logo img{
    height:55px;
    width:auto;
    display:block;
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    height:55px;
}

.brand-name{
    font-size:24px;
    font-weight:700;
    color:#111;
}
nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    position:relative;
    text-decoration:none;
    color:#111;
    font-weight:600;
    padding:8px 0;
    transition:.3s;
}

nav a:hover{
    color:#d71920;
}

nav a.active{
    color:#d71920;
}

nav a.active::after{
    content:"";
    position:absolute;

    left:50%;
    transform:translateX(-50%);

    bottom:-8px;

    width:22px;
    height:3px;

    background:#d71920;
    border-radius:50px;
}
/* CTA RED BANNER */

.cta-banner{
    width:84%;
    margin:100px auto;
    background:linear-gradient(135deg,#e30613,#ff2d2d);
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:25px 40px;
    gap:30px;

    overflow:hidden;
}

.cta-image img{
    width:170px;
    display:block;
}

.cta-content{
    flex:1;
}

.cta-content h2{
    font-size:40px;
    font-weight:800;
}

.cta-content p{
    color:rgba(255,255,255,.95);
    font-size:20px;
}

.cta-whatsapp{
    background:#fff;
    color:#d71920;
    text-decoration:none;

    padding:18px 30px;
    border-radius:14px;

    font-weight:700;

    display:inline-block;

    transition:.3s;
}

.cta-whatsapp:hover{
    transform:translateY(-3px);
}


.btn{
    background:#d71920;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    text-decoration:none;
}

/* HERO */

.hero{
    height:85vh;
    min-height:700px;
    position:relative;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:right center;
}

/* Gradient Overlay */

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.25) 35%,
        rgba(0,0,0,.08) 60%,
        rgba(0,0,0,0) 100%
    );

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 8%;
}

.hero-left{
    max-width:620px;
}

.hero-left h1{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    margin-bottom:20px;
}

.hero-left p{
    color:rgba(255,255,255,.92);
    font-size:20px;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-outline{
    background:#fff;
    color:#111;
    padding:12px 22px;
    border-radius:12px;
    text-decoration:none;
}

/* TRUST BAR */

.trust{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:60px 8%;
}

.trust-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.trust-card h3{
    color:#d71920;
    font-size:36px;
}

/* NOS CATEGORIES */

.categories{
    padding:80px 5%;
}

.categories h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
    color:#111;
}

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

.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

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

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.card span{
    display:block;
    padding:18px;
    text-align:center;
    font-weight:600;
    font-size:17px;
}

/* TABLET */

@media (max-width:992px){

    .grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* MOBILE */

@media (max-width:768px){

    .grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .card img{
        height:150px;
    }

    .card span{
        font-size:14px;
        padding:12px;
    }

}
/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    padding:15px 20px;
    border-radius:999px;
    text-decoration:none;
}
/* HOW IT WORKS */

.how-it-works{
    padding:90px 8%;
    background:#fff;
}

.order-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.order-step{
    width:100%;
}

.step img{
    width:100%;
    display:block;
    border-radius:20px;
}	
/* =========================
   SERVICES PAGE
========================= */

.services-hero{
    height:540px;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.35) 40%,
        rgba(0,0,0,.10) 100%
    ),
    url("../images/services-rebajas-tanger.webp");

    background-size:cover;
    background-position:center;

    position:relative;

    display:flex;
    align-items:center;
}

.services-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.60) 0%,
        rgba(0,0,0,.35) 50%,
        rgba(0,0,0,.10) 100%
    );
}

.services-content{
    position:relative;
    z-index:2;
    max-width:700px;
    padding:0 8%;
}

.services-content h1{
    color:#fff;
    font-size:68px;

    text-shadow:
        0 2px 6px rgba(0,0,0,.25),
        0 8px 20px rgba(0,0,0,.30);
}

.services-content p{
    color:#fff;
    font-size:20px;
    margin-top:20px;
}

/* SERVICES GRID */

.services-grid{
    padding:90px 8%;
}

.services-grid h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

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

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
}

.service-card p{
    padding:0 20px 25px;
    color:#666;
}

/* WHY US */

.why-us{
    padding:90px 8%;
    background:#fff;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.advantages{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.advantage{
    background:#f8f8f8;
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.advantage h3{
    color:#d71920;
    margin-bottom:10px;
}

.advantage p{
    color:#666;
}

/* MOBILE */

@media(max-width:900px){
	.services-content h1{
    font-size:42px;
}

.services-content p{
    font-size:18px;
}

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

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

    .steps{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .hero{
        height:90vh;
        min-height:650px;
    }

    .hero-left{
        max-width:100%;
    }

    .hero-left h1{
    color:#fff;

    text-shadow:
        0 1px 0 rgba(255,255,255,.15),
        0 2px 4px rgba(0,0,0,.20),
        0 8px 18px rgba(0,0,0,.30);

    max-width:620px;
	
}

.hero-left h1{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    margin-bottom:20px;

    text-shadow:
        0 1px 0 rgba(255,255,255,.15),
        0 2px 4px rgba(0,0,0,.20),
        0 8px 18px rgba(0,0,0,.30);

    letter-spacing:-1px;
}

    .cta-banner{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:30px 20px;
    }

    .cta-image{
        display:flex;
        justify-content:center;
        width:100%;
    }

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

    .cta-button{
        display:flex;
        justify-content:center;
        width:100%;
    }

    .cta-image img{
        width:90px;
    }
	.hero-left h1{
    font-size:42px;
}

.hero-left p{
    font-size:18px;
}

.cta-content h2{
    font-size:32px;
}

.cta-content p{
    font-size:18px;
}
	}
	
/* LIGHTBOX PREMIUM */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:90%;
    max-height:90vh;

    border-radius:18px;

    transform:scale(.85);
    transition:.35s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.lightbox.active img{
    transform:scale(1);
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:35px;

    color:#fff;
    font-size:50px;
    cursor:pointer;

    transition:.3s;
}

.close-lightbox:hover{
    transform:rotate(90deg);
}

.step img{
    cursor:pointer;
    transition:.3s;
}

.step img:hover{
    transform:scale(1.03);
}
/* COMMENT COMMANDER */

.how-order{
    padding:90px 8%;
    background:#fff;
}

.order-header{
    text-align:center;
    margin-bottom:40px;
}

.order-header img{
    max-width:700px;
    width:100%;
}
.order-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.order-step{
    overflow:hidden;
    border-radius:18px;
}

.order-step img{
    width:100%;
    display:block;
    border-radius:18px;
    transition:.4s;
}

.order-step:hover img{
    transform:scale(1.03);
}
@media(max-width:768px){

    .order-steps{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

}

/* =========================
   GALLERY PAGE
========================= */

.gallery-hero{
    height:520px;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.60) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.10) 100%
    ),
    url("../images/gallery-hero.webp");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.gallery-content{
    padding:0 8%;
    max-width:700px;
}

.gallery-content h1{
    color:#fff;
    font-size:68px;

    text-shadow:
    0 4px 15px rgba(0,0,0,.4);
}

.gallery-content p{
    color:#fff;
    font-size:20px;
    margin-top:20px;
}

.gallery-section{
    padding:90px 8%;
}

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

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;

    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

/* LIGHTBOX */

.gallery-lightbox{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:99999;
}

.gallery-lightbox.active{
    opacity:1;
    visibility:visible;
}

.gallery-lightbox img{
    max-width:90%;
    max-height:75vh;

    border-radius:18px;
}

.gallery-close{
    position:absolute;
    top:25px;
    right:35px;

    color:#fff;
    font-size:55px;

    cursor:pointer;
}

.gallery-order-btn{
    margin-top:25px;

    background:#25D366;
    color:#fff;

    text-decoration:none;

    padding:16px 28px;

    border-radius:12px;

    font-weight:700;
}

/* MOBILE */

@media(max-width:900px){

    .gallery-content h1{
        font-size:42px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .gallery-item img{
        height:180px;
    }

}
/* =========================
   GALLERY
========================= */

.gallery-section{
    padding:90px 8%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.06);
}

/* LIGHTBOX */

.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:99999;
}

.gallery-lightbox.active{
    opacity:1;
    visibility:visible;
}

.gallery-lightbox img{
    max-width:90%;
    max-height:80vh;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.gallery-close{
    position:absolute;
    top:20px;
    right:30px;

    color:#fff;
    font-size:50px;
    cursor:pointer;
}

.gallery-order-btn{
    margin-top:25px;

    background:#d71920;
    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.gallery-order-btn:hover{
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:900px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item img{
        height:250px;
    }

}

/* CATALOG BANNER */

.catalog-banner{

    width:84%;
    margin:100px auto;

    background:linear-gradient(
        135deg,
        #d71920,
        #ff2d2d
    );

    border-radius:24px;

    overflow:hidden;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.catalog-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.catalog-content{

    padding:50px;
    color:#fff;
}

.catalog-content h2{

    font-size:42px;
    margin-bottom:20px;
}

.catalog-content p{

    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.catalog-btn{

    display:inline-block;

    background:#fff;
    color:#d71920;

    text-decoration:none;

    padding:18px 35px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.catalog-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

@media(max-width:900px){

    .catalog-banner{

        grid-template-columns:1fr;
    }

    .catalog-content{

        text-align:center;
        padding:35px 25px;
    }

    .catalog-content h2{

        font-size:30px;
    }
}


/* HOME PAGE STEPS FIX */
.steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.step{
overflow:hidden;
border-radius:18px;
}

.step img{
width:100%;
display:block;
border-radius:18px;
}

@media(max-width:768px){
.steps{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

}
/* AVIS PAGE */

.google-widget-section{
padding:90px 8%;
background:#fff;
}

.google-widget-section h2{
text-align:center;
font-size:42px;
margin-bottom:15px;
}

.google-widget-box{
background:#fff;
border-radius:20px;
padding:30px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
margin-top:40px;
}

@media(max-width:900px){


.google-widget-section h2{
    font-size:32px;
}


}
.section-subtitle{
text-align:center;
color:#666;
font-size:18px;
max-width:700px;
margin:0 auto 30px;
line-height:1.8;
}
/* REVIEWS HERO */

.reviews-hero{

height:540px;

background:
linear-gradient(
90deg,
rgba(0,0,0,.60) 0%,
rgba(0,0,0,.35) 50%,
rgba(0,0,0,.10) 100%
),
url("../images/reviews-rebajas-tanger.webp");

background-size:cover;
background-position:center;

display:flex;
align-items:center;

position:relative;
}

.reviews-content{

position:relative;
z-index:2;

max-width:700px;

padding:0 8%;
}

.reviews-content h1{

font-size:68px;
color:#fff;

text-shadow:
0 2px 6px rgba(0,0,0,.25),
0 8px 20px rgba(0,0,0,.30);
}

.reviews-content p{

font-size:20px;
color:#fff;

margin-top:20px;
}

@media(max-width:900px){

.reviews-content h1{
font-size:42px;
}

.reviews-content p{
font-size:18px;
}

}
.contact-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1200px;
margin:70px auto;
padding:0 20px;
}

.contact-card{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.contact-card:hover{
transform:translateY(-5px);
}

.contact-icon{
font-size:40px;
margin-bottom:15px;
}

.contact-card h3{
margin-bottom:10px;
}

.contact-card a{
color:#e31b23;
font-weight:700;
text-decoration:none;
}

.contact-section{
max-width:1200px;
margin:80px auto;
padding:0 20px;
display:block;
}

.contact-form{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form h2{
margin-bottom:20px;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

.contact-form button{
background:#e31b23;
color:white;
border:none;
padding:15px;
border-radius:10px;
font-size:16px;
font-weight:700;
cursor:pointer;
}

.map-section{
max-width:1200px;
margin:80px auto;
padding:0 20px;
}

.map-section h2{
text-align:center;
margin-bottom:30px;
}

.map-container iframe{
width:100%;
height:450px;
border:none;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media(max-width:768px){

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

.map-container iframe{
height:350px;
}

}
.contact-hero{
background:
linear-gradient(
90deg,
rgba(8,15,35,.85) 0%,
rgba(8,15,35,.70) 35%,
rgba(8,15,35,.15) 60%,
rgba(8,15,35,.05) 100%
),
url("../images/contact-rebajas-tanger.webp");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}
.contact-whatsapp-box{
    max-width:1000px;
    margin:0 auto;
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.contact-whatsapp-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-whatsapp-content p{
    max-width:700px;
    margin:0 auto 25px;
    color:#666;
    line-height:1.8;
}

.contact-whatsapp-content ul{
    list-style:none;
    margin-bottom:35px;
}

.contact-whatsapp-content li{
    margin:12px 0;
    font-size:18px;
}

.contact-whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:14px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.contact-whatsapp-btn:hover{
    transform:translateY(-4px);
}

@media(max-width:768px){

    .contact-whatsapp-box{
        padding:30px 20px;
    }

    .contact-whatsapp-content h2{
        font-size:30px;
    }

}
/* CONTACT SOCIALS */

.contact-socials{
padding:80px 20px;
background:#f8fafc;
}

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

.contact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.contact-card{
background:#fff;
border-radius:20px;
padding:35px 25px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.social-icon{
width:70px;
height:70px;
object-fit:contain;
margin-bottom:20px;
}

.contact-card h3{
font-size:28px;
color:#0A66D9;
margin-bottom:15px;
}

.contact-card a{
color:#333;
font-size:18px;
text-decoration:none;
word-break:break-word;
}

.contact-card a:hover{
color:#0A66D9;
}

@media(max-width:992px){

.contact-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

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

.contact-card{
padding:30px 20px;
}

.social-icon{
width:60px;
height:60px;
}

.contact-card h3{
font-size:24px;
}

}
/* CONTACT PAGE */

.contact-socials{
    padding:80px 8%;
}

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

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

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.social-icon{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:15px;
}

.contact-card h3{
    font-size:18px;
    margin-bottom:10px;
    color:#0A56C2;
}

.contact-card a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    word-break:break-word;
}

.contact-card p,
.contact-card span{
    color:#555;
}

.contact-location{
    margin-top:25px;
}

/* TABLET */

@media (max-width:992px){

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media (max-width:576px){

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

    .contact-card{
        padding:25px 15px;
    }

    .social-icon{
        width:60px;
        height:60px;
    }

}
/* Fix titre Comment ça marche */
.how-it-works h2,
.steps-section h2,
.section-title{
    text-align:center !important;
    width:100%;
}
/* ===== Atelier Section ===== */

.atelier-section{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.atelier-header{
    text-align:center;
    margin-bottom:40px;
}

.atelier-header h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.atelier-header p{
    font-size:18px;
    color:#666;
}

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

.atelier-card{
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.atelier-card:hover{
    transform:translateY(-6px);
}

.atelier-card img{
    width:100%;
    display:block;
    aspect-ratio:1/1;
    object-fit:cover;
}

/* Tablet */

@media(max-width:992px){

    .atelier-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:576px){

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

    .atelier-header h2{
        font-size:30px;
    }

}
.atelier-section{
    max-width:1200px;
    margin:100px auto;
    padding:0 20px;
    text-align:center;
}

.atelier-header{
    max-width:800px;
    margin:auto;
}

.atelier-badge{
    display:inline-block;
    background:#e41e26;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.atelier-header h2{
    font-size:48px;
    line-height:1.2;
    color:#111;
    margin-bottom:20px;
}

.atelier-header p{
    font-size:20px;
    color:#666;
    line-height:1.8;
}

.atelier-video-wrapper{
    margin:60px auto;
    width:100%;
    max-width:420px;
}

.atelier-video-wrapper video{
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;
    border-radius:25px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.atelier-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.feature-card{
    background:#fff;
    padding:30px 20px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.feature-card span{
    font-size:40px;
    display:block;
    margin-bottom:15px;
}

.feature-card h3{
    margin-bottom:10px;
    color:#111;
}

.feature-card p{
    color:#666;
}

.atelier-cta{
    margin-top:50px;
}

.atelier-cta a{
    display:inline-block;
    background:#e41e26;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:12px;
    font-weight:700;
}

@media(max-width:768px){

    .atelier-header h2{
        font-size:34px;
    }

    .atelier-features{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:500px){

    .atelier-features{
        grid-template-columns:1fr;
    }

}
.site-footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:50px 20px;
    margin-top:80px;
}

.site-footer img{
    width:70px;
    margin-bottom:15px;
}

.site-footer h3{
    margin-bottom:10px;
}

.site-footer p{
    color:#bbb;
    line-height:1.7;
}

.footer-line{
    width:120px;
    height:2px;
    background:#e41e26;
    margin:25px auto;
}
@media(max-width:768px){

.header{
    flex-wrap:wrap;
    padding:12px 15px;
    gap:10px;
}

.logo{
    width:100%;
    justify-content:center;
}

.brand-name{
    font-size:18px;
}

nav{
    width:100%;
    overflow-x:auto;
    white-space:nowrap;
    justify-content:flex-start;
    gap:18px;
    padding-bottom:5px;
}

.btn{
    display:none;
}

}

/* ===== MOBILE FIX FINAL ===== */

@media (max-width:768px){

/* HEADER */

.header{
    flex-wrap:wrap;
    padding:12px 15px;
    gap:10px;
}

.logo{
    width:100%;
    justify-content:center;
}

.logo img{
    height:45px;
}

.brand-name{
    font-size:18px;
}

nav{
    width:100%;
    overflow-x:auto;
    white-space:nowrap;
    gap:18px;
    justify-content:flex-start;
    padding-bottom:5px;
}

.header > .btn{
    display:none;
}

/* HERO */

.hero{
    min-height:600px;
}

.hero-left h1{
    font-size:42px !important;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    text-align:center;
}

/* CATEGORIES */

.grid{
    grid-template-columns:repeat(2,1fr) !important;
    gap:15px;
}

.card img{
    height:180px !important;
}

.card span{
    font-size:15px;
    padding:12px;
}

/* SERVICES */

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

/* GALLERY */

.gallery-grid{
    grid-template-columns:repeat(2,1fr) !important;
}

.gallery-item img{
    height:180px !important;
}

/* CONTACT */

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

/* CTA BUTTONS */

.cta-whatsapp,
.contact-whatsapp-btn,
.btn,
.btn-outline{
    width:100%;
    text-align:center;
    display:block;
}

/* FLOATING WHATSAPP */

.whatsapp{
    right:12px;
    bottom:12px;
    padding:12px 16px;
    font-size:14px;
    z-index:999;
}

}