 /* Estilos Personalizados */
        :root {
            --primary-color: #010066;
            --secondary-color: #709fa9;
            --accent-color: #709fa9;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Top Bar Social */
        .top-bar {
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        .social-link {
            color: white;
            margin-left: 15px;
            transition: color 0.3s;
        }
        .social-link:hover {
            color: var(--secondary-color);
        }
		
		.social-link2 {
            color: white;
            margin-left: 15px;
            transition: color 0.3s;
        }
		.social-link2:hover {
            color: var(--primary-color);
        }
		
		.social-link3 {
            color: var(--secondary-color);
            margin-left: 15px;
            transition: color 0.3s;
        }
		.social-link3:hover {
            color: white;
        }

        /* Navbar Sticky adjustment */
        .navbar {
            background-color: var(--primary-color);
			color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        /* Sección Presentación (Hero) */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/fisio-sevilla-foto-5.png'); /* Imagen de ejemplo */
            background-size: cover;
            background-position: center;
            height: 80vh; /* Altura del 80% de la pantalla */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        /* Botón Flotante (Back to Top) */
        #btn-back-to-top {
            position: fixed;
            bottom: 20px;
            right: 100px;
            display: none; /* Oculto por defecto */
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            z-index: 1000;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        #btn-back-to-top:hover {
            transform: scale(1.1);
            background-color: var(--secondary-color);
        }

        #btn-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            z-index: 1000;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }

        #btn-whatsapp {
            transform: scale(1.1);
            background-color: var(--secondary-color);
        }


        /* Mapa */
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 0;
        }
		
		.text-success{
			color: var(--secondary-color) !important;
		 }
		 
		 .border-success{
			border-color: var(--secondary-color) !important;
		 }
		 
		 .custom {
            background-color: var(--primary-color)  !important;
			color: white  !important;
        }
		
		
		.custom2 {
            background-color: var(--secondary-color)  !important;
			color: var(--primary-color)  !important;
        }
		
		.custom3 {
            background-color: var(--secondary-color)  !important;
			color: white  !important;
        }
		
		.secondary-text {
			color: var(--secondary-color) !important;
        }
		
		.primary-text {
			color: var(--primary-color) !important;
        }


.pricing-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

    .pricing-header h2 {
        font-weight: 700;
        color: var(--secondary-color);
    }

/* Estilos personalizados de la tabla */
.custom-table-container {
    border-radius: 15px;
    overflow: hidden; /* Para respetar los bordes redondeados */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: white;
	text-align: left;
}

.table {
    margin-bottom: 0; /* Quitar margen inferior default */
}

    .table thead {
        color: white;
		text-align: left;
    }

        .table thead th {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            padding: 1.2rem 1rem;
			color: var(--secondary-color);
			background-color: var(--primary-color);  
        }

    .table tbody td {
		text-align: left;
        padding: 1.2rem 1rem;
        vertical-align: middle;
        border-bottom: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

    .table tbody tr:last-child td {
        border-bottom: none;
    }

.table-hover tbody tr:hover {
    background-color: var(--primary-color) !important; /* Color muy suave al pasar el mouse */
}

.price-tag {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.duration-tag {
    color: var(--primary-color);
    font-size: 0.9rem;
}
		 