/* ==========================================
   VARIABLES Y COLORES CORPORATIVOS
   ========================================== */
:root {
    /* Colores principales - Paleta Azul Profesional */
    --primary-color: #2B8EDD;      /* Azul principal claro */
    --primary-dark: #1A6FB3;       /* Azul más oscuro */
    --secondary-color: #88c8ff;    /* Azul claro secundario */
    --secondary-light: #bfeeff;    /* Azul muy claro */
    --accent-color: #7dd3fc;       /* Turquesa suave */
    --success-color: #22543d;      /* Verde oscuro */
    --light-bg: #f8fbff;           /* Azul muy claro */
    --dark-text: #0f1724;
    --text-muted: #6b7280;
    --border-color: #e6eef9;
} 

/* ==========================================
   ESTILOS GLOBALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    padding: 0.6rem 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(43, 142, 221, 0.12);
}  

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.15rem; /* Aumentado para mejor legibilidad */
    color: #ffffff !important;
    padding-left: 0.8rem; /* Separación ligeramente mayor del borde */
    gap: 1.6rem;
}

.navbar-brand .brand-text {
    margin-left: 2.2rem;
}

.navbar-brand img {
    margin-right: 0.6rem;
    margin-left: 0.5rem; /* Separación adicional desde la izquierda */
}  

.navbar-brand img.logo-metal {
    /* Mantener la caja de 56px para no afectar la altura del navbar, pero escalar visualmente */
    height: 56px !important;
    transform: translateY(-6px) scale(1.6); /* Aumentado para mejor visibilidad */
    transform-origin: left center;
    margin-left: 8px; /* Separación mayor para que no quede pegado al borde */
    margin-top: 20px; /* Separación mayor para que no quede pegado al borde */
    box-shadow: 0 12px 36px rgba(43,142,221,0.18);
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

/* ==========================================
   ABOUT LOGO (HEARTBEAT EFFECT)
   ========================================== */
.about-logo {
    text-align: center;
}

.about-logo .logo-heartbeat {
    animation: logo-heartbeat 1.8s ease-in-out infinite;
    transform-origin: center;
    filter: drop-shadow(0 12px 28px rgba(43, 142, 221, 0.25));
}

.about-logo-text {
    margin-top: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 1rem;
    color: var(--primary-dark);
}

.about-logo-subtext {
    margin-top: 0.35rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes logo-heartbeat {
    0% {
        transform: scale(1);
    }
    12% {
        transform: scale(1.08);
    }
    24% {
        transform: scale(1);
    }
    36% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.navbar-brand img.logo-metal:hover {
    transform: translateY(-8px) scale(1.65);
    box-shadow: 0 18px 42px rgba(43,142,221,0.22);
}

/* Para pantallas pequeñas mantener el logo compacto y evitar que el menú cambie */
@media (max-width: 991px) {
    .navbar-brand img.logo-metal {
        height: 44px !important;
        transform: translateY(0) scale(1.08);
        margin-left: 8px;
        box-shadow: none;
    }
}  

/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 2500;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    display: block;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

@media (max-width: 576px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}



.nav-link {
    font-weight: 500;
    margin-left: 1.5rem;
    color: #ffffff !important;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-light) !important;
}

.nav-link.active {
    color: var(--secondary-light) !important;
    text-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--secondary-light);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
}

.hero h1 {
    text-shadow: none;
}

.hero .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(43, 142, 221, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(125, 211, 252, 0.08) 0%, transparent 50%);
    pointer-events: none;
} 

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero .btn-danger {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero .btn-danger:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 142, 221, 0.18);
}

.hero .btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Imagen hero (lado derecho) */
.hero-image {
    max-width: 520px;
    margin: 0 auto;
    display: block;
} 

/* ==========================================
   SERVICIOS PREVIEW
   ========================================== */
.services-preview {
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.service-card {
    background: white;
    border: 1px solid var(--light-bg);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-more:hover {
    color: var(--primary-color);
    margin-right: -5px;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.features h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.features p {
    color: var(--text-muted);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section .btn-light {
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--primary-color);
    color: #ecf0f1;
    margin-top: 4rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer a {
    color: #bdc3c7;
    transition: color 0.3s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer .text-center p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.contact-info a,
.contact-item a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
    background-color: var(--light-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--secondary-color);
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==========================================
   FORM STYLES
   ========================================== */
.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(231, 76, 60, 0.3);
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

.lightbox-nav:hover {
    color: var(--secondary-color);
}

/* ==========================================
   CONTACT INFO
   ========================================== */
.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* ==========================================
   MAP CONTAINER
   ========================================== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .d-flex {
        flex-direction: column;
    }

    .hero .btn {
        width: 100%;
    }

    .page-header {
        padding: 2.5rem 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ==========================================
   ANIMACIONES
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: slideUp 0.6s ease;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==========================================
   CERTIFICADOS Y ACREDITACIONES
   ========================================== */
.certificate-card {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.certificate-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.15);
    transform: translateY(-5px);
}

.certificate-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.2);
}

.certificate-card h5 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.certificate-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.certificate-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Image cards for documentation */
.certificate-image-card img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.certificate-image-card p {
    color: var(--text-muted);
    margin-top: 0.6rem;
}

    text-transform: uppercase;
    margin-top: 10px;
}

.certificate-badge i {
    margin-right: 5px;
}

/* Certificate Image Cards */
.certificate-image-card {
    background: white;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 200px;
}

.certificate-image-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.1);
}

.cert-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-bg), #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 10px;
}

.cert-image-placeholder i {
    font-size: 40px;
    color: var(--secondary-color);
}

.cert-image-placeholder p {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    line-height: 1.4;
}


/* ==========================================
   EFECTO METÁLICO PARA EL LOGO CON BACKDROP
   ========================================== */

@keyframes metalShine {
    0% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

@keyframes backdropPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(123, 97, 255, 0.22), 0 0 60px rgba(0, 168, 232, 0.12);
    }
    50% {
        box-shadow: 0 0 50px rgba(123, 97, 255, 0.32), 0 0 80px rgba(0, 168, 232, 0.18);
    }
} 

.logo-metal {
    filter: drop-shadow(0 0 8px rgba(0, 102, 204, 0.4)) brightness(1.05);
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    animation: backdropPulse 3s ease-in-out infinite;
}

.logo-metal:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(0, 168, 232, 0.6)) brightness(1.15);
    animation: backdropPulse 1.5s ease-in-out infinite;
}

/* Metallic backdrop effect */
.navbar-brand {
    position: relative;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -15px;
    right: -20px;
    bottom: -15px;
    background: linear-gradient(90deg,
        rgba(0, 102, 204, 0.1) 0%,
        rgba(0, 168, 232, 0.2) 25%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(0, 168, 232, 0.2) 75%,
        rgba(0, 102, 204, 0.1) 100%);
    background-size: 200% 100%;
    animation: metalShine 4s ease-in-out infinite;
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    left: -18px;
    top: -13px;
    right: -18px;
    bottom: -13px;
    background: linear-gradient(135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 25%,
        rgba(0, 168, 232, 0.1) 50%,
        rgba(255, 255, 255, 0.08) 75%,
        transparent 100%);
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

/* Logo silhouette effect: subtle drop-shadows to respect logo details */
.logo-metal {
    /* subtle silhouette: low-opacity, small blur to avoid halo distortion */
    filter: drop-shadow(0 0 6px rgba(123,97,255,0.30)) drop-shadow(0 0 10px rgba(0,168,232,0.20));
    transition: transform .25s ease, filter .25s ease;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.logo-metal:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 8px rgba(123,97,255,0.45)) drop-shadow(0 0 14px rgba(0,168,232,0.30));
}

