
@font-face {
    font-family: 'Dancing Script';
    src: local('Dancing Script Regular'), local('Dancing Script'),
         url('../fonts/DancingScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



[id] {
  scroll-margin-top: 90px;
}



.hidden-text {
    position: absolute;
    left: -9999px;
}



body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,        
        #ffffff 33%,       
        #ead2bf 100%       
    );
    color: #000000;
    margin: 0;
    padding: 0;
    background-attachment: fixed; 
    padding-top: 80px; 
}



.social-media{
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 0 12px; 
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px; 
}
.social-media .topbar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.social-media .address-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.social-media .address-line i { font-size: 18px; }

@media (max-width: 480px) {
  .social-media .address-line { font-size: 13px; gap: 6px; }
  .social-media .address-line i { font-size: 16px; }
}
.social-media a {
    color: white;
    margin: 0 20px;
    font-size: 20px;
}
.social-media .location-icon {
    font-size: 20px;
}



header {
    padding: 20px;
    text-align: center;
}

header h1 {
font-family: 'Dancing Script', cursive;
font-size: 48px;
color: black;
text-align: center;
margin: 20px
}
header .logo {
    max-width: 300px;
}
header ul {
    list-style: none;
    padding: 0;
}
header ul li {
    display: inline;
    margin: 0 15px;
}
header ul li a {
    color: #000000;
    font-weight: bold;
}



.nav-link-list {

    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0);
}
.nav-link-list-btn {
  background-color: #ead2bf;
  color: #000;
  padding: 10px 10px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  margin: 5px 5px;
}

.nav-link-list .nav-link-list-btn a:hover {
    background-color: #e09393;
    color: #000;
  }



  .burger-menu-scroll {
    display: flex;
    position: fixed;
    top: 40px; 
    left: 0;
    width: 100%;
    background-color: #ead2bf;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
.burger-menu-scroll .menu-bar {
    width: 100vw;
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    user-select: none;
    
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 2; 
    transition: justify-content 0.25sbar ease, padding 0.25s ease; 
}


.burger-menu-scroll .menu-bar::after {
    content: "Menu";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #000;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease; 
    pointer-events: none;
}

.burger-menu-scroll input:checked + .menu-bar {
    justify-content: flex-start;
    padding-left: 10px;
}

  .burger-menu-scroll .menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    transition: transform 0.25s ease, opacity 0.25s ease; 
  }

  .burger-menu-scroll .menu-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    cursor: pointer;
}


.burger-menu-scroll input:checked + .menu-bar .menu-icon {
    opacity: 0;
}
.burger-menu-scroll input:checked + .menu-bar::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

  .burger-menu-scroll .menu-icon span {
    background-color: #000;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    display: block;
    transition: 0.3s; 
  }

  .burger-label-text {
    font-weight: bold;
    margin: 0;
    font-size: 12px;
  }

  .burger-menu-scroll input {
    display: none;
  }

.burger-menu-scroll .menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ead2bf;
    display: grid;
    grid-template-columns: max-content; 
    justify-content: start;             
    padding: 6px;                       
    max-width: calc(100vw - 12px);      
    
    border-bottom: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.45s ease-out, opacity 0.45s ease-out, padding 0.25s ease-out; 
    z-index: 1;
  }

.burger-menu-scroll .menu-content.is-scrollable {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.burger-menu-scroll input:checked + .menu-bar + .menu-content {
    opacity: 1;
    pointer-events: auto;
    padding: 10px 8px; 
}

.burger-menu-scroll .menu-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    color: #222;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 6px 6px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    border: 2px solid #ead2bf;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s; 
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
    width: auto; 
}
.burger-menu-scroll .menu-content a i {
    font-size: 22px;
    width: 30px;
    color: #e09393;
    flex-shrink: 0;
    text-align: center;
    transition: color 0.18s; 
}

.burger-menu-scroll .menu-content a:hover {
    background: #e09393;
    color: #fff;
    box-shadow: 0 3px 12px rgba(224, 147, 147, 0.15);
    border-color: #e09393;
}
.burger-menu-scroll .menu-content a:hover i {
    color: #fff;
}

@media (max-width: 600px) {
  html { font-size: 87.5%; } 
  .social-media { height: 36px; }
  .burger-menu-scroll { top: 36px; }
  body { padding-top: 76px; } 
  header h1 { font-size: 34px; }
  .hero h2 { font-size: 22px; }
  .hero .btn { font-size: 15px; padding: 10px 14px; }
  .burger-menu-scroll .menu-content a { font-size: 14px; padding: 10px 12px; margin: 6px; }
  .burger-menu-scroll .menu-content a i { font-size: 18px; width: 22px; }
  .map-section h2 { font-size: 22px; }
}


@media (max-width: 480px) {
  .social-media { height: 40px; }
  .burger-menu-scroll { top: 40px; }
  body { padding-top: 80px; } 
}




.splash-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 33%,
    #ead2bf 100%
  );
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  opacity: 1;
  visibility: visible;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  animation: overlaySequence 3s ease-in-out forwards; 
}

.splash-logo {
  width: min(60vw, 320px);
  height: auto;
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden; 
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  transform: translateZ(0); 
  
  animation: logoSequence 3s cubic-bezier(.25,.8,.25,1) forwards; 
  -webkit-animation: logoSequence 3s cubic-bezier(.25,.8,.25,1) forwards; 
}


.page-content {
  opacity: 0;
  animation: contentSequence 3s ease-in-out forwards; 
}


.splash-welcome {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  color: #000;
  line-height: 1;
  opacity: 1;
  animation: welcomeSequence 3s ease forwards; 
}

@keyframes logoSequence { 
  0%   { transform: rotateY(-90deg) scale(0.95); opacity: 0; }
  33%  { transform: rotateY(0deg)    scale(1.05); opacity: 1; }
  66%  { transform: rotateY(0deg)    scale(1.05); opacity: 1; }
  100% { transform: rotateY(-180deg) scale(1.20); opacity: 0; }
}
@-webkit-keyframes logoSequence {
  0%   { -webkit-transform: rotateY(-90deg) scale(0.95); opacity: 0; }
  33%  { -webkit-transform: rotateY(0deg)    scale(1.05); opacity: 1; }
  66%  { -webkit-transform: rotateY(0deg)    scale(1.05); opacity: 1; }
  100% { -webkit-transform: rotateY(-180deg) scale(1.20); opacity: 0; }
}

@keyframes overlaySequence { 
  0%,66% { opacity: 1; visibility: visible; }
  100%   { opacity: 0; visibility: hidden; }
}

@keyframes contentSequence { 
  0%,66% { opacity: 0; }
  100%   { opacity: 1; }
}

@keyframes welcomeSequence { 
  0%,33% { opacity: 1; }
  45%    { opacity: 0; }
  100%   { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .splash-screen { animation: overlaySequence 1.2s ease forwards; } 
  .splash-logo { animation: none; } 
  .page-content { animation: contentSequence 0.8s ease forwards; } 
}




.hero {
    text-align: center;
    padding: 20px 50px;
}
.hero h2 {
    font-size: 36px;
    color: #000000;
}
.hero p {   
    font-size: 16px;
    margin: 20px 0;
}
.hero .btn {
    background-color: #000000;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 22px;
    
}

@keyframes blinkBackground {
    0%   { background-color: #000000; }
    50%  { background-color: #e09393; color: #0c0c0c; }
    100% { background-color: #8f2b2b; }
}

@keyframes blinkFonts {
    0%   { color: #fdfdfd; transform: scale(1);}
    50%  { color: #ffb0b0; transform: scale(1.01);}
    100% { color: #ffffff; transform: scale(1);}
}

.hero .btn:hover {
   
   background-color: rgb(224, 164, 35); 
   color: black;
}



.process {
    text-align:center;
    padding: 10px 25px; */
    
}
.process h2 {
    text-align: center;
    font-size: 36px;
    color: #000000;
}
.process h3 {
  font-size: 30px;
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
 
}
.process-outer{
    margin: 20px auto;
}
.process p {
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
    margin: 10px auto;
}



.attention {
    text-align:center;
    padding: 10px 50px;
}
.attention-outer{
    margin: 20px 25px;
    line-height: 1.6;   
}
.attention-outer-content{
    line-height: 1.4;   
    border: 1px solid rgb(218, 183, 183);
    background-color: #f3e3d6;

}
.attention-text p.title {
    font-size: 18px;
    text-align: left;      
    margin: 10px auto;           
    line-height: 1.6;         
}
.attention-text p.content {
    font-size: 16px;
    text-align: left;   
    margin: 0px auto;   
    margin-top: 0px;
    margin-left: 40px;
    margin-bottom: 30px;
    line-height: 1.6;   
    content: "▶ ";
}



.services {
    padding: 10px 50px;
    text-align: center;
}
.services h2 {
    font-size: 36px;
    margin: 20px;
    color: #000000;
}
.services p{
    line-height: 1.4;   
    border: 1px solid rgb(218, 183, 183);
    background-color: #f3e3d6;
    padding: 10px;
}
.services details {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.services summary {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    color: #000;
}
.services summary::-webkit-details-marker {
    display:none;
}
.services summary::before {
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.3s ease; 
}
.services details[open] summary::before {
    transform: rotate(90deg);
}
.services table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 16px;
}
.services th, .services td {
    padding: 12px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
.services th {
    background-color: #f8e7e7;
    color: #000000;
}
@media screen and (max-width: 600px) {
    .services table, .services th, .services td {
        font-size: 14px;
    }

    .services summary {
        font-size: 18px;
    }
}



.gallery {
    padding: 10px 50px;
    text-align: center;
}
.gallery h2 {
    font-size: 36px;
    margin: 20px;
    color: #000000;
}
.gallery p{
    line-height: 1.4;   
    border: 1px solid rgb(218, 183, 183);
    background-color: #f3e3d6;
    padding: 10px;
}
.gallery details {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 5px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.gallery summary {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    color: #000;
}
.gallery summary::-webkit-details-marker {
    display: none;
}
.gallery summary::before {
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.3s ease; 
}
.gallery details[open] summary::before {
    transform: rotate(90deg);
}
.gallery table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 16px;
}
.gallery th, .gallery td {
    padding: 12px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
.gallery th {
    background-color: #f8e7e7;
    color: #000000;
}
@media screen and (max-width: 600px) {
    .gallery table, .gallery th, .gallery td {
        font-size: 14px;
    }

    .gallery summary {
        font-size: 18px;
    }
}
.gallery-section {
    padding: 1px;
    text-align: center;
}
.gallery-section h2 {
    margin-bottom: 20px;
    font-size: 36px;
    text-align: center;
}
.gallery-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.gallery-container img {
    height: auto;
    max-width: 200px;
    border-radius: 10px;
}

.gallery-section-styles {
    padding: 40px;
    gap: 5px;
    text-align: center;
}
.gallery-section-styles h2 {
    margin-bottom: 0px;
    font-size: 36px;
    text-align: center;
}
.gallery-outer-container-styles {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.gallery-pic-container-styles img {
    height: 250px;
    width: 300px;
    border-radius: 5px;
}
.gallery-pic-container-styles p {
    text-align: center;
}

.slider-container {
  position: relative;
  width: min(100%, 960px);
  margin: 5px auto;
  box-sizing: border-box;
  height: clamp(320px, 70vh, 600px);
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  padding-left: 0px;
  padding-right: 0px;
}

.slider-viewport {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
  display: flex;
}

.slider {
  display: flex;
  align-items: center;
  height: 100%;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1); 
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 4vw, 24px);
  width: 100%;
}

.slide img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.slider .video-section {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 4vw, 24px);
  box-sizing: border-box;
}

.slider .video-section .video-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.slider .video-section video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease; 
  padding: 0;
}

.slider-dot.active {
  background: #222;
  transform: scale(1.1);
}

.slider-dot:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }


@media (max-width: 768px) {
  .prev, .next { display: none; }
}




.about {
    padding: 10px 50px;
    text-align: center;
}
.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about p {
    font-size: 16px;
    text-align: justify;    
    margin: 20px auto;      
    line-height: 1.6;       
}




.video-section {
    padding: 10px;
    text-align: center;
}
.video-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}
.video-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-left: 0px;
    padding-right: 0px;
}
.video-gallery video {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}



.contact {
    padding: 20px;
    text-align: center;
}
.contact h2 {
    font-size: 36px;
    margin: 10px;
}
.contact p {
    font-size: 18px;
}
.contact .btn {
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

a.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease; 
}

a.btn:hover {
    opacity: 0.8;
}

a.btn.call {
    background-color: #567979; 
}
a.btn.call i {
    margin-right: 10px;
}

a.btn.facebook {
    background-color: #1877f2; 
}
a.btn.facebook i {
    margin-right: 10px;
}

a.btn.instagram {
    background-color: #e4405f; 
}
a.btn.instagram i {
    margin-right: 10px;
}

a.btn.tiktok {
    background-color: #000000; 
}
a.btn.tiktok i {
    margin-right: 10px;
}

a.btn.whatsapp {
    background-color: #25d366; 
}
a.btn.whatsapp i {
    margin-right: 10px;
}

a i {
    font-size: 20px; 
}



.map-section {
  text-align: center;
  padding: 20px 20px;
}
.map-section h2 {
  font-size: 32px;
  margin: 10px;
}
.maps-button {
  display: inline-block;
  background-color: #000000;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease; 
}
.maps-button:hover {
  background-color: #25d366;
  color: #000;
}

.map-circle {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.map-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

@media (max-width: 600px) {
  .map-circle {
    width: 250px;
    height: 250px;
  }

  .map-section h2 {
    font-size: 24px;
  }

  .maps-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}



.whatsapp-banner {
    background-color: #000000; 
    color: rgb(255, 255, 255);              
    padding: 10px 20px;        
    position: fixed;           
    bottom: 0;                 
    left: 0;                   
    width: 100%;               
    text-align: center;        
    font-size: 14px;           
    display: flex;             
    align-items: center;       
    justify-content: center;   
    z-index: 9999;             
}
.whatsapp-banner a {
    color: rgb(255, 255, 255);              
    text-decoration: none;     
    font-weight: bold;         
    margin-left: 10px;         
    word-wrap: break-word;      
    overflow-wrap: break-word; 
}
.whatsapp-icon {
    width: 30px;               
    height: 30px;              
    background-image: url('../media/icons/WhatsApp.svg'); 
    background-size: cover;    
    margin-right: 10px;        
}

@media (max-width: 480px) {
    .whatsapp-banner {
        font-size: 12px;       
        padding: 8px 10px;     
        flex-wrap: wrap;       
    }
    .whatsapp-icon {
        width: 24px;           
        height: 24px;
        margin-right: 8px;
    }
    .whatsapp-banner a {
        margin-left: 8px;      
    }
}



.site-footer {
    background-color: #0f0f0f;
    color: #dedede;
    padding: 48px 18px 28px;
    margin-top: 36px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: flex-start;
}

.footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 12px;
}

.site-footer p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-footer a {
    color: #f1d5c5;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    font-weight: 600;
}

.site-footer a:hover {
    color: #f4a261;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li + li {
    margin-top: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    padding: 6px 0;
}

.social-link i {
    width: 20px;
    text-align: center;
}

.share-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.share-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-right: 0.25rem;
    color: #ffffff;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.share-link i {
    width: 18px;
    text-align: center;
}

.share-link:hover {
    color: #f4a261;
    border-color: #f4a261;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    border-top: 1px solid #2c2c2c;
    margin-top: 24px;
    padding-top: 14px;
    padding-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-credit {
    opacity: 0.85;
}

@media (max-width: 640px) {
    .site-footer {
        text-align: center;
    }

    .footer-grid {
        gap: 18px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .share-links {
        justify-content: center;
    }
}





@media screen and (min-width: 1024px) {
  main {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    }
}


@media screen and (max-width: 768px) {
    main {
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero h2,
    .process h2,
    .services h2,
    .gallery h2,
    .about h2,
    .contact h2 {
    font-size: 26px;
    }

    .hero h3,
    .process h3,
    .services h3,
    .gallery h3,
    .about h3,
    .contact h3 {
        font-size: 22px;
    }

    .hero .btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}

.fab-social-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 12000;
}

.fab-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  color: #111;
  border-radius: 12px;
  border: 2px solid #111;
  box-shadow: 0 2px 10px rgba(0,0,0,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s; 
  text-decoration: none;
  animation: fabPulse 2.5s infinite; 
}

.fab-icon i { pointer-events: none; }


.fab-icon.call { background: #567979; color: #fff; }
.fab-icon.whatsapp { background: #25d366; color: #fff; }
.fab-icon.instagram { background: #e4405f; color: #fff; }
.fab-icon.facebook { background: #1877f2; color: #fff; }
.fab-icon.tiktok { background: #000; color: #fff; }
.fab-icon.location { background: #0b57d0; color: #fff; }

.fab-icon:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  filter: brightness(1.13);
}

@keyframes fabPulse { 
  0%   { transform: scale(1); }
  50%  { transform: scale(1.11); box-shadow: 0 8px 22px rgba(0,0,0,0.22);}
  100% { transform: scale(1); }
}

@media (max-width: 600px) {
  .fab-icon { width: 34px; height: 34px; font-size: 1.0rem; }
  .fab-social-stack { right: 6px; bottom: 6px; gap: 8px;}
}


.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 400px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease; 
  z-index: 11000;
}
.back-to-top:hover { background: #222; }
.back-to-top i { font-size: 18px; }
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 600px) {
  .back-to-top { right: 8px; bottom: 8px; width: 38px; height: 38px; bottom: 400px; }
}




.cookie-banner {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  max-width: 504px;
  width: min(504px, calc(100% - 48px));
  background: #ffffff;
  color: #111;
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(0,0,0,0.22);
  padding: 70px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease; 
  z-index: 25000;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.cookie-banner__headline {
  margin: 0 0 10px;
  font-size: 20px;
}

.cookie-banner__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__links {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.86);
}

.cookie-banner__links a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cookie-btn {
  flex: 1 1 160px;
  min-width: 160px;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; 
  top: 220px;
}

.cookie-btn:focus-visible {
  outline: none;
  border-color: #111;
}

.cookie-btn--accept {
  background: #111;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  right: 350px;
}

.cookie-btn--decline {
  background: #ffffff;
  color: #111;
  border-color: #111;
  left: 350px;
}

@media (max-width: 520px) {
  .cookie-banner {
    border-radius: 16px;
    padding: 22px 22px;
    width: calc(100% - 32px);
  }

  .cookie-banner__headline { font-size: 18px; }
  .cookie-banner__text { font-size: 14px; }
  .cookie-btn { flex: 1 1 140px; min-width: 0; }
}

.consent-managed-area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.consent-managed-area[data-consent-state="declined"] {
  display: none;
}

.consent-managed-area[data-consent-state="accepted"] {
  display: block;
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease; 
  z-index: 24000;
}

.cookie-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.consent-modal-open {
  overflow: hidden;
}





body.legal-page {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 80px 0 0;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 33%, #ead2bf 100%);
  color: #0c0c0c;
  box-sizing: border-box;
  background-attachment: fixed;
  min-height: 100vh;
}

body.legal-page * {
  box-sizing: inherit;
  
}

body.legal-page main {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.legal-wrapper {
  width: min(1100px, 50%);
  margin: clamp(20px, 5vw, 36px) auto clamp(32px, 6vw, 48px);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  border: 1px solid rgba(234, 210, 191, 0.85);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  padding: clamp(24px, 4vw, 56px);

}

.legal-wrapper h1 {
  margin: 0 0 12px;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(32px, 6vw, 46px);
  text-align: center;
  letter-spacing: 0.02em;
}

.legal-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: clamp(22px, 4vw, 30px);
  color: #000;
  padding-bottom: 8px;
  border-bottom: 2px solid #ead2bf;
}

.legal-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: clamp(18px, 3vw, 24px);
  color: #000000;
  letter-spacing: 0.01em;
}

.legal-wrapper p,
.legal-wrapper ul,
.legal-wrapper ol {
  line-height: 1.7;
  font-size: 16px;
  color: #0c0c0c;
  margin-bottom: 16px;
}

.legal-wrapper ul,
.legal-wrapper ol {
  padding-left: 22px;
}

.legal-wrapper a {
  color: inherit;
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(224, 147, 147, 0.55);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.legal-wrapper a:hover,
.legal-wrapper a:focus {
  color: #e47272;
  text-decoration-color: #000000;
}

.legal-meta,
.updated {
  display: block;
  margin-top: 8px;
  margin-bottom: 20px;
  font-style: italic;
  color: #567979;
  text-align: center;
}

body.legal-page footer.site-footer {
  background: #0f0f0f;
  color: #dedede;
  box-shadow: none;
  border: none;
}

body.legal-page .site-footer a {
  color: #f1d5c5;
  font-weight: 600;
  text-decoration: none;
}

body.legal-page .site-footer a:hover {
  color: #f4a261;
}

.legal-page-content {
  padding-left: 20%;
  padding-right: 20%;
}

@media (max-width: 600px) {
  body.legal-page {
    padding-top: 76px;
  }

  .legal-wrapper {
    padding: 20px;
    border-radius: 14px;
  }

  .legal-page-content {
    padding-left: 5%;
    padding-right: 5%;
  }

  .legal-wrapper h1 { font-size: 32px; }
  .legal-wrapper h2 { font-size: 22px; }
  .legal-wrapper h3 { font-size: 18px; }
}

@media (max-width: 480px) {
  body.legal-page {
    padding-top: 80px;
  }

 .legal-page-content {
    padding-left: 5%;
    padding-right: 5%;
  }

}
