/* Global */
body, html {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'CormorantSC';
}

#main-content {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

main {
  flex: 1 0 auto; 
}

 @keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-style {
  animation: fadeInUp 0.6s ease forwards;
}

.cursor-point{
  pointer-events: all;
  cursor: pointer;
  opacity: 1;

}

a.cursor-point:hover {
  color: #707070 !important;
}

.card-text {
  font-size: 1.2rem;
}

.card-title {
  font-weight: bold;
}



/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb{
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover{
  background-color: rgba(0, 0, 0, 0.5);
}




/* Font */
@font-face {
  font-family: 'CormorantSC';
  src: url('../font/CormorantSC-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}




/* Navbar */
nav .nav-link {
  color: rgb(0, 0, 0) !important;
  font-size: 1.2rem; 
  position: relative;  
}

.navbar-logo {
  height: 55px;
}

nav {
  background: transparent;
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
}

.navbar-translucent {
  background-color: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(20px);
}

.navbar-toggler{
  font-size: 3rem;
}

.dropdown-menu {
  min-width: 100% !important;
  width: 100% !important;
  white-space: normal !important;
  right: 0 !important;
  left: auto !important;
  background-color: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(60px);
  padding: 0;
  border-radius: 10px; 
  overflow: hidden; 
}

.dropdown-item {
  display: flex;
  justify-content: center; 
  align-items: center;    
  width: 100%;
  padding: 10px;
  color: black;
  background-color: transparent;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 0; 
}

.dropdown-item:hover {
  background-color: rgb(226, 226, 226);
  color: white;
}

#flag-toggle:focus,
#flag-toggle:active,
.dropdown-item:focus,
.dropdown-item:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

@media (min-width: 992px) {
  nav .navbar-nav > li:not(:last-child) > .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #000;
    transition: width 0.4s ease;
    pointer-events: none;
    transform: translateX(-50%);
  }

  nav .navbar-nav > li:not(:last-child) > .nav-link:hover::after,
  nav .navbar-nav > li:not(:last-child) > .nav-link.active::after {
    width: 80%;
  }
}




/* Hero Section */
.hero-section {
  background: url('../image/global/marble_background.jpg') no-repeat center center;
  background-size: cover;
  height: 75vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);     
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.custom-shape-divider-bottom-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  bottom: -1px; 
}

.custom-shape-divider-bottom-hero svg {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
  
}

.custom-shape-divider-bottom-hero path {
  fill: #ffffff;
}




/* Catalog Main*/
.card-catalog_main {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: none;
  padding: 0;
  height: auto; 
}

.card-catalog_main:hover {
  transform: scale(1.05);
  color: #333;
}

.card-catalog_main .card-title {
  padding: 1rem;
}




/* Budget */
.btn-see-more-budget {
  transition: transform 0.4s ease; 
  border-radius: 0 !important;
}

.btn-see-more-budget:hover{
  transform: scale(1.1);
  font-weight: bold;
}




/* Footer */
.footer-bg {
  background: url('../image/global/marble_background.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #000000; 
}

.footer-overlay {
  background-color: rgba(0, 0, 0, 0.1); 
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0; 
}

.wave-top {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  top: -1px; 
}

.wave-svg {
  display: block;
  width: 100%;
  height: 100px;
}

.footer-content {
  position: relative;
  z-index: 2; 
}

.hr-dark {
  border: none;
  border-top: 1px solid #000000; 
  opacity: 1;
  margin: 1rem 0;
}

footer {
  flex-shrink: 0; 
}




/* Catalog */
.card-catalog_logos {
  transition: transform 0.3s ease;
}

.card-catalog_logos:hover {
  transform: scale(1.1);
  color: #333;
}

.card-catalog {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: none;
  padding: 0;
  height: auto; 
}

.card-img-top.img-catalog {
  display: block;      
  width: 100%;         
  height: auto;          
  object-fit: cover;    
}

.card-catalog .card-title {
  padding: 1rem;
}

.btn-see-more {
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-see-more:hover {
  transform: scale(1.1);
  color: #333;
  font-weight: bold;
}

.btn-see-more-catalog {
  transition: transform 0.4s ease; 
  border-radius: 0 !important;
}

.btn-see-more-catalog:hover{
  transform: scale(1.1);
}




/* Products */
#imageModal .modal-dialog {
  max-width: auto;  
  width: auto;
}

#imageModal img#modalImage {
  width: 100%;     
  height: auto;    
  max-height: 80vh; 
  object-fit: contain;
}

#catalog-container img {
  width: 100%;
  height: auto;
  object-fit: cover; 
}

.custom-filter-select {
  outline: none;
  box-shadow: none !important;
  border: 1px solid #ccc;
  background-color: #fff;
}

.custom-filter-select:focus {
  outline: none;
  box-shadow: none !important;
  border: 1px solid #aaa;
}




/* Cards Services */
.card-services_main {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: none;
  padding: 0;
  height: auto; 
}

.card-img-top.img-services_main  {
  display: block;      
  width: 100%;         
  height: auto;          
  object-fit: cover;    
}

.card-services_main  .card-title {
  padding: 1rem;
}

.card-services_main:hover {
  transform: scale(1.05);
  color: #333;
}

.card-services {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: none;
  padding: 0;
  height: auto; 
}

.card-img-top.img-services {
  display: block;      
  width: 100%;         
  height: auto;          
  object-fit: cover;    
}

.card-services .card-title {
  padding: 1rem;
}

.card-services:hover {
  transform: scale(1.02);
  color: #333;
}




/* Cards Services Gallery */
.card-services_gallery {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: none;
  padding: 0;
  height: auto; 
}

.card-img-top.img-services_gallery {
  display: block;      
  width: 100%;         
  height: auto;          
  object-fit: cover;    
}

.card-services_gallery .card-title {
  padding: 1rem;
}

.card-services_gallery video.img-services_gallery {
  width: 100%;
  object-fit: cover;
  display: block;
}

.video-services_gallery.aspect-7-5 {
  aspect-ratio: 7 / 5;
}

.video-services_gallery.aspect-3-4 {
  aspect-ratio: 3 / 4;
}




/* Contacts */
.contact-section {
  background: url('../image/global/marble_background.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  height: relative;
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-overlay {
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-contents {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.custom-shape-divider-bottom-contact {
  position: absolute;
  bottom: -1px; 
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.custom-shape-divider-bottom-contact svg {
  position: relative;
  display: block;
  width: 100%;
  height: 65vh;
}

.custom-shape-divider-bottom-contact path {
  fill: #ffffff;
}

.underline-input {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}

.underline-input:focus {
  border-color: #000;
  box-shadow: none;
}

.form-label.required::after {
  content: " *";
  color: red;
}

#mensagem {
  resize: none;
}

.btn-see-more-contact {
  transition: transform 0.4s ease;
  border-radius: 0 !important;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.btn-see-more-contact:hover {
  transform: scale(1.02);
  font-weight: bold;
}

#alerta-contacto {
  position: fixed;
  top: 10vb;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 600px;
  pointer-events: none; 
}

#alerta-contacto .alert {
  pointer-events: auto; 
}

input[type="checkbox"] {
  border: 1px solid #707070;
  accent-color: #707070;
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: none;
}




/* Mobile Navbar */
.icon-small {
    font-size: 0.6rem;
}




/* Mobile Navbar */
@media (max-width: 767.98px) {
  nav .navbar-nav > li:not(:last-child) > .nav-link::after {
    display: none;
  }
}




/* Mobile Hero */
@media (max-width: 768px) {

  .hero-content h1{
    font-size: 1.6rem !important;
  }
  
  .hero-content p{
    font-size: 1.1rem !important;
  }
  
  .custom-shape-divider-bottom-hero svg {
    height: 50px;  
  }

  .hero-section {
    height: 55vh;
  }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: 100vh;
  }

  .custom-shape-divider-bottom-hero svg {
    height: 30px;
  }

  .hero-content h1 {
    font-size: 1.2rem !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }
}




/* Mobile Footer */
@media (max-width: 768px) {

  .footer-content p,
  .footer-content span,
  .footer-content a,
  .footer-content h6,
  .footer-content small {
    font-size: 0.85rem !important;
  }

  .footer-content .fs-5 {
    font-size: 1rem !important;
  }

  .footer-content .fs-6 {
    font-size: 0.85rem !important;
  }

  .footer-content .fs-4 {
    font-size: 1.1rem !important;
  }
}




/* Contact */
@media (max-width: 768px) {
  .contact-section {
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .contact-contents .col-md-7,
  .contact-contents .col-md-5 {
    padding: 1rem !important;
  }

  .custom-shape-divider-bottom-contact svg {
    height: 35vh;
  }

  .contact-section {
    background: transparent;
  }

  .contact-overlay {
    background-color: transparent;
  }

  .contact-contents {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
  }
}




/* Cards Text */
@media (max-width: 768px) {

  .card-title{
    font-size: 1rem !important;
  }
  
  .card-text{
    font-size: 0.85rem !important;
  }
}




/* Product Text */
@media (max-width: 768px) {

  .container-fluid h1 {
    font-size: 1.6rem; 
  }

  .container-fluid h5 {
    font-size: 1rem; 
  }
}



