body {
    /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif, sans-serif; */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

header {
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white; /* Ajusta el color de fondo si es necesario */
}

.logo-title-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 130px; /* Ajusta el tamaño del logo */
    height: auto;
    margin-right: 20px;
}


nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: white; /* Ajusta el color de fondo si es necesario */
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #0F66A3; /* Ajusta el color del texto si es necesario */
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #c1caf388;
   
}

nav ul li a img.masterpets {
    width: 100px; /* Ajusta el tamaño de la imagen */
    height: auto;
}

.masterpets-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contactoPes {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('img/cursoscap/4.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    width: 100%;
  }
  
  #contactoP {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* background-color: white; Ajusta el color de fondo si es necesario */
  }
  
  .logoP-title-container {
    background-color: rgba(55, 70, 30, 0.421);
    display: flex;
    align-items: center;
    opacity: 0.;
  }
  
  
  .logoP {
    width: 130px; /* Ajusta el tamaño del logo */
    height: auto;
    margin-right: 20px;
  }

/* main {
    padding: 2rem;
} */

#aliados-alturas {
    background-color: #0F66A3;
}
#aliados-alturas h2{
    color: white;
}

#aliados-Mascotas {
    background-color: #0F66A3;
}

#aliados-Mascotas h2{
    color: white;
}

#sede {
    background-color: white;
    margin: 0%;
    padding:2px;

}



section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 1rem;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#sede h2 {
    color: white;
    margin-block: 20px;
}

.titulo-encabezado{
    color: white;
    font-size: 35px;
    padding-block: 5px;
}

h1 {
    color: #2980b9;
    font-size: 40px;
    margin: 0;
    /* margin-block: 40px; */

}

h2 {
    color: #2980b9;
    font-size: 40px;
    margin-block: 40px;
}

h3 {
    color: #2980b9;
}

.foot {
    font-size: 10px;
}

p {
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}
.text-inicio{
    color: white;
}
#home{
    background-color: #0F66A3;
}

.paragraph-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px; /* Añade un pequeño espacio a los lados para evitar que el texto toque los bordes de la pantalla */
    box-sizing: border-box; /* Asegura que el padding no afecte al ancho total */
    overflow-wrap: break-word; /* Permite que las palabras largas se rompan en líneas nuevas si no caben en el contenedor */
}

.paragraph-container h1{
    color: white;
    text-align: center;
    font-size: 4rem;

}

.services, .products {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service, .product {
    flex: 1;
    min-width: 200px;
    background-color: #ecf0f1;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/******************************--------------------------***************/
.gallery-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #f0f0f0;
    max-width: 100%;
    max-height: 10%;
}

.gallery-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide img {
    max-width: 20%;
    max-height: 20%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3 / 3;
}


.prev, .next {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 3px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/**********--------------------------------*********/
.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 200px;
    position: relative;
    background-color: #0F66A3;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 150px; /* Ajusta este valor según sea necesario */
    height: 150px; /* Ajusta este valor según sea necesario */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}
/************-------------------------------------------------------------**********/

.services ul li {
    font-size: 20px;
}

/* #contacto {
    height: 500px;
}*/

#contacto {
    background: url('img/cursoscap/4.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    width: 100%;
} 


.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.9); Add a semi-transparent background */
    border-radius: 8px;
  }
  
  .contact-form, .contact-info, .map {
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
  }
  
  .contact-form h2, .contact-info h2, .map h2 {
    margin-bottom: 20px;
    color: #0F66A3;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input, .contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .contact-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #0056b3;
  }
  
  .contact-info p {
    margin: 5px 0;
    color: #555;
  }
  
  .contact-info a {
    color: #007BFF;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
 .map iframe{
    width: 100%;
    border: 0;
    border-radius: 8px;
  }

.carousel_inicio {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
    background-color: #537892;
    border-radius: 10px;
}

.carousel-track_inicio {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item-inicio {
    min-width: 400px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.carousel-item-inicio img {
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
    border-radius: 10px;
}


footer {
    background-color: #0F66A3;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}




@media (min-width: 900px) {
    nav ul {
        gap: 5rem;
    }

    .services, .products {
        flex-wrap: nowrap;
    }
}


 @media (min-width: 300px) {
    .gallery img {
        width: calc(18% - 4px);
    }
}

@media (max-width: 299px) {
    .gallery img {
        width: calc(20% - 10px);
    }
}

/*************************************************************/
.asesoria {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* max-width: 80rem;
    margin: 0 auto;
    padding: 2rem; */
    /* space-y: 2rem; */
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* Titles */
.title {
    font-size: 2.3rem;
    font-weight: bold;
    /* Tailwind Red-600 */
    color: #0F66A3;
    padding: 2rem;
}

.subtitle {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: white;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1rem;
}

.grid-cols-3 {
    grid-template-columns: 1fr;

}

@media (min-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-cols-2 {
    grid-template-columns: 1fr;
    margin-top: 2em;
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Space */
.space-y-2 > * + * {
    margin-top: 0.8rem;
}

/* List Styles */
.list {
    list-style-type: disc;
    padding-left: 1.8rem;
    font-size: 1.3rem;
}

/* Image Styles */
.image {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    /* border-radius: 1%; */
}

.image-brigada{
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    /* border-radius: 1%; */
}

.image-large {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-center {
    width: 50%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Backgrounds and Colors */
.bg-blue {
    background-color: #0F66A3; /* Tailwind Blue-700 */
    margin-bottom: 0.5em;
}

.text-white {
    color: #fff;
}

.p-4 {
    padding: 1rem;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.list a{
    color: rgb(54, 188, 74);
}

/****************************************************************/
  