body { font-family: 'Times New Roman', Times, serif, sans-serif; }
.navbar-brand {
    color: #ffffff!important; /* Cambia el color a azul */
    font-weight: bold; /* Opcional: hace el texto más destacado */
}
.navbar-nav .nav-link {
    color: rgb(249, 249, 249); /* Cambia este color al que desees */
}

.navbar-nav .nav-link:hover {
    color: #f0c107; /* Color al pasar el mouse */
}

.hero {
    background: radial-gradient(circle, rgb(1 111 0), rgb(36 74 41 / 75%)), url(https://source.unsplash.com/1600x900/?agriculture) no-repeat center center;
    background-size: cover;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    padding: 15px 0;
    position: relative;
    margin-top: 5px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

}

.hero h1 { animation: fadeIn 2s ease-in-out; 
    font-size: 3rem;
    font-weight: bold;}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.carousel img { height: 300px; object-fit: cover; border-radius: 10px; }
.navbar-brand img { height: 50px; width: auto; max-height: 100%; margin-right: 10px; }
.footer-logo { height: 100px; }
.footer-section { display: flex; justify-content: space-around; align-items: center; padding: 20px; }
.footer-info { text-align: left; }
.footer-info p { margin: 5px 0; }
.footer-divider { border-left: 2px solid #0d6efd; height: 150px; }

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
}
.content-text {
    max-width: 45%;
}
.content-text h2 {
    font-size: 2.8rem;
    font-weight: bold;
}
.content-text p {
    font-size: 1.2rem;
    color: #333;
}
.content-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 50%;
}
.icon-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.icon-group {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.icon-item {
    text-align: center;
}
.icon-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.card-custom {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.card-custom:hover {
    transform: scale(1.05);
}
.card-custom img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.txt {
    background: url('img/fondo.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    padding: 100px 0;
    position: relative;
    margin-top: 5px;
    border-radius: 15px;
    text-align: center;
    text-align: center;
}
.txt h1 {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: "Century Gothic", sans-serif;
}
.testimonial {
    font-size: 1.5rem;
    text-align: center;
    font-style: italic;
    color: #333;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}
.card-custom {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    perspective: 1000px;
}
.card-custom:hover {
    transform: scale(1.05);
}
.flip-card {
    position: relative;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.flip-card:hover {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
}
.flip-card-front {
    background-color: #ffffff;
}
.flip-card-back {
    background-color: #03352a;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
} 
 /* blog */
.test-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    position: relative;
}
.test-image img {
    width: 100%;
    border-radius: 15px;
    max-width: 400px;
}
.test-text {
    padding: 30px;
}
.test-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
}
.test {
    font-size: 1.5rem;
    text-align: left;
    font-style: italic;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.carousel-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.carousel-indicators button {
    background-color: black;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 5px;
}
.carousel-control-prev, .carousel-control-next {
    filter: none;
    opacity: 1;
    position: absolute;
    bottom: 0;
   
}
.carousel-control-prev {
    margin-right: auto;
}
.carousel-control-next {
    margin-left: auto;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    border-radius: 50%; /* Botones redondeados */
    width: 50px;
    height: 50px;
}

 /* Formulario de contacto */
 .contact-form {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 20px;
}
.contact-form button {
    width: 100%;
    background-color: #2c6351;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
nav.navbar.navbar-expand-lg.navbar-dark.bg-body-tertiary.header-transparent {
    background-color: #010139 !important;
    color: white !important;
}
.img-fluid.mb-4 {
    height: 10em;
    width: auto;
    max-height: 100%;
    margin-right: 10px;
}
