/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Carrusel */
.carousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #ddd;
}

.carousel-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

/* Contenedor para el texto y los botones sobre el banner */
.carousel {
    position: relative;
}

.carousel .banner-content {
    position: absolute;
    top: 50%; /* Ajusta la posición vertical */
    left: 60%; /* Ajusta la posición horizontal */
    transform: translateY(-50%); /* Centra el contenedor verticalmente */
    color: white;
    max-width: 400px;
    text-align: left;
}

.carousel .banner-content h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #06d59e; /* Color de texto del título */
}
.carousel .banner-content h2 {
    
    font-weight: bold;
    margin-bottom: 10px;
    color: #06d59e; /* Color de texto del título */
}
.carousel .banner-content h1, 
.carousel .banner-content h2, 
.carousel .banner-content p {
    text-shadow: 2px 2px 8px rgba(28, 28, 28, 0.7); /* Sombra oscura alrededor del texto */
}
.carousel .banner-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f0f0f0; /* Color de texto */
    line-height: 1.5;
}

/* Estilos de los botones */
.carousel .banner-content .button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.carousel .banner-content .button.primary {
    background-color: red; /* Color rojo para el botón de "Purchase" */
    color: white;
    border: none;

}

.carousel .banner-content .button.secondary {
    background-color: #ffffff; /* Fondo blanco para el botón de "Learn More" */
    color: white;
    border: 2px solid #333;
}

.carousel .banner-content .button.primary:hover {
    background-color: #c0392b; /* Color más oscuro en hover */

}

.carousel .banner-content .button.secondary:hover {
    background-color: #f0f0f0; /* Color ligeramente oscuro en hover */
}

.row {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se ajusten si el espacio es limitado */
    justify-content: space-between; /* Espacia uniformemente los elementos */
}

.col-md-4, .col-sm-6 {
    flex: 1; /* Cada columna ocupa el mismo espacio */
    max-width: 25%; /* Controla el ancho máximo de cada elemento */
    margin: 30px;
    box-sizing: border-box; /* Asegura que el padding y borde estén dentro del ancho total */
}



/* Responsividad para la sección de llamada a la acción (callout) */
@media (max-width: 768px) {
    .callout-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .callout-content .col-md-10,
    .callout-content .col-md-2 {
        width: 100%;
        margin-bottom: 10px;
    }

    .callout-content .btn {
        width: 100%;
        padding: 10px;
    }
}


/* -- Services */
.services,
.service-tab {
	position: relative;
}
.services .section-header h3 {
	background-image: url("separator-2.png");
	background-position: left bottom;
	background-repeat: no-repeat;
}
.service-tab {
	display: inline-block;
	z-index: 1;
}
.service-tab .nav-tabs {
	border: none;
}
.service-tab .nav-tabs > li {
    float: none;
    margin-bottom: 0;
	border-bottom: 1px solid #e3e9ec;
	display: block;
}
.service-tab .nav.nav-tabs li i {
	margin-right: 23px;
	width: 27px;
	height: 27px;
	overflow: hidden;
	position: relative;
	float: left;
}
.service-tab .nav.nav-tabs li i img {
	position: absolute;
	top: 0;
}
.service-tab .nav-tabs > li:last-child {
    border: none;
}
.service-tab .nav-tabs > li > a {
	border: none;
	font-size: 16px;
	color: #313131;
	padding: 21.1px 20px;
	letter-spacing: 1px;
	border-radius: 0;
	margin-right: 0;
}
.service-tab .nav-tabs > li.active a, 
.service-tab .nav-tabs > li.active > a:focus, 
.service-tab .nav-tabs > li.active > a:hover,
.service-tab .nav > li > a:focus, 
.service-tab .nav > li > a:hover {
	background-color: #f44027;
	border: none;
}
.service-tab .nav-tabs > li.active a i img, 
.service-tab .nav-tabs > li.active > a:focus i img, 
.service-tab .nav-tabs > li.active > a:hover i img,
.service-tab .nav > li > a:focus i img, 
.service-tab .nav > li > a:hover i img{
	top: -30px;
}
.tab-box {
	display: inline-block;
	border-left: 1px solid #f44027;
	background-color: #f8f8f8;
	padding: 40px 25px;
}
.service-tab .tab-content p {
	font-size: 13.5px;
	color: #777;
	line-height: 24px;
	margin-bottom: 16px;
}
.service-tab .tab-content p:last-child { 
	margin-bottom: 0;
}
.services .right-image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 38%;
	text-align: center;
}
/* -- Services */
.service-tab {
	width: 100%;
}

.middle-header .col-md-9 {
    text-align: right;
}
/* - Section Header */
.section-header h3 {
	margin-top: 0px;
	font-size: 20px;
	letter-spacing: 1px;
	background-image: url("separator.jpg");
	background-repeat: no-repeat;
	background-position: center bottom;
	padding-bottom: 16px;
	margin-bottom: 15px;
}
.section-header p {
	font-size: 13px;
	color: #999;
	margin-bottom: 60px;
}	
/* ## min-width: 1200 */
@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}
/* -- Callout */
.callout{
	background-image: url("callout.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 75px;
	padding-top: 75px;
}
.callout h3,
.callout h4 {
	display: inline-block;
	width: 100%;
}

.callout h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0;
	display: inline-block;
	width: 100%;
}
.callout h4 {
	font-size: 18px;
	font-family: 'montserratlight';
	margin: 0px;
	letter-spacing: 2px;
}
.callout a {
	margin-bottom: 0px;
	float: right;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 0px;
	padding: 12px 42px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.callout a:hover {
	background-color: #fff;
	color: #ffbe01;
}


.pet-images{
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
}
.pet-images::before,
.pet-images::after,
.pet-images .content-box,
.pet-images .content-box h3,
.pet-images .content-box p,
.pet-images .content-box a {
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.pet-images::before {
	background-color: #43b8d5;
    bottom: 0;
    content: "";
    display: inline-block;
    left: -20px;
    position: absolute;
    right: 0;
    top: -104%;
	-webkit-transform: skewX(129deg);
    transform: skewX(129deg);
}
.pet-images::after {
	background-color: rgba(41, 155, 236, 0.5);
    bottom: 0;
    content: "";
    display: inline-block;
    left: -20px;
    position: absolute;
    right: 0;
    top: -99%;
	-webkit-transform: skewX(129deg);
    transform: skewX(129deg);
}
.pet-images.bgcolor-green::before {
	background-color: #4CB1A5;
}
.pet-images.bgcolor-green::after {
	background-color: #4CB1A5;
}
.pet-images.bgcolor-yellow::before {
	background-color: #ffbe01;
}
.pet-images.bgcolor-yellow::after {
	background-color: rgba(255,190,1,0.5);
}
.pet-images .content-box {
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	z-index: 1;
	text-align: left;
}
.pet-images .content-box h3 {
	margin-top: 0;
	font-size: 20px;
	letter-spacing: 1px;
	border-bottom: 1px solid transparent;
	position: relative;
}
.pet-images .content-box h3 span {
	display: block;
	font-size: 14px;
	text-transform: none;
	margin-top: 15px;
	margin-bottom: 30px;
	letter-spacing: 0;
}
.pet-images .content-box h3 i {
	opacity: 0.3;
}
.pet-images .content-box p {
	text-align: center;
	margin-bottom: 30px;
	line-height: 30px;
	opacity: 0;
}
.pet-images .content-box a {
	float: right;
	font-size: 12px;
	opacity: 0;
}
.pet-images:hover .content-box {
	left: 18px;
	right: 18px;
}
.pet-images:hover::after {
	opacity: 0;
}
.pet-images:hover::before {
	background-color: #1567d2;
	transform: skewX(0deg);
	-webkit-transform: skewX(0deg);
	opacity: 0.9;
}
.pet-images.bgcolor-green:hover::before {
	background-color: #48a11d;
}
.pet-images.bgcolor-yellow:hover::before {
	background-color: #ffbe01;
}
.pet-images:hover .content-box h3 {
	padding-left: 94px;
	margin-bottom: 20px;
	border-bottom-color: rgba(255,255,255,0.2);
}
.pet-images:hover .content-box h3 i {
	position: absolute;
	left: 10px;
	top: 0;
}

.pet-images:hover .content-box h3 i,
.pet-images:hover .content-box p,
.pet-images:hover .content-box a {
	opacity: 1;
}




/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #4CB1A5;
    color: white;
}

.logo {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}
/* Estilo para el enlace activo en el menú */
nav ul li a.active {
    background-color: #27796f; /* Color de fondo para el enlace activo */
    color: #fff; /* Color de texto */
    border: 2px solid #fff; /* Borde blanco para resaltar */
    border-radius: 8px; /* Bordes redondeados más amplios */
    font-weight: bold; /* Texto en negrita */
    padding: 12px 18px; /* Aumenta el padding para hacer el enlace más grande */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para dar efecto de profundidad */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Transición suave */
}
/* Efecto de zoom en el enlace activo al pasar el ratón */
nav ul li a.active:hover {
    transform: scale(1.1); /* Aumenta el tamaño ligeramente al pasar el ratón */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Aumenta la sombra */
}

nav ul li a:hover {
    background-color: #27796f;
    
}

/* Sección principal */
main {
    display: flex;
    gap: 20px;
    padding: 30px;
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.left-content {
    flex: 2;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.left-content h2{
   font-size: 80px;
   
}
.left-content p{
    padding: 30px;
   font-size: 20px;
   position: center;
}

.right-content {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 540px;

}

.right-content img {
    max-width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Pie de página */
footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: white;
    font-size: 14px;
    width: 100%;
}

/* Responsividad */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    main {
        flex-direction: column;
        padding: 20px;
    }
}

/* Sección principal de "Nosotros" */
.about-content {
    flex: 2;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-content h2 {
    color: black;
    margin-bottom: 10px;

}

.about-content h3 {
    color: black;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content ul {
    
    padding: 50px;
}

.about-content ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.about-content ul li strong {
    color: black;
}

/* Aside para imagen de equipo */
.aside-image {
    flex: 1;
    background-color: #4CB1A5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.aside-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}


/* Sección principal de "Contáctanos" */
.contact-form {
    flex: 2;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-form h2 {
    color: #4a034b;
    margin-bottom: 15px;
}

.contact-form p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 1em;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #4CB1A5;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #6a1a6b;
}

/* Información de Contacto */
.contact-info {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info h3 {
    color: #4a034b;
    margin-bottom: 15px;
}

.contact-info p {
    line-height: 1.5;
    margin: 10px 0;
}

.contact-info img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}
