:root {
    --color-naranja: #ff6d00;
    --color-naranja-claro: #ff8500;
    --color-naranja-suave: #fff3e0;
    --color-fondo: #fff8f2;
}

body {
 font-family: 'Quicksand', sans-serif;

  font-optical-sizing: auto;


    padding-top: 76px;
}
/*Curva*/
.custom-shape-divider-bottom-1755870065 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1755870065 svg {
    position: relative;
    display: block;
    width: calc(105% + 1.3px);
    height: 250px;
}

.custom-shape-divider-bottom-1755870065 .shape-fill {
    fill: #fbfbfb;
}
/*IMAGEN DE LOGO*/
/* Estilos para el logo responsive - SIN DEFORMACIÃ“N */
.brand {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
}

.brand img {
    width: auto;
    max-width: 100%;
    height: auto; /* Mantiene la relaciÃ³n de aspecto */
    object-fit: contain; /* Asegura que la imagen no se deforme */
}

/* TamaÃ±os especÃ­ficos manteniendo la relaciÃ³n de aspecto */
@media (max-width: 576px) {
    .brand img {
        max-height: 80px;
        max-width: 250px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .brand img {
        max-height: 100px;
        max-width: 300px;
    }
}

@media (min-width: 769px) {
    .brand img {
        max-height: 120px;
        max-width: 350px;
    }
}

/* Logo en navbar tambiÃ©n responsive */
.navbar-brand img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 35px;
        max-width: 130px;
    }
}

/* Contenedor para mantener la proporciÃ³n */
.brand-container {
    display: inline-block;
    max-width: 100%;
}

/* Asegurar que todas las imÃ¡genes mantengan su relaciÃ³n de aspecto */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* NAVBAR CON COLOR NARANJA SUAVE */
.navbar {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 2px 20px rgba(255, 109, 0, 0.15);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand, .navbar-nav .nav-link {
    color: #198754;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-naranja);

    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    color: var(--color-naranja);
}

.btn-primary {
    background-color: var(--color-naranja);
    border-color: var(--color-naranja);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--color-naranja-claro);
    border-color: var(--color-naranja-claro);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
}

/* HERO SECTION CON COLOR NARANJA */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section .container {
  z-index: 1;
  position: relative;
}

.custom-shape-divider-bottom-1755870065 {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}


/* Controlar el tamaño de la imagen en hero section */
.hero-section .img-fluid {
    max-width: 85%; /* Reduce el tamaño al 85% */
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Para desktop */
@media (min-width: 992px) {
    .hero-section .img-fluid {
        max-width: 80%; /* Aún más pequeño en desktop */
        max-height: 400px; /* Altura máxima */
    }
}

/* Para tablets */
@media (max-width: 991px) {
    .hero-section .img-fluid {
        max-width: 70%;
        max-height: 350px;
    }
}

/* Para móviles */
@media (max-width: 768px) {
    .hero-section .img-fluid {
        max-width: 90%;
        max-height: 300px;
    }
}

.hero-section2 {
    position: relative;
    background-image:  url(images/oranges-free-tiny.jpg);
    background-repeat: no-repeat;
    padding: 6rem 0;

}

.section-title {
    color: var(--color-naranja);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-naranja), transparent);
    bottom: -12px;
    left: 0;
    border-radius: 2px;
}
/* Estilos para el color verde en los h3 de soluciones */
#caracteristicas .feature-box h3 {
    color: #28a745 !important; /* Verde */
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Efecto hover para los títulos verdes */
#caracteristicas .feature-box:hover h3 {
    color: #218838 !important; /* Verde más oscuro al hover */
    transform: translateY(-2px);
}

/* Estilo para el texto verde en negrita */
.text-green {
    color: #000000 !important;
}

.fw-bold.fs-5.text-green {
    font-size: 1.6rem !important;
    margin-bottom: 1rem;
}

/* Asegurar que los títulos mantengan el color verde en todos los estados */
#caracteristicas .feature-box h3:focus,
#caracteristicas .feature-box h3:active {
    color: #28a745 !important;
}

.feature-box {
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    background: white;
    border: 1px solid rgba(255, 109, 0, 0.1);
    box-shadow: 0 5px 20px rgba(255, 109, 0, 0.08);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 109, 0, 0.15);
    border-color: var(--color-naranja);
}

.feature-icon {
    color: var(--color-naranja);
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.features-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.contact-section {
    padding: 5rem 0;
    background: var(--color-fondo);
}
/* Estilos para el formulario de contacto actualizado */
.contact-section .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--color-naranja);
    border-color: var(--color-naranja);
}

.form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Estilos para la informaciÃ³n de contacto en el footer */
.contact-info .contact-item {
    display: flex;
    align-items: center;
}

.contact-info a {
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-naranja) !important;
    transform: translateX(5px);
}

/* Mejorar apariencia de los inputs */
.form-control {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-naranja);
    box-shadow: 0 0 0 0.25rem rgba(255, 109, 0, 0.25);
}

/* Responsividad para el footer */
@media (max-width: 768px) {
    .contact-info {
        text-align: center;
    }
    
    .contact-info .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Estilos para los Ã­conos de preferencia de contacto */
.form-check-label i {
    font-size: 1.1rem;
    width: 20px;
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 3rem 0 2rem 0;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    margin: 0 8px;
    transition: all 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--color-naranja);
    transform: translateY(-3px);
}

.form-control:focus {
    border-color: var(--color-naranja);
    box-shadow: 0 0 0 0.3rem rgba(255, 109, 0, 0.2);
}

.text-orange {
    color: var(--color-naranja) !important;
}

.bg-orange {
    background-color: var(--color-naranja) !important;
}

/* BotÃ³n de WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 4px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Para dispositivos mÃ³viles */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .feature-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Efectos adicionales */
.btn-link.text-orange {
    transition: all 0.3s ease;
}

.btn-link.text-orange:hover {
    transform: translateX(5px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--color-naranja);
    border-radius: 50%;
    padding: 15px;
}

/* Mejoras para el modal de video */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--color-naranja-suave) 0%, #ffe0b2 100%);
    border-bottom: 2px solid var(--color-naranja);
}

.modal-title {
    color: var(--color-naranja);
    font-weight: 600;
}

/*ICONOS PERSONALIZADOS*/
/* Estilos para iconos PNG en features *//* VersiÃ³n con iconos mÃ¡s grandes */
.feature-icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.feature-icon-img {
    max-width: 80px;
    height: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .feature-icon-container {
        height: 85px;
    }
    
    .feature-icon-img {
        max-width: 65px;
    }
}

@media (max-width: 576px) {
    .feature-icon-container {
        height: 75px;
    }
    
    .feature-icon-img {
        max-width: 55px;
    }
}

/*ORDEN DE LISTAS*//* SOLUCIÃ“N DEFINITIVA - Remover completamente estilos por defecto */
.feature-box ul {
    text-align: left !important;
    padding-left: 1.5rem !important;
    margin: 1rem 0 !important;
    list-style: none !important;
}

.feature-box ul li {
    list-style: none !important;
    background: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    position: relative;
}

.feature-box ul li::before {
    content: "â€¢" !important;
    color: var(--color-naranja) !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    position: absolute !important;
    left: -1.2rem !important;
    top: 0.1rem !important;
}

/* Remover cualquier pseudo-elemento de Bootstrap */
.feature-box ul li::marker {
    content: none !important;
    display: none !important;
}

/* SecciÃ³n de Testimonios */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.2);
}

.video-container {
    position: relative;
    padding-top: 75%; /* RelaciÃ³n de aspecto 4:3 */
    background: #000;
}

.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.testimonial-info {
    padding: 1.5rem;
    text-align: center;
}

.testimonial-info h5 {
    color: var(--color-naranja);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-info .company {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-info .location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Estilos para controles de video personalizados */


.testimonial-video::-webkit-media-controls-play-button {
    color: white;
}

/* Responsividad */
@media (max-width: 992px) {
    .testimonial-video-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .video-container {
        padding-top: 66.67%; /* RelaciÃ³n 3:2 para mÃ³viles */
    }
    
    .testimonial-info {
        padding: 1rem;
    }
}

/* CORRECCIÃ“N del botÃ³n de play overlay */
.testimonial-video-card {
    position: relative;
}

.video-container::before {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Ocultar botÃ³n de play cuando el video estÃ¡ reproduciendo */
.testimonial-video.playing ~ .video-container::before,
.testimonial-video:focus ~ .video-container::before {
    opacity: 0;
    visibility: hidden;
}

/* Mostrar botÃ³n de play solo cuando hay poster y no se estÃ¡ reproduciendo */
.testimonial-video[poster] ~ .video-container::before {
    opacity: 0.8;
    visibility: visible;
}

/* Efecto hover en el botÃ³n de play */
.video-container:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Estilos para iconos PNG en la secciÃ³n Ventajas */
.ventaja-icon-container {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.ventaja-icon-img {
    max-width: 50px;
    height: auto;
    transition: all 0.3s ease;
}

.feature-box:hover .ventaja-icon-img {
    transform: scale(1.1) translateY(-3px);
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(255, 109, 0, 0.2));
}

/* Efectos adicionales para los iconos de ventajas */
.ventaja-icon-img {
    filter: grayscale(25%);
    opacity: 0.9;
}

.feature-box:hover .ventaja-icon-img {
    filter: grayscale(0%) brightness(1.15);
    opacity: 1;
}

/* TamaÃ±os responsive para los iconos de ventajas */
@media (max-width: 768px) {
    .ventaja-icon-container {
        height: 60px;
    }
    
    .ventaja-icon-img {
        max-width: 45px;
    }
}

@media (max-width: 576px) {
    .ventaja-icon-container {
        height: 55px;
    }
    
    .ventaja-icon-img {
        max-width: 40px;
    }
}

/* Ajustar espaciado en la secciÃ³n de ventajas */
.feature-box h4 {
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.feature-box p {
    text-align: left;
}

/* VersiÃ³n simple para preferencias en horizontal */
.preference-options {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.preference-option {
    flex: 1;
    text-align: center;
}

.preference-option input[type="radio"] {
    display: none;
}

.preference-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.preference-option label:hover {
    border-color: var(--color-naranja);
    background-color: var(--color-naranja-suave);
}

.preference-option input[type="radio"]:checked + label {
    border-color: var(--color-naranja);
    background-color: var(--color-naranja-suave);
    color: var(--color-naranja);
    font-weight: 600;
}

.preference-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.preference-option input[type="radio"]:checked + label i {
    transform: scale(1.2);
}

/* Responsividad */
@media (max-width: 768px) {
    .preference-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .preference-option label {
        flex-direction: row;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .preference-option i {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}