/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  .title {
    text-decoration: none;
    color: inherit;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}
  
  /* Navbar styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
 .navbar-brand{
    color: #000000;
    size: 40px;
   
 }  
  .navbar-links {
    display: flex;
  }
  
  .navbar-links ul {
    list-style: none;
    display: flex;
  }
  
  .navbar-links li {
    margin: 0 15px;
    position: relative;
    color: #000000;
  }
  
  .navbar-links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .navbar-links a:hover {
    color: #00d9ff;
  }
  
  /* Dropdown Menu */
  .navbar-links li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown-menu li {
    margin: 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .dropdown-menu a:hover {
    background-color: #555;
    color: #00d9ff;
  }
  
  /* Show dropdown when checkbox is checked */
  .services-toggle:checked + .dropdown-label + .dropdown-menu {
    display: block;
  }
  
  /* Responsive Navbar */
  .toggle-button {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
  }
  
  .menu-toggle {
    display: none;
  }
  
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    height: 400px;
    position: relative;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .toggle-button {
      display: block;
    }
  
    .navbar-links {
      display: none;
      flex-direction: column;
      background-color: #333;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 10px 0;
    }
  
    .menu-toggle:checked + .toggle-button + .navbar-links {
      display: flex;
    }
  
    .navbar-links ul {
      flex-direction: column;
      width: 100%;
    }
  
    .navbar-links li {
      text-align: center;
      margin: 10px 0;
    }
  
    .dropdown-menu {
      position: static;
      background-color: #333;
      box-shadow: none;
      padding: 0;
    }
  
    .dropdown-menu a {
      text-align: center;
      padding: 10px 0;
    }
  }
  
  
  /* Scrolling Social Media Bar */
  .social-media-bar {
    position: fixed;
    top: 850px; /* Just below the navbar */
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 999;
    overflow: hidden;
  }
  
  .social-links {
    display: flex;
   
  }
  
  .social-link {
    margin: 0 20px;
    display: inline-block;
  }
  
  .social-link img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .social-link:hover img {
    transform: scale(1.2);
  }
  
  /* Scrolling Animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .toggle-button {
      display: block;
    }
  
    .navbar-links {
      display: none;
      flex-direction: column;
      background-color: #333;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 10px 0;
    }
  
    .menu-toggle:checked + .toggle-button + .navbar-links {
      display: flex;
    }
  
    .navbar-links ul {
      flex-direction: column;
      width: 100%;
    }
  
    .navbar-links li {
      text-align: center;
      margin: 10px 0;
    }
  
    .dropdown-menu {
      position: static;
      background-color: #333;
      box-shadow: none;
      padding: 0;
    }
  
    .dropdown-menu a {
      text-align: center;
      padding: 10px 0;
    }

  }
  
  .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .toggle-button {
      display: block;
    }
  
    .navbar-links {
      display: none;
      flex-direction: column;
      background-color: #333;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 10px 0;
    }
  
    .menu-toggle:checked + .toggle-button + .navbar-links {
      display: flex;
    }
  
    .navbar-links ul {
      flex-direction: column;
      width: 100%;
    }
  
    .navbar-links li {
      text-align: center;
      margin: 10px 0;
    }
  
    .dropdown-menu {
      position: static;
      background-color: #333;
      box-shadow: none;
      padding: 0;
    }
  
    .dropdown-menu a {
      text-align: center;
      padding: 10px 0;
    }
}
  .carousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
  }

.carousel-item{
    height: 100vh;
    min-height: 300px;
}
.carousel-caption{
    bottom: 220px;
    z-index: 2;
    border: 4px;
    bottom: 70%;
    transform: translateY(4%);
    line-height: 18;
}
.carousel-caption h5 {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;     
    line-height: 1.2;
}
.carousel-caption p {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    width: 60%;
    margin: auto;
}
.carousel-inner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(59, 58, 58, 0.7);
    z-index: 1;
}
@media only screen and (min-width: 992px) {
    .carousel-caption {
        bottom: 70%;
        transform: translateY(50%);
    }
    .carousel-caption h5 {
        font-size: 50px;    }
    .carousel-caption p {
        font-size: 20px;
    }
}
/*== responsive css ==*/
@media only screen and (min-width: 768px) and (max-width:991px){
    .carousel-caption{
        bottom: 370px;
    }
    .carousel-caption p{
        width: 100%;
    }


}


@media only screen and (max-width: 767px) {
    .navbar-nav{
        text-align: center;
    }
    .carousel-caption{
        bottom: 125px;
    }
    .carousel-caption h5{
        font-size: 17px;
    }
    .carousel-caption a{
        padding: 10px 15px;
    }
    .carousel-caption p{
        width: 100%;
        line-height: 1.6;
        font-size: 12px;
    }
     
}
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 50%; 
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5); 
  border-radius: 50%;
  padding: 10px;
  width: 50px; 
  height: 50px;
  transition: background-color 0.3s ease;  
  color: white;
}

.carousel-control-prev {
  left: 15px; 
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: white; 
  border-radius: 50%;
  padding: 10px;
  width: 30px;
  height: 30px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7); 
}

.carousel-control-prev:focus, .carousel-control-next:focus {
  outline: none;  
}
  
  
/*Productos*/
.products-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
  }
  
  .product {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: all 0.6s ease-in-out;
    justify-content: center;
  }
  
  .product:hover {
    transform: rotateY(180deg);
  }
  
  .product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    justify-content: center;
  }
  
  .product:hover img {
    transform: scale(1.1);
  }
  
  .product-content {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .product-content .description {
    font-size: 1rem;
    color: #555;
    margin-top: 20px;
    line-height: 1.5;
    font-weight: normal;
    transition: color 0.3s ease;
  }
  
  /* Hover Animation */
  .product:hover .product-content {
    transform: translateY(50px);
    opacity: 0.8;
  }
  
  /* Add some unique animations for each product */
  .product-1 {
    animation: float 3s ease-in-out infinite;
  }
  
  .product-2 {
    animation: color-change 5s linear infinite;
  }
  
  .product-3 {
    animation: bounce 2s ease-in-out infinite;
  }
  
  /* Product 1 Animation (Floating) */
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  /* Product 2 Animation (Color Change) */
  @keyframes color-change {
    0% {
      background-color: #ff6f61;
    }
    50% {
      background-color: #4CAF50;
    }
    100% {
      background-color: #ff6f61;
    }
  }
  
  /* Product 3 Animation (Bouncing) */
  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
 /* marmol section */ 
 /* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Section styling */
  .title-section {
    height: 25vh; /* Full viewport height */
    display: flex; /* Enables flexbox layout */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    background-color: #333; /* Example background color */
    color: #fff; /* White text color */
    text-align: center; /* Center the text inside */
  }
  
  /* Title styling */
  .section-title {
    font-size: 1.5rem; /* Adjust font size as needed */
    font-family: 'Arial', sans-serif; /* Set font family */
    letter-spacing: 2px; 
    margin: 0; 
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Section styling */
  .marmol-section {
    height: 50vh;
    background-image: url('image/quienes\ somos.jpeg'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
  }
  
  /* Content styling inside the section */
  .marmol-content {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
  }
  
  .marmol-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
  }
  
  .marmol-content p {
    font-size: 1.2rem;
    line-height: 1;
    font-family: 'Arial', sans-serif;
  }
  
  /* Add animation effect */
  .marmol-section {
    animation: fadeIn 2s ease-in-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .catalog-page {
    font-family: Arial, sans-serif;
  }
  
  .catalog-slider {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: center;
    gap: 10px;
  }
  
  .slider-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 10px 0;
    gap: 20px;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }
  
  .slider-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
  }
  
  .slider {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
  }
  
  .catalog-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 200px; /* Fixed width for cards */
    flex-shrink: 0; /* Prevent shrinking */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .catalog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .catalog-card h3 {
    margin: 15px 0 10px;
    font-size: 18px;
    color: #333;
  }
  
  .catalog-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
  }
  
  .catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  button-catalog {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
    font-size: 24px; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  button:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  
  


  


  
/* cuarzo section */ 
 /* Section styling */
.cuarzo-section {
    height: 50vh; /* Full viewport height */
    background-image: url('image/cuarzo.png'); /* Replace with your quartz image */
    background-size: cover; /* Make background cover the whole section */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
  }
  
  /* Content inside the section */
  .cuarzo-content {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    padding: 25px;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
  }
  
  .cuarzo-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .cuarzo-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
  }
  
  /* Animation effect */
  .cuarzo-section {
    animation: fadeIn 2s ease-in-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
   
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .product-gallery {
    position: relative;
    width: 80%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
  }
  
  .gallery-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 10px 0;
    gap: 20px;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }
  
  .gallery-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
  }
  
  .gallery-slider {
    display: flex;
    gap: 20px;
  }
  
  .product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 200px; /* Fixed width for cards */
    flex-shrink: 0; /* Prevent shrinking */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .product-card h3 {
    margin: 15px 0 10px;
    font-size: 18px;
    color: #333;
  }
  
  .product-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  button {
    position: relative;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  button:focus {
    outline: none;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  .gallery-prev-btn {
    order: -1;
  }
  
  .gallery-next-btn {
    order: 1;
  }
  
  
/* granito section */ 
/* Section styling */
.granito-section {
    height: 60vh; /* Full viewport height */
    background-image: url('image/granito2.png'); /* Replace with your granite image */
    background-size: cover; /* Make background cover the entire section */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
  }
  
  /* Content inside the section */
  .granito-content {
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    padding: 30px;
    border-radius: 15px;
    max-width: 750px;
    width: 100%;
  }
  
  .granito-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
  }
  
  .granito-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
  }
  
  /* Animation effect */
  .granito-section {
    animation: fadeIn 2.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .gallery-container {
    width: 100%;
    max-width: 1200px;  /* Set max width for better control */
    margin: 20px auto;
    position: relative;
    overflow: hidden; /* Hide the extra content outside the container */
    border-radius: 8px;  /* Optional rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
  }
  
  .container-scroll {
    overflow-x: scroll;
    white-space: nowrap;
    scroll-behavior: smooth; /* Smooth scroll transition */
  }
  
  .container-track {
    display: inline-flex;
  }
  
  .gallery-item {
    display: inline-block;
    width: 250px;  /* Fixed width for gallery items */
    margin-right: 20px;  /* Space between the items */
    text-align: center;
    transition: transform 0.3s ease; /* Smooth effect for hover */
  }
  
  .gallery-item img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensure images cover the space without distortion */
    border-radius: 8px; /* Rounded corners for images */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for the images */
  }
  
  .gallery-item h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
  }
  
  .gallery-item p {
    color: #777;
    font-size: 1rem;
    margin-top: 5px;
  }
  
  .gallery-item:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
  }
  
  .container-prev, .container-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 2;
  }
  
  .container-prev {
    left: 10px;
  }
  
  .container-next {
    right: 10px;
  }
  
  .container-prev:hover, .container-next:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker on hover */
  }
  
  .container-prev:focus, .container-next:focus {
    outline: none; /* Remove default focus outline */
  }
 /* Restablecer estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos para el contenedor del anuncio */
  .ad-container {
    width: 100%;
    background-color: #2c3e50;
    color: #fff;
    font-family: 'Arial', sans-serif;
    padding: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: slideIn 2s ease-out, fadeIn 1s ease forwards;
    margin-bottom: 20px; /* Espacio debajo del anuncio */
  }
  
  /* Estilos para el contenido del anuncio */
  .ad-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
  }
  
  .ad-content h3 {
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: 600;
  }
  
  .ad-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
  }
  
  .ad-content strong {
    color: #f39c12; /* Texto destacado en color dorado */
  }
  
  /* Animaciones de deslizamiento y desvanecimiento */
  @keyframes slideIn {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Estilos opcionales para el botón del anuncio */
  .ad-container .cta-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .ad-container .cta-button:hover {
    background-color: #c0392b;
  }
   
  

  




















































/* Quienes somos Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .who-we-are {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background-image: url('image/put.png'); 
    background-size: cover;
    background-position: center;
  }
  
  .title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4); /* Optional: adds dark overlay for better text contrast */
    padding: 20px;
    border-radius: 30px;
  }
  
  .section-title {
    font-size: 3rem; /* Adjust size as needed */
    font-weight: bold;
    margin: 0;
  }
  
  .main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .big-box {
    background: #c0b0a4;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    width: 100%;
  }
  
  .big-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .big-box-title {
    font-size: 2em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .content-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
  
  .small-box-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }
  
  .small-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease;
    position: relative;
  }
  
  .small-box:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #f6d365, #fda085);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
  
  .small-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #722121;
    transition: color 0.3s ease;
  }
  
  .small-box p {
    font-size: 1em;
    color: #555;
  }
  
  .small-box:hover h3,
  .small-box:hover p {
    color: #fff;
  }
  
  .big-box-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
  
  .big-box-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
  }
  
  .big-box:hover .big-box-img {
    transform: scale(1.1);
  }
  
  
  .article-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  .article-content {
    flex: 2;
  }
  
  .article-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .article-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
  }
  
  .image-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .gallery-item {
    width: 60%; 
    align-self: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  
  .gallery-item:hover {
    transform: scale(1.2) rotate(10deg) translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    animation: wiggle 0.5s ease infinite alternate;
  }
  
  
  @keyframes wiggle {
    0% {
      transform: rotate(-3deg);
    }
    100% {
      transform: rotate(3deg);
    }
  }
  
  
  @keyframes crazyEntry {
    0% {
      opacity: 0;
      transform: scale(0.5) rotate(-180deg) translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg) translateX(0);
    }
  }
  
  .image-gallery .gallery-item {
    animation: crazyEntry 1s ease forwards;
    opacity: 0; 
  }
  
  .image-gallery .gallery-item:nth-child(1) {
    animation-delay: 0.3s;
  }
  
  .image-gallery .gallery-item:nth-child(2) {
    animation-delay: 0.5s;
  }
  
  .image-gallery .gallery-item:nth-child(3) {
    animation-delay: 0.7s;
  }
  
  .image-gallery .gallery-item:nth-child(4) {
    animation-delay: 0.9s;
  }
  .gallery-item:hover {
    border: 3px solid rgba(255, 120, 80, 0.8);
    background: linear-gradient(135deg, rgba(255, 210, 80, 0.4), rgba(120, 150, 255, 0.4));
  }
  
  
.about-values {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.about-values h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.about-values ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.1rem;
    color: #555;
}

.about-values ul li {
    margin-bottom: 15px;
}

.about-values ul li strong {
    color: #000000; /* Highlight core values with green */
}

.about-cta {
    text-align: center;
    margin-top: 40px;
}

.about-cta .cta-button {
    display: inline-block;
    background-color: #4CAF50;
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.about-cta .cta-button:hover {
    background-color: #c73636;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding: 10px;
    }

    .about-image {
        margin-top: 20px;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .about-values ul li {
        font-size: 1rem;
    }
}
.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
  }

  .title-container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }

  .title-container p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
  }

  .title-container .underline {
    width: 100px;
    height: 4px;
    background-color: #ff6347;
    margin-top: 10px;
    border-radius: 2px;
  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  section.image-showcase-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f3f3f3;
  }

  .image-showcase {
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .image-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .image-track img {
    width: 100%;
    border: none;
  }

  .image-showcase .controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  .controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .controls button:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .indicators button {
    background-color: #ccc;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
  }

  .indicators button.active {
    background-color: #333;
  }

 
  
  
  
    
  
  
  
  






  


/* Contacto Section */
/* Contact Section Styles */
.title3-section {
    position: relative;
    background-image: url('image/andy.png'); 
    background-size: cover;
    background-position: center;
    padding: 100px 20px; 
    color: #000000;
    text-align: center;
  }
  
  .title3-container {
    position: relative;
    z-index: 2;
  }
  
  .section-title3 {
    font-size: 3rem; 
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  }
  
  .section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    padding: 0 20px;
  }
.contact-section {
    padding: 50px 20px;
    background: url();
    background-size: 400% 400%; 
    animation: gradientAnimation 15s ease infinite;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .contact-form {
    flex: 1;
    max-width: 1000px;
    padding: 20px;
    background-color: #dfd3be;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    height: 150px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #0033b3;
  }
  
  .contact-info {
    flex: 1;
    max-width: 800px;
    padding: 20px;
    background-color: #dfd3be;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .contact-info p {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .contact-info .social-icons a {
    font-size: 3rem;
    margin-right: 10px;
    color: #333;
    transition: color 0.3s ease;
  }
  
  .contact-info .social-icons a:hover {
    color: #ba2b12;
   
  }
  
  .map-container {
    margin-top: 40px;
  }
  
  .map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  @media screen and (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-form,
    .contact-info {
      max-width: 100%;
    }
  }
  
  /* Footer Styles */
  footer {
    text-align: center;
    padding: 30px;
    background-color: #333;
    color: white;
    font-size: 14px;
    margin-top: 30px;
    border-radius: 0 0 12px 12px;
  }
  
  footer p {
    margin: 0;
  }
  



