/* Configuración de Variables Oficiales */
:root {
    --sancor-blue: #004a99;
    --sancor-light-blue: #0072bc;
    --sancor-bg-gray: #f4f7f9;
    --sancor-text: #4a4a4a;
    --sancor-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sancor-wrapper { font-family: 'Open Sans', Helvetica, sans-serif; color: var(--sancor-text); overflow-x: hidden; }
.ss-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER & NAVBAR */
.ss-top-bar { background: #eee; padding: 8px 0; font-size: 12px; color: #666; }
.ss-top-bar .ss-container { display: flex; justify-content: space-between; }
.ss-navbar { background: var(--sancor-white); padding: 15px 0; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 999; }
.flex-nav { display: flex; justify-content: space-between; align-items: center; }
.ss-menu { list-style: none; display: flex; gap: 30px; margin: 0; align-items: center; }
.ss-menu a { text-decoration: none; color: var(--sancor-blue); font-weight: 700; text-transform: uppercase; font-size: 14px; }
.ss-btn-cta a { background: var(--sancor-blue); color: white; padding: 10px 25px; border-radius: 50px; }

/* HERO SECTION */
.ss-hero-main { 
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://www.sancorseguros.com.ar/images/home/banner-principal.jpg') no-repeat center/cover;
    height: 550px; display: flex; align-items: center; color: white;
}
.ss-hero-content { max-width: 550px; }
.ss-hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.ss-btn { padding: 15px 35px; border-radius: 5px; text-decoration: none; font-weight: 700; display: inline-block; margin-top: 20px; }
.ss-btn-blue { background: var(--sancor-light-blue); color: white; }
.ss-btn-outline { border: 2px solid white; color: white; margin-left: 15px; }

/* SERVICES GRID (10 Items) */
.ss-services-grid-section { padding: 80px 0; background: var(--sancor-bg-gray); }
.ss-section-title { text-align: center; color: var(--sancor-blue); margin-bottom: 50px; font-size: 2rem; }
.ss-grid-wrapper { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.ss-service-card { 
    background: white; border-radius: 12px; padding: 30px 15px; text-align: center; 
    position: relative; transition: var(--transition); border-bottom: 4px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.ss-service-card:hover { transform: translateY(-10px); border-bottom-color: var(--sancor-light-blue); }
.ss-card-icon { width: 65px; height: 65px; margin: 0 auto 15px; }
.ss-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.ss-card-label { color: var(--sancor-blue); font-weight: 700; display: block; font-size: 14px; }
.ss-overlay-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }

/* APP BANNER */
.ss-app-banner { padding: 80px 0; background: white; }
.ss-flex-reverse { display: flex; align-items: center; gap: 50px; }
.ss-app-text { flex: 1; }
.ss-app-image { flex: 1; text-align: center; }
.ss-app-image img { max-width: 80%; }
.ss-store-badges img { height: 45px; margin-right: 15px; cursor: pointer; }

/* FOOTER */
.ss-footer { background: var(--sancor-blue); color: white; padding: 80px 0 0; }
.ss-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.ss-footer-col h3 { font-size: 1.2rem; margin-bottom: 25px; position: relative; }
.ss-footer-col h3::after { content: ''; display: block; width: 30px; height: 2px; background: var(--sancor-light-blue); margin-top: 10px; }
.ss-footer-col ul { list-style: none; padding: 0; }
.ss-footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; line-height: 2.2; font-size: 14px; }
.ss-footer-bottom { background: rgba(0,0,0,0.2); padding: 20px 0; text-align: center; font-size: 13px; opacity: 0.6; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .ss-grid-wrapper { grid-template-columns: repeat(3, 1fr); }
    .ss-footer-grid { grid-template-columns: 1fr 1fr; }
    .ss-flex-reverse { flex-direction: column-reverse; text-align: center; }
}
@media (max-width: 600px) {
    .ss-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
    .ss-hero-content h1 { font-size: 2.2rem; }
    .ss-menu { display: none; } /* En producción usarías un menú hamburguesa */
}