/* CORTINAS DANY - 2026 */



.hero {
  padding: 24px 0; /* mobile y tablet por defecto */
  background-color: #f8f9fa;
}

/* Desktop */
@media (min-width: 992px) {
  .hero {
    padding: 96px 0;
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem; /* mobile */
  line-height: 1.2;
}

/* Tablet */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.75rem; /* ~60px */
  }
}

section { padding: 80px 0; }



/* Animación de pulso */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex; /* visible por defecto en desktop */
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2000;
  animation: pulse-green 2s infinite;
  transition: all 0.3s ease;
}

/* Mobile: oculto al inicio */
@media (max-width: 991px) {
  .btn-whatsapp {
    display: none;
  }
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
    color: white;
}

.img-zoom {
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.transition-hover:hover .img-zoom {
    transform: scale(1.1);
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

:root {
    --verde-dany: #28a745;
    --oscuro-dany: #212529;
    --gris-fondo: #f8f9fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--oscuro-dany);
}

h1, h2, h3, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase; /* Da un aire más técnico/industrial */
    letter-spacing: -0.5px;
}

/* Ajuste de Botones */
.btn {
         border-radius: 999px;
     border-width: 2px;
    }
.btn-primary {
    background-color: var(--verde-dany) !important;
    border-color: var(--verde-dany) !important;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.3);
}

.btn-primary:hover {
    background-color: #218838 !important; /* Un verde un poco más oscuro al pasar el mouse */
    transform: scale(1.02);
}

/* Barra de Navegación */
.bg-dark {
    background-color: var(--oscuro-dany) !important;
}

/* Secciones de Soluciones */
.text-primary {
    color: var(--verde-dany) !important;
}

.card {
    border-radius: 12px;
    border: none;
}


  /* Estilos para que se vea premium */
    .icon-box {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    /* Colores suaves para los fondos de los iconos */
    .bg-success-soft { background: rgba(40, 167, 69, 0.15); }
    .bg-danger-soft { background: rgba(220, 53, 69, 0.15); }
    .bg-blue-soft { background: rgba(13, 110, 253, 0.15); }
    .bg-secondary-soft { background: rgba(108, 117, 125, 0.15); }

    .group-hover:hover .icon-box {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.1);
    }

    .letter-spacing-1 { letter-spacing: 1px; }

    /* Estilos del Footer */
    footer { 
        padding-bottom: 96px;
     }
     @media (min-width: 992px) {
        footer { 
        padding-bottom: 24px;
     }}
    .bg-dark { background-color: #1a1d20 !important; }
    .letter-spacing-1 { letter-spacing: 1.5px; }
    
    .icon-box {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }

    /* Fondos suaves para iconos */
    .bg-success-soft { background: rgba(40, 167, 69, 0.12); }
    .bg-danger-soft { background: rgba(220, 53, 69, 0.12); }
    .bg-blue-soft { background: rgba(13, 110, 253, 0.12); }
    .bg-secondary-soft { background: rgba(108, 117, 125, 0.12); }

    .group-hover:hover .icon-box {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-links a:hover {
        color: #28a745 !important;
        padding-left: 8px;
        transition: all 0.3s ease;
    }

    .hover-verde:hover { color: #28a745 !important; }