@charset "utf-8";
/* CSS Document */

 /* --- PALETA DE COLORES Y TIPOGRAFÍA --- */
        :root {
            --azul-principal: #0056b3;     
            --azul-claro: #e6f0fa;         
            --gris-fondo: #f4f6f8;         
            --blanco: #ffffff;
            --texto-oscuro: #2b2b2b;
            --texto-mutado: #6c757d;
        }

        /* --- ESTILOS GENERALES --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--gris-fondo);
            color: var(--texto-oscuro);
            line-height: 1.6;
        }

        h1, h2, h3, h4, .font-semibold {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: 600; 
            color: var(--azul-principal);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .btn {
            display: inline-block;
            background-color: var(--azul-principal);
            color: var(--blanco);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background-color: #004085;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--azul-principal);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        header {
            background-color: var(--blanco);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            text-decoration: none;
        }

        nav a {
            text-decoration: none;
            color: var(--texto-oscuro);
            margin-left: 20px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--azul-principal);
        }

        /* --- SECCIÓN: INICIO (HERO) --- */
        #inicio {
            background: linear-gradient(rgba(230, 240, 250, 0.85), rgba(230, 240, 250, 0.85)), url('images/ssb_portrait.jpeg'); 
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 120px 0;
        }

        #inicio h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--azul-principal);
        }

        #inicio p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--texto-oscuro);
        }

        /* --- SECCIÓN: QUIÉNES SOMOS --- */
        #quienes-somos {
            background-color: var(--blanco);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        /* --- SECCIÓN: SERVICIOS --- */
        #servicios {
            background-color: var(--gris-fondo);
        }

        .grid-servicios {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background-color: var(--blanco);
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .card:hover {
            transform: translateY(-5px);
        }
        .card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
		/* ___ ICONS ___ */
		.icono-servicio { 
		width: 64px;
		height: auto;
		margin-bottom: 15px;
		}

        /* --- SECCIÓN: SALUD DENTAL --- */
        #salud-dental {
            background-color: var(--azul-claro);
        }
		
		.aditional-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .dental-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .dental-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        /* --- SECCIÓN: NUESTRA EXPERIENCIA (CARRUSEL) --- */
        #experiencia {
            background-color: var(--blanco);
            overflow: hidden; /* Carousel Efect */
        }

        .experiencia-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }

        .carrusel-contenedor {
            width: 100%;
            position: relative;
            padding: 20px 0;
            /* Shadows */
            mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
        }

        .carrusel-track {
            display: flex;
            align-items: center;
            /* Ancho calculado: 200px image original + duplicate */
            width: calc(200px * 10);
            animation: scroll-carrusel 20s linear infinite;
        }

        .carrusel-track:hover {
            animation-play-state: paused; /* movement */
        }

        .carrusel-track img {
            width: 150px;
            height: auto;
            max-height: 80px;
            margin: 0 25px;
            object-fit: contain;
            filter: grayscale(100%); /* Filter */
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .carrusel-track img:hover {
            filter: grayscale(0%); /* color */
            opacity: 1;
            transform: scale(1.05); /* Volumen */
        }

        @keyframes scroll-carrusel {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 5)); } /* loop efect */
        }

        /* --- SECCIÓN: CONTACTO Y UBICACIÓN --- */
        #contacto {
            background-color: var(--gris-fondo);
        }

        .contacto-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .info-contacto h3 {
            margin-bottom: 20px;
        }

        .info-contacto p {
            margin-bottom: 15px;
        }

        .mapa-placeholder {
            width: 100%;
            height: 350px;
            background-color: #e0e0e0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--texto-mutado);
            border: 2px dashed var(--texto-mutado);
        }

        /* --- PIE DE PÁGINA (FOOTER) --- */
        footer {
            background-color: #1a252f; 
            color: #ffffff;
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        footer p {
            opacity: 0.8;
        }
    
@media (max-width:400px){
}
    
@media (min-width:401px) and (max-width:768px){
}
    
@media (min-width:769px){
}