*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Verdana,sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#efefef;
  color:#222;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:9999;
  background:rgba(0,0,0,.95);
}

nav{
  max-width:1200px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  color:#fff;
  font-size:1.2rem;
  font-weight:700;
}

.menu{
  display:flex;
  gap:24px;
  list-style:none;
}

.menu a{
  color:#fff;
}

.menu a:hover{
  color:#d8b47c;
}

.hero{
  min-height:100vh;
  
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 20px 40px;
  background-image: url('../img/session-product-1.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  background-color: #000000b0;
}

.hero-content{
  max-width:900px;
  text-align:center;
  color:#fff;
}

.hero h1{
  font-size:3.2rem;
  line-height:1.2;
  margin-bottom:20px;
}

.hero p{
  font-size:1.2rem;
  line-height:1.7;
  margin-bottom:24px;
}

.cta{
  display:inline-block;
  background:#d8b47c;
  color:#111;
  padding:18px 32px;
  border-radius:50px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition:.3s;
}

.cta:hover{
  transform:translateY(-2px);
}

.badges{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-top:25px;
}

.badge{
  background:rgba(255,255,255,.14);
  padding:12px 16px;
  border-radius:40px;
  color:#fff;
}

.section{
  padding:80px 8%;
}

.title{
  text-align:center;
  margin-bottom:50px;
}

.title h2{
  font-size:2.4rem;
}

.proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  text-align:center;
}

.products{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.product{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.product-content{
  padding:25px;
}

.product-content h3{
  margin-bottom:15px;
}

.product-content ul{
  padding-left:18px;
  line-height:2;
}

.about{
  background:#111;
  color:#fff;
  border-radius:20px;
  padding:50px;
  text-align:center;
  line-height:1.8;
}

.contact-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
}

.map iframe,
.form-card{
  width:100%;
  height:100%;
  min-height:500px;
  border:none;
  border-radius:18px;
}

.form-card{
  background:#fff;
  padding:30px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

input,
textarea{
  width:100%;
  padding:16px;
  border:1px solid #ddd;
  border-radius:12px;
  margin-bottom:15px;
  font-size:1rem;
}

button{
  width:100%;
  padding:18px;
  border:none;
  background:#111;
  color:#fff;
  border-radius:12px;
  font-size:1rem;
  cursor:pointer;
  transition:.3s;
}

button:hover{
  opacity:.9;
}

.floating-whatsapp,
.container-arrow-top{
  position:fixed;
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.8rem;
  z-index:9999;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.floating-whatsapp{
  left:20px;
  bottom:20px;
  background:#25D366;
}

.container-arrow-top {
    background-color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.container-arrow-top.show {
    opacity: 1;
    pointer-events: auto;
}

.position-bottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: all 0.3s ease-in-out;
}

footer{
  background:#000;
  color:#aaa;
  text-align:center;
  padding:40px;
  margin-top:50px;
}

#logo-second-name{
  font-size: .75em;
}

.products-carousel {
  position: relative;
  max-width: 1100px;
  margin: 50px auto 0;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 520px;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 20;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}


.image1 {
  background-image: url('../img/image1.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}

.image2 {
  background-image: url('../img/image2.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}

.image3 {
  background-image: url('../img/image3.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}

.image4 {
  background-image: url('../img/image4.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}

.image5 {
  background-image: url('../img/image5.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}

.image6 {
  background-image: url('../img/image6.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}

.image7 {
  background-image: url('../img/image7.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image8 {
  background-image: url('../img/image8.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image9 {
  background-image: url('../img/image9.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image10 {
  background-image: url('../img/image10.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image11 {
  background-image: url('../img/image11.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image12 {
  background-image: url('../img/image12.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}.image13 {
  background-image: url('../img/image13.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image14 {
  background-image: url('../img/image14.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image15 {
  background-image: url('../img/image15.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image16 {
  background-image: url('../img/image16.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}
.image17 {
  background-image: url('../img/image17.jpeg');
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  height: 100vh;
}


.carousel-btn:hover {
  background: rgba(0,0,0,.75);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: .3s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .carousel-track {
    height: 320px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

@media(max-width:900px){
  .menu{
    display:none;
  }

  .hero h1{
    font-size:2.2rem;
  }

  .proof,
  .products,
  .contact-wrap{
    grid-template-columns:1fr;
  }

  .about{
    padding:30px;
  }
}